Tag: Horizontal Scaling
-
Distributed System : Horizontal Scaling
Horizontal Scaling is a key strategy for achieving scalability in distributed systems, particularly in cloud computing environments. It refers to the process of adding more computing resources—such as servers, nodes, or machines—into a system to distribute the load. Unlike vertical scaling, which involves upgrading the capacity of a single machine, horizontal scaling focuses on expanding…
-
Load Balancing
Load balancing is the process of balancing the load across multiple servers in case the peak load is achieved, the load needs to be distributed across multiple servers running multiple services. The app traffic load will be distributed across multiple servers to keep the website/app running smoothly. The traffic WILL BE DISTRIBUTED ACROSS MULTIPLE SERVERS so that the content can be served with low latency and high…