Introduction
This article describes the concept of application pools and web garden that has been introduced in IIS 6.0.
I have tried to keep it simple and short, at the same time informative.
What is an Application Pool?
IIS can isolate an individual Web application or multiple sites into a self-contained process (called an application pool) that communicates directly with the Operating System kernel.
What is a Web Garden?
IIS 6.0 worker process isolation modes also enable multiple worker processes to be configured to service requests for a given application pool. This configuration is known as a Web garden.
IIS 6.0 Architecture
The figure below describes the IIS 6.0 architecture in its simplest form.
Unlike previous versions of IIS, there are multiple processes (application pools) that run independent of each other. The biggest advantage of this (isolation of processes) is, in a shared hosting environment, when one of the web sites goes down because of a heavy load, that doesn't effect the other websites that are running under a different application pool.
Moreover, the IIS 6.0 manager allows you to limit the max memory that can be used by an application pool. It also allows you to configure parameters related to the performance and health of an application pool.
Advantages of using this feature
This article describes the concept of application pools and web garden that has been introduced in IIS 6.0.
I have tried to keep it simple and short, at the same time informative.
What is an Application Pool?
IIS can isolate an individual Web application or multiple sites into a self-contained process (called an application pool) that communicates directly with the Operating System kernel.
What is a Web Garden?
IIS 6.0 worker process isolation modes also enable multiple worker processes to be configured to service requests for a given application pool. This configuration is known as a Web garden.
IIS 6.0 Architecture
The figure below describes the IIS 6.0 architecture in its simplest form.
Unlike previous versions of IIS, there are multiple processes (application pools) that run independent of each other. The biggest advantage of this (isolation of processes) is, in a shared hosting environment, when one of the web sites goes down because of a heavy load, that doesn't effect the other websites that are running under a different application pool.
Moreover, the IIS 6.0 manager allows you to limit the max memory that can be used by an application pool. It also allows you to configure parameters related to the performance and health of an application pool.
Advantages of using this feature
- These self-contained application pools prevent an application or site from disrupting the XML Web Services or other Web applications on the server.
- OS resource (memory, CPU utilization etc.) allocation.
- Isolation increases throughput, and increases the capacity of applications.
- Offers more headroom on servers, which in turn reduces hardware needs.
- Through web garden and processor affinity, increases throughput and capacity of applications.
Comments
Post a Comment