Matrix of Services
continuousagile.com
Matrix of Services
1–10 of 16 posts
Re: Matrix of Services
#2Re: Matrix of Services
#3I think i will stop here, thanks.
Re: Matrix of Services
#4Re: Matrix of Services
#5"Matrix of Services, which I will call MAXOS, is the secret weapon that Silicon Valley is using to disrupt and destroy competitors." I think i will stop here, thanks.
Re: Matrix of Services
#6latency - how do you build a platform with high performance if every customer request has a network of n services to traverse for every operation?
[1] http://techblog.netflix.com/2012/02/fault-tolerance-in-high-...
Re: Matrix of Services
#7latency - how do you build a platform with high performance if every customer request has a network of n services to traverse for every operation?
Since each service follows a request/response format, it becomes easier to see where the majority of a request lifespan spends its time to help eliminate bottle necks. You'd be surprised how low the overall latency for a request can be in large companies like Amazon (< 100ms)
Re: Matrix of Services
#8latency - how do you build a platform with high performance if every customer request has a network of n services to traverse for every operation?
So if n=3, it doesn't seem to bad. How much can you do in parallel? Stuff like search, it seems like you could partition quite a bit hit a bunch of services (10?)in the first 5ms, then spend the remaining 10ms sorting results, just send your best effort.
I'm (of course) assuming a customer request means there's a customer sitting there waiting and 30ms is good enough. Won't work for a game. Won't work for HFT.
I guess you'd use the standard stuff, many layers of caching, efficient implementation of the specific services, good algorithms. Heck, you could play a game with docker and run the whole infrastructure on 1 big machine, i think those local sockets would be a lot quicker that the 500,000 ns of a datacenter read.
I mean, if an l2 cache miss is a disaster for you, clearly this won't do anything for you. But how fast is fast enough? do you need to hit that target every single time(real time)? Can you be late 1 in a million requests?
Are you sort of dismissing the idea out of hand or are you (aside from the silly title) really thinking through the consequences of implementing an application this way?
Re: Matrix of Services
#9latency - how do you build a platform with high performance if every customer request has a network of n services to traverse for every operation?
what's your budget? Is 30ms fast enough to put a widget in a shopping cart? Let's just assert 15ms from your server to the customer, you've got 15ms to play with. Given this https://gist.github.com/jboner/2841832 let's assume you get around 5ms for each service, say a couple big disk reads and some filtering. So if n=3, it doesn't seem to bad. How much can you do in parallel? Stuff like search, it seems like you coul…