Jeff Putz
Jeff Putz

Reputation: 14907

Possible to set Azure load balancing affinity method for App Services?

I know that you can set the type of load balancer affinity used for Azure VM's, as described here:

https://azure.microsoft.com/en-us/documentation/articles/load-balancer-distribution-mode/

Is it possible to do the same with Azure App Services (formerly websites)? Basically, I want to use the "none" algorithm because the load testing I'm doing is all coming from the same IP. I can see from logging that all requests end up being routed to the same instance, which is not particularly useful for a load test. :)

Upvotes: 1

Views: 427

Answers (1)

Bruno Faria
Bruno Faria

Reputation: 5272

Affinity is On by default which means the load balancer will keep the user to the same instance during his session. All you have to do is switch it off.

App Settings

Upvotes: 1

Related Questions