Manage session state
Explains how to manage session states when using Optimizely Digital Experience Platform (DXP).
This topic explains how to manage session states when using Optimizely Digital Experience Platform (DXP). Page load time is important, because it correlates with increased conversion rates and better search ranking. Disabling session state can reduce average page load time by enabling parallel processing of requests.
A session is defined as the period of time that a unique user interacts with the web application. Session state queues up requests from a visitor, so that the information is synched between each request for example when running a website in multiple tabs.
By default, Optimizely relies on ASP.NET for managing session states. This in-memory session state provider lets you store and retrieve values for a user navigating ASP.NET pages in a web application. Also, sticky sessions are often used with application load-balancing, so that a visitor is directed to the same instance in Azure. The combination of these provide a performant way of using sessions for non-critical data.
Session state and Optimizely features
Core parts of Optimizely do not use session state, but the specific functionality listed below does.
- Self-Optimizing Block
- Google Analytics. Will fallback to request state if session state is disabled.
- Find tracking. Can use current session ID, but will fallback to current user identity name.
- Forms.
- Forms use cookies to identify visitors, and DDS as persistent storage. When DDS cannot be written to, Forms use a session state-based storage (IVolatileStorage), for example in form steps.Â
- Captcha validator uses session state, but you can use ReCaptchaValidator instead.
Note
The session requirement for Visitor Groups was removed in Optimizely Content Management System (CMS) 11.9.0. With this release you can use all visitor groups without session state on the server side. See Session state handling in visitor group criteria.
Considerations
If an instance is decommissioned because the environment is scaling down, or during code deployment and upgrade of instances, you lose that session state for users on that instance. In most cases, this is acceptable for non-critical data. For visitor groups using session state, a criterion will not get any matches because the data is no longer available. The matching has to start from scratch, which visitors will not notice.
Session state may have a negative impact on performance, deployment, and scalability. Therefore, in a load-balanced environment of scale, you should disable session state on controllers, or only use it where needed. If you are using session state for storing critical data, consider using another session state provider than the default.
Recommendations
You should disable session state with DXP. See the following approaches, if you decide to use sessions for your solution.
Session state for sites that load data asynchronously
If sessions are enabled, only one request at a time is allowed to be processed by the web server, to ensure there are no concurrency problems when accessing the session store.
The same page loading with sessions disabled:
The importance depends on the nature of your application. It will impact the edit UI, which is heavily asynchronous, and much more responsive without sessions. If the site uses SSL, the difference is even greater, due to modern protocols like SPDY/HTTP2.
Expect sessions to be "lossy"
When using the standard in-proc session provider, session data is only stored in-memory on a single server. The DXP ensures that visitors are automatically directed to the server holding their session, but as the service infrastructure is continuously scaled to match the load, sessions may be lost.
The cause of loss can be:
- The particular server is unexpectedly shut down.
- The service automatically provisions a new server.
- The service scales down capacity.
Sessions can still be a useful caching mechanism to hold customer profile information, but the client should be able to automatically recover data from the primary source if a session is destroyed. If you decide to use this option, be sure to monitor how many sessions are lost over time, and adjust your strategy based on that data.
If you require "lossless" sessions
- Consider storing transactional data in a transactional datastore, for example DDS or SQL.
- Use the SQL-based session provider.
The SQL-based session provider ensures everything in a session is persisted and can be recovered, even in the case of a disaster affecting the primary region. This insurance comes at a cost, as additional roundtrips to SQL server further increases latency of requests.
Configuring SQL session state
Add the following in web.config to activate session state for SQL Server:
<sessionState mode="Custom"
customProvider="DefaultSessionProvider">
<providers>
<add name="DefaultSessionProvider"
type="System.Web.Providers.DefaultSessionStateProvider,
System.Web.Providers,
Version=2.0.0.0,
Culture=neutral,
PublicKeyToken=31bf3856ad364e35"
connectionStringName="EPiServerDB" />
</providers>
</sessionState>
Note
Enabling session state for SQL Server may have negative impact on performance for your solution.
See also: Session-State Modes (Microsoft)
Updated about 1 month ago