Live data from Hacker News

Prime Video service dumps microservices, cuts AWS bill 90%

thestack.technology

41–42 of 42 posts

Re: Prime Video service dumps microservices, cuts AWS bill 90%

#41
post #18
post #7

Monoliths have local CPU L1-Cache speeds, distributed microservices have JSON desearlization,searlization, network round trips. Distributed stateless monoliths can be faster than microservice. Carbon foot print, cloud bill of too many microservices is probably high.

> Monoliths have local CPU L1-Cache speeds This becomes particularly differentiating when you start looking at batching primitives. Getting that pipeline filled up can add another 10x+ to performance. Stacking all of the multipliers in your favor, things do begin to look pretty silly for distributed crap: Moving from a network trip in the same datacenter to an L1 reference is about a million times faster. That is pre…

This is especially true when you've got yourself a distributed monolith architecture.

However, the case for monolith architecture to make a favourable comeback based on factors such as performance and operational cost are all negated when you have multiple teams working on a single monolith. It quickly because a nightmare to manage all those code changes, and then you have manage to releases etc.

Most companies are doing microservices wrong, and it gets expensive fast.Thats not to say microservices are the inferior choice, because for most large orgs they are not.

Are we really going to see this debate pop up again, just because amazon did something?

Re: Prime Video service dumps microservices, cuts AWS bill 90%

#42
This is a weird article. They moved from Lambdas attached together with Step Functions to have their video monitoring service as its own program. Since some other service is serving video, handling billing, and all the other things Prime Video has to do,, there is no way that could be considered a monolith.

They've gone from serverless to a microservice.

(Which is interesting, but probably doesn't get the clicks.)

Post reply on HN