cloud_upload Scaling Stateful Services

The Short Answer: When scaling a stateful service (in-memory data), you must either ensure a user always hits the same server (Sticky Sessions) or, more commonly, move the state out of the application process into a shared store (Distributed Cache/Database).

Success: 1
Errors: 0
dns
Load Balancer
memory
Node 1
memory
Node 2
person
ID
User 1
person
ID
User 2
person
ID
User 3
Current Mode: The Problem info Watch the colored request packets travel to servers.