What is the difference between session affinity and sticky session in context of load balancing servers?
feedback
|
closed as off topic by casperOne♦ Nov 29 '11 at 18:48
Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.
|
I've seen those terms used interchangeably, but there are different ways of implementing it:
I would suspect that sticky might refer to the cookie way, and that affinity might refer to #2 and #3 in some contexts, but that's not how I have seen it used (or use it myself) | ||||
|
feedback
|
|
As I've always heard the terms used in a load-balancing scenario, they are interchangeable. Both mean that once a session is started, the same server serves all requests for that session. | |||
|
feedback
|
|
Sticky session means that when a request comes into a site from a client all further requests go to the same server initial client request accessed. I believe that session affinity is a synonym for sticky session. | |||
|
feedback
|
|
This article clarifies the question for me and discusses other types of load balancer persistence. Dave's Thoughts: Load balancer persistence (sticky sessions) | ||||
|
feedback
|
|
They are the same. Both mean that when coming in to the load balancer, the request will be directed to the server that served the first request (and has the session). | |||
|
feedback
|
|
Sticky session means to route the requests of particular session to the same physical machine who served the first request for that session. | |||
|
feedback
|