vote up 4 vote down star
3

I'm using in memory sessions in my ASP.NET MVC application which means that I can only have one single worker thread correct? Does this mean I have parallel processing in my application (think concurrent requests) or not? Does my application accept only 1 request at a time?

Edit: According to the IIS7 web site:

If the application uses in-process session variables, 
the application will not function correctly, because the same user requests 
are picked up by different worker processes that 
do not share the same session details.

So this means in-memory session can only have 1 worker thread or not? See also here from the IIS7 forums.

flag

68% accept rate
Processes and threads mean different things in the context of ASP.NET and IIS. Multiple processes mean that you have multiple session stores. – BrianLy Aug 24 at 2:17

2 Answers

vote up 1 vote down check

Your application receives multiple requests at a time. Based on your edits and comments here you are looking for information on Web Gardens and sessions, as opposed to threads and session state.

Web Gardens use multiple processes and act like a load balancer when it comes to session state. Each process will have a separate in memory session store. IIS will send requests to any available process. Since the processes do not share session state then session usage will only really work if your session provider is shared between all the web garden processes.

Web Gardens only make sense if you use something like SQL Server for session state, and want to have affinity with a particular CPU/core. Since you can increase the number of threads this may be a more appropriate optimization for some users than using web gardens. However some applications may perform better with web gardens due to a particular work load or application characteristic. Use of web gardens in testing could also help work out some potential issues present under load balancing.

I believe it uses the .NET ThreadPool and has 20 threads by default. The each request coming into the server may be handled on a separate thread. The ASP.NET performance guidelines have some information on this topic.

link|flag
Doesn't this create a problem with the in memory session though? As far as I know the sessions need to stay on the same thread or everything blows up. – Alex Aug 24 at 2:10
I don't see why threads would be linked to sessions. The Session ID should be enough to lookup the session data so there would be no reason need to map to the same thread. Session data is stored separately even if it is 'in memory'. The same APIs are used to plug in the other session providers. – BrianLy Aug 24 at 2:13
Updated the question with quote from IIS7 site & forum link. Supposedly in process (in memory) session doesn't share information across worker threads. Is this wrong info? – Alex Aug 24 at 2:16
1  
It's the right information but you are not really understanding the nuances here. Processes are different beasts from threads. Web Gardens start multiple processes but IIS maps every request through. This pretty much simulates a load-balanced environment. Hence the processes have separate session state but the end user could end up hitting either process on the next request. – BrianLy Aug 24 at 2:19
+1 thanks for the explanation Brian. Does it make sense to have web gardens then on one server? When one could just increase the worker THREAD count of the single IIS process? – Alex Aug 24 at 2:22
show 1 more comment
vote up -1 vote down

In memory sessions means you should typically only have one front-end web server at a time, not a single worker thread :D

The reason being that any information stored in session on one machine is not available on the other. If you have two front-end web servers and your proxy or firewall does "load-balancing" whereby it will randomly assign requests to web servers, then you will have problems. That said, the problem is easily solved with so called "sticky sessions" where users are always sent to the same server.

-Oisin

link|flag
Follow Up: Why can't you enable 'web garden' processing on your machine then across multiple CPU on one server? This causes random session loss. – Alex Aug 24 at 2:12
My understanding is that a web garden creates multiple processes on a machine. Each process will have a different session state store. – BrianLy Aug 24 at 2:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.