Logo
Grokking System Design Fundamentals
Ask Author
Back to course home

0% completed

Stateless vs. Stateful Load Balancing

Stateless and stateful load balancing represent two distinct methods for distributing traffic among multiple servers or resources.

Stateless Load Balancing

Stateless load balancers operate without maintaining any information about the clients' session or connection state. They make routing decisions based solely on the incoming request data, such as the client's IP address, request URL, or other headers. Because stateless load balancers do not store session information, they can quickly and efficiently distribute incoming traffic without considering the clients' history or past interactions with the application.

Example: Consider a web application that enables users to search for products according to their location. A stateless load balancer can allocate requests to servers based on the user's geographic location, without retaining any session data.

Stateful Load Balancing

In contrast, stateful load balancing preserves session information between requests. The load balancer assigns a client to a specific server and ensures that all subsequent requests from the same client are directed to that server. This method is beneficial when requests pertain to a particular session and necessitate session data.

Example: Suppose a web application that requires users to log in to access their personal information. A stateful load balancer can guarantee that requests from the same user are routed to the same server, allowing session data such as login credentials to be available.

Stateful load balancing can be further categorized into two types:

  • Source IP Affinity: This form of stateful load balancing assigns a client to a specific server based on the client's IP address. While this approach ensures that requests from the same client consistently reach the same server, it may pose issues if the client's IP address frequently changes, such as in mobile networks.

  • Session Affinity: In this type of stateful load balancing, the load balancer allocates a client to a specific server based on a session identifier, such as a cookie or URL parameter. This method ensures that requests from the same client consistently reach the same server, regardless of the client's IP address.

Ultimately, the decision between stateless and stateful load balancing depends on the application or service's requirements. Stateless load balancing is useful for applications capable of processing requests independently, while stateful load balancing is more appropriate for applications that depend on session data.

Mark as Completed