Sessions - patrickcole/learning GitHub Wiki
Sessions
Sticky Sessions
This essentially means the session is tied to a particular server machine. In the case of a load balancer, the session will always point to the same machine. It would be a much more efficient method to use an external service to handle sessions and all new requests could be sent to any available server machine.
The article in Sources discusses some reasons as well as some situations in the comments.