Does arraffinity cookie always set on azure web application?

21,004

It's always there by default.
There are ways to Disable Session affinity cookie (ARR cookie) for Azure web apps

Here's an explanation: Azure: ARRAffinity makes affinity cookies!

Affinity Cookies are used to aid people who need to stay with a certain instance of web app or web site in Azure. The reason for this is that we strive for statelessness, but do not always achieve it. This means that the user must stay on the particular instance that they using till they break state and then things are saved at that time.

Share:
21,004
krypru
Author by

krypru

Let's code!

Updated on October 21, 2020

Comments

  • krypru
    krypru over 3 years

    I host web application on Azure. I have basic plan where only one instance works. After I've published my app into cloud, I've noticed generated arraffinity cookie called ARRAffinity. So even with single instance of hosted web application there will be always generated arraffinity cookie? Is that right? Or it doesn't matter how many instances are around and the Azure web application alwyas generates the cookie?

  • Shwetank Suthar
    Shwetank Suthar almost 4 years
    Is there any way that we can secure ARRAffinity cookie in azure ?