Allowing Session in a Web Farm? Is StateServer Good Enough? - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T02:09:53Zhttp://stackoverflow.com/feeds/question/686873http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/686873/allowing-session-in-a-web-farm-is-stateserver-good-enough7Allowing Session in a Web Farm? Is StateServer Good Enough?Mitchel Sellers2009-03-26T17:54:53Z2009-04-02T05:57:08Z
<p>First of all to give you a bit of background on the current environment. We have a number of ASP.NET applications, all of which use session for certain aspects. We are "Load Balanced" over multiple servers due to traffic levels, however, our load balancing is set to use "Sticky Sessions" as currently all web applications are set to use "InProc" for session state.</p>
<p>We are looking at being able to remove the "Sticky Sessions" configuration on our load balancer, as due to our traffic loads servers can and do get overloaded. We want to go with a more balanced approach, but must be able to use session.</p>
<p>I know that SqlServer for session state will work, but for reasons beyond our control, we cannot use SqlServer to store our state. In researching it seems that StateServer is our best bet. We have an additional server, with loads of memory sitting around. This server could be our StateServer for the entire Web Cluster. We just want to know the following things.</p>
<p>1.) Besides any potential serialization issues with the switch from InProc to StateServer, are there any major known issues with loosing session objects or generating errors with the above listed environment?</p>
<p>2.) Aside from the single point of failure, and slighly slower performance are there any other gotchas that we need to be aware of with using StateServer.</p>
<p>3.) Are there any metrics that show the performance differences between the three types of state storage?</p>
http://stackoverflow.com/questions/686873/allowing-session-in-a-web-farm-is-stateserver-good-enough/687151#6871510Answer by chris for Allowing Session in a Web Farm? Is StateServer Good Enough?chris2009-03-26T19:08:17Z2009-03-26T19:08:17Z<p>We are using StateServer for a very small web farm with only two nodes for a few hundred users. </p>
<p>I'm not responsible for its operation but I remember only two issues in two years where the service had to be restarted because it crashed.</p>
http://stackoverflow.com/questions/686873/allowing-session-in-a-web-farm-is-stateserver-good-enough/687162#6871625Answer by AaronS for Allowing Session in a Web Farm? Is StateServer Good Enough?AaronS2009-03-26T19:15:12Z2009-03-26T19:15:12Z<p>Here is a decent FAQ on asp.net state: <a href="http://www.eggheadcafe.com/articles/20021016.asp" rel="nofollow">http://www.eggheadcafe.com/articles/20021016.asp</a></p>
<p>From that Article, here is some information on StateServer:</p>
<ul>
<li>In a web farm, make sure you have the same MachineKey in all your web servers. See <a href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;q313091" rel="nofollow">KB 313091</a> on how to do it. </li>
<li>Also, make sure your objects are serializable. See <a href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;q312112" rel="nofollow">KB 312112</a> for details. </li>
<li>For session state to be maintained across different web servers in the web farm, the Application Path of the website (For example \LM\W3SVC\2) in the IIS Metabase should be identical in all the web servers in the web farm. See <a href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;q325056" rel="nofollow">KB 325056</a> for details </li>
</ul>
http://stackoverflow.com/questions/686873/allowing-session-in-a-web-farm-is-stateserver-good-enough/687325#6873252Answer by Freddy Rios for Allowing Session in a Web Farm? Is StateServer Good Enough?Freddy Rios2009-03-26T19:56:21Z2009-03-26T19:56:21Z<p>I have only used sql and in-proc. But these 3 that apply when using sql server apply as well:</p>
<ul>
<li>Avoid storing too much information in the session, as it affects both in serialization and data transmitted over the network.</li>
<li>Make sure you don't have anything that depends on the Session_onEnd. This is just not available for out of process sessions.</li>
<li>Turn off session on pages that doesn't uses it. This don't make a difference for in-process session, but for out of process it will save you a lot.</li>
</ul>
http://stackoverflow.com/questions/686873/allowing-session-in-a-web-farm-is-stateserver-good-enough/687328#6873282Answer by saasman for Allowing Session in a Web Farm? Is StateServer Good Enough?saasman2009-03-26T19:57:06Z2009-03-26T20:12:51Z<p>Make sure your server etag ids are synchronized across the web farm otherwise caching at client browsers will be upset.</p>
<p>Have you reviewed your code in detail to make sure everything can be serialized out of process and across a LAN efficiently?</p>
<p>Are you solving the main performance problem within your system? I ask because the database is the typical source of contention.</p>
<p>My main motivation for moving away from sticky sessions was operational flexibility i.e. cycle down a problematic server or to deploy a software upgrade. So having implemented a central session state service make sure you take full advantage from an operational stand point.</p>
http://stackoverflow.com/questions/686873/allowing-session-in-a-web-farm-is-stateserver-good-enough/708457#7084571Answer by SevDer for Allowing Session in a Web Farm? Is StateServer Good Enough?SevDer2009-04-02T05:57:08Z2009-04-02T05:57:08Z<p>In my experience we've found out that native state server or even using SQL Server for sessions is a very scary scenario as both have issues (mainly performance). By the way, we are also using sticky sessions.</p>
<p>I think you can explore other products for this to achive the absolute best. A free option would be <a href="http://msdn.microsoft.com/en-us/library/cc645013.aspx" rel="nofollow">Velocity</a> but it is still not released.
And another comprehensive but proven product will be (Very expensive actually) <a href="http://www.alachisoft.com/ncache/" rel="nofollow">NCache</a>. THis will even help in your serilizations with less cost, If you use their API's it will be even better results. </p>
<p>Take a look and see which looks best for you.</p>
<p>About SQL Server, you server will die very soon if you have enough number of hits coming in (I belive you have some hits already which yielded you to do Web Farm or you do it just for the sake of redundancy)</p>
<p>Bottom line: We are evaluating Velocity because NCAchce is really expensive. However advantages are huge. </p>