Walkthrough: Configuring a shared session state database using the MongoDB provider
A contact can make multiple visits to a website from different devices or browser sessions at the same time. With shared session-state the session state database collects all the data that can be shared across these multiple sessions. This includes, for example, data related to contacts and devices. This data is still private to the contact but it is accessible from all current sessions made by the same contact.
You must always configure shared session state on your content delivery (CD) servers, regardless of whether you have a single standalone CD server, multiple CD servers, or a clustered environment.
Shared session state is not supported on content management servers.
You can configure shared session state to use any session-state store provider that extends the abstract class SessionStateStoreProviderBase
(shipped with ASP.NET). The only additional requirement is that the session-state store provider can invoke the SessionEnd
event via SessionStateItemExpireCallback
.
The standard OutOfProcSessionStateStore
that is shipped with ASP.NET does not support the SessionEnd
event and therefore cannot be used with shared session state.
If you are using the xDB Cloud Edition, using the shared session state provider for MongoDB is not included as part of this service.
Follow the steps in this section to use a MongoDB database as your shared session state store using the Sitecore ASP.NET Session State Provider for MongoDB deploy a MongoDB session database, configure Sitecore, adjust session state settings.
Deploy a MongoDB session database
The Sitecore ASP.NET Session State Provider for MongoDB enables you to use MongoDB as your session state store. The provider supports the SessionEnd
event, which the xDB needs to track website visits.
To deploy a MongoDB session database:
-
Install the MongoDB database server version 2.6 or later on a dedicated server using the instructions on the MongoDB website.
-
In a suitable XML editor, open the
ConnectionStrings.config
file located here:<sitename>\Website\App_Config
and add the following connection string:RequestResponse<add name="sharedsession" connectionString="mongodb://_mongo_server_name_:_port_number_/_session_database_name_" />
-
Configure the connection string so that it points to your session database.
-
Save your changes.
Configure Sitecore
Do not make changes directly to the configuration files. Instead, you must create a patch file that performs the required changes during run time.
To configure Sitecore to use the shared session-state provider for MongoDB:
-
In your website root folder, navigate to the
\App_Config\Marketing.Tracking
folder. -
Open the
Sitecore.Analytics.Tracking.config
file. -
Locate the line where you can define the default shared session state provider using the following path:
sitecore/tracking/sharedSessionState
. -
The default shared session store uses inProc provider (storing data in memory and implemented in the internal ASP.NET class InProcSessionStateStore):
RequestResponse<sharedSessionState defaultProvider="inProc"> <providers> <clear/> <add name="inProc" type="System.Web.SessionState.InProcSessionStateStore" /> </providers> </sharedSessionState>
NoteFor clustered environments, Sitecore ships with a MongoDB session state store provider.
-
To configure MongoDB as your shared session-state store provider, change the
defaultProvider
frominProc
tomongo
. Also, change the name attribute value tomongo
.RequestResponse<sharedSessionState defaultProvider="mongo"> <providers> <clear/> <add name="mongo" type="Sitecore.SessionProvider.MongoDB.MongoSessionStateProvider, Sitecore.SessionProvider.MongoDB" connectionStringName="sharedsession" pollingInterval="2" compression="true" sessionType="shared"/> </providers> </sharedSessionState>
Adjust session state settings
In Sitecore, when you configure a session state, you have the following configuration options:
Setting |
Description |
Value |
---|---|---|
|
Specifies the connection string that Sitecore uses to connect to the session database. Edit to specify the session state database that you want to use. |
For example:
|
|
Specifies the time interval in seconds that the session-state provider uses to check if any sessions have expired. |
For example:
|
|
Specifies that you want session-state data to be compressed. The default value is true. Compressing session state data reduces the amount of data that you need to transfer between the database and the Sitecore instance. This may cause some additional CPU overhead. |
For example:
|
|
Specifies that the type of session state is |
Only valid value:
|