Horizontal scaling wins

- A public thread documents shifting from vertical to horizontal scaling to handle five‑times traffic while cutting costs. - The author reports a 60% reduction in server costs alongside a 5x traffic increase. - It’s a practical example of cost and fault‑tolerance benefits from horizontal scaling at cloud scale. (x.com)

Horizontal scaling means spreading work across more machines instead of buying a bigger one, and one engineer said that switch handled 5 times the traffic while cutting server costs by 60%. (x.com) In a public X thread tied to the post, developer Ritesh said his team moved away from vertical scaling, the approach of adding more CPU and memory to a single server. He said the new setup used multiple smaller servers to share traffic. (x.com) That trade is common in cloud systems because a larger single machine can become both expensive and a single point of failure. Microsoft’s Azure architecture guidance says horizontal scaling adds or removes instances without interrupting the application, while vertical scaling is less commonly automated. (learn.microsoft.com) The basic idea is simple: a load balancer acts like a traffic cop and sends requests to several servers instead of one. If one server fails, the others can keep serving users, which is why horizontal scaling is often tied to fault tolerance as well as growth. (devx.com) The catch is that adding machines only works cleanly when the application is built to be split up. DevX’s guide on horizontal scalability says systems usually need to avoid keeping critical session data on one box and instead pass state through shared services or the network. (devx.com) That is why teams often start by scaling up and only later scale out. Azure’s guidance says autoscaling mostly applies to compute resources, while databases and queues are harder to scale horizontally because they often require partitioning data across nodes. (learn.microsoft.com) The thread’s numbers — 5 times traffic and 60% lower server cost — fit the cloud industry’s usual argument for scale-out designs: buy capacity in smaller increments and add it only when demand rises. Microsoft says extra resources can be deallocated when traffic drops, which is the part that can lower ongoing spend. (x.com) (learn.microsoft.com) The larger lesson is narrower than the slogan. Horizontal scaling can be cheaper and more resilient, but only if the software, load balancing, and data layer are designed for many machines from the start. (devx.com)

Get your own daily briefing

Scout delivers personalized news, insights, and conversations tailored to your role and industry.

Download on the App Store

Shared from Scout - Be the smartest in the room.