Notes on Distributed Systems for Young Bloods
somethingsimilar.com
Notes on Distributed Systems for Young Bloods
1–10 of 46 posts
Re: Notes on Distributed Systems for Young Bloods
#2Shameless plug It's validating that we mentioned over half of these points in an interview with startup founder Eric Lindvall on his Papertrailapp.com log management app: https://peepcode.com/products/up-lindvall
Re: Notes on Distributed Systems for Young Bloods
#3Re: Notes on Distributed Systems for Young Bloods
#4Does distributed always mean a complex multi-tier web application?
- A website using a load balancer to offset service to multiple machines
- A hadoop cluster running a series of mapreduce tasks
- A botnet setup to DDOS some target
Re: Notes on Distributed Systems for Young Bloods
#5Re: Notes on Distributed Systems for Young Bloods
#60. naming things
1. cache invalidation
2. off-by-one errors
Re: Notes on Distributed Systems for Young Bloods
#7Once you have a Javascript application with state speaking over one or more APIs to your backend services, you're in the domain of distributed system design. Especially if you use the application cache and support offline operation. I frequently see people who are used to more traditional web applications underestimate the system design challenges this causes.
(Those challenges are totally worth solving, because the model is very powerful.)