© 2023 Hashnode
#load-balancing
Microservices architecture has been gaining popularity over the last few years. It is a modern approach to building software applications that help to break down a large monolithic system into smaller…
Azure Application Gateway is a web traffic load balancer that enables you to manage traffic to your web applications. Traditional load balancers operate at the transport layer (OSI layer 4 - TCP and U…
LoadBalancing image Let's say there is an algorithm running on the server. What is Server?A Server is which servers the request. When a person is connecting through a mobile/PC to a server, they are…
What is load balancing? Let's imagine that we have a normal server and there are a lot of requests that overload our site. This is where load balancing comes in. Rather than managing all network traff…
As itself, its name suggests, the Load balancer is used to split the load among several servers. Load means the number of requests coming to the server. For example, Amazon ships approximately 1.6 mil…
I took down important points from CS75 Lecture 9 on Scalability. It packed lots of tiny informative details into the big picture. So made it into a blog post. Here is the awesome original lecture. Wh…
Application Load Balancer: An Introduction An Application Load Balancer is a type of Load Balancer that operates at the application layer, the seventh layer of the Open Systems Interconnection (OSI) model. It is a highly available and scala…
Load balancing, as explored in a previous project, is a technique used to distribute incoming network traffic across multiple servers to improve performance, scalability, and availability. Nginx and A…
Have you ever wondered how industry leaders in technology like Google, Zomato, and Swiggy can handle a multitude of concurrent requests? Let's say I developed an application and has been a hit. As use…
EDIT: Second part of the series is released Scalable Websocket Server Implemented by ChatGPT Check it out, it has a fully working scalable websocket server repository! Websockets provide an important …