Click here to Skip to main content
15,867,834 members
Articles / Web Development / IIS

What is the difference between Web Farm and Web Garden?

Rate me:
Please Sign up or sign in to vote.
4.90/5 (89 votes)
2 Oct 2010CPOL7 min read 426.6K   85   52
The exact difference between web farm and web garden, and the advantages and disadvantages of using them.

I have been asked this question many times by different readers of my blog. They wanted to know about the fundamentals of Web Farms and Web Garden. In this blog post, I am going to explain the exact difference between web farm and web garden, and the advantages and disadvantages of using them. I have also described how to create web garden in different version of IIS.

Overview

Visual Studio has its own integrated ASP.NET engine which is used to run the ASP.NET Web application from Visual Studio. ASP.NET Development Server is responsible for executing all the requests and responses from the client. Now after the end of development, when you want to host the site on some server to allow other people to access, concept of web servers comes in between. A web server is responsible for providing the response for all the requests that are coming from clients. The below diagram shows the typical deployment structure of an ASP.NET Web application with a single IIS.

2

Clients request for resources and IIS process the request and send back to clients. If you want to know more details on How IIS Processes the request, please read one of my articles about “How IIS Process ASP.NET Request?”.

Web Farm

This is the case where you have only one web server and multiple clients requesting for resources from the same server. But when are is huge amount of incoming traffic for your web sites, one standalone server is not sufficient to process the request. You may need to use multiple servers to host the application and divide the traffic among them. This is called “Web Farm”. So when you are hosting your single web site on multiple web servers over load balancer is called “Web Farm”. The below diagram shows the overall representation of Web Farms.

Web Farms

In general web farm architecture, a single application is hosted on multiple IIS Server and those are connected with the VIP (Virtual IP) with Load Balancer. Load Balancer IPs are exposed to external world to access. So whenever some request will come to server from clients, it will first hit the Load Balancer, then based on the traffic on each server, LB distributes the request to the corresponding web server. These web servers may share the same DB server or may be they can use a replicated server in the back end.

So, in a single statement, when we host a web application over multiple web servers to distribute the load among them, it is called Web Farm.

Web Garden

Now, let’s have a look at what is Web Garden? Both the terms sound the same, but they are totally different from each other. Before starting with Web Garden, I hope you have a fundamental idea of what an Application Pool is and what a Worker Process is. If you have already read the article, “How IIS Processes ASP.NET Request ?”, then I can expect that you now have a good idea about both of them.

Just to recall, when we are talking about requesting processing within IIS, Worker Process (w3wp.exe) takes care of all of these. Worker Process runs the ASP.NET application in IIS. All the ASP.NET functionality inside IIS runs under the scope of worker process. Worker Process is responsible for handling all kinds of request, response, session data, cache data. Application Pool is the container of worker process. Application pool is used to separate sets of IIS worker processes and enables a better security, reliability, and availability for any web application.

apppools

Now, by default, each and every Application pool contains a single worker process. Application which contains the multiple worker process is called “Web Garden”. Below is the typical diagram for a web garden application.

WebGarden Basic

In the above diagram, you can see one of the applications containing the multiple worker processes, which is now a web garden.

So, a Web application hosted on multiple servers and access based on the load on servers is called Web Farms and when a single application pool contains multiple Worker processes, it is called a web garden.

Create Web Garden in IIS 6 and IIS 7

Now, I am going to show how you can change the Number of Worker processes in both IIS 6 and IIS 7. For IIS 6, Right Click on Application Pool > Properties > Goto Performance Tab.

WebGardenIIS6

In the “Performance Tab” section, you would have one option called “Web Garden” where worker process sets to “1”, you can set the number of worker processes that you required.

For IIS 7, Right Click on Application Pool > Go To Advance Settings > In Process Model section, you will have “Maximum Worker Processes”. You can change it more than 1 to make it as a web garden.

WebGardenIIS7

In the above image, you can also check the definition of Web Garden.

You can find one of my previous articles on the basics of the same over here.

Advantages of Web Farm and Web Garden

Now, let’s have a look into the advantages of both the Web Farms and Web Gardens.

Advantages of Web Farm

  • It provides high availability. If any of the servers in the farm goes down, Load balancer can redirect the requests to other servers.
  • Provides high performance response for client requests.
  • Provides better scalability of the web application and reduces the failure of the application.
  • Session and other resources can be stored in a centralized location to access by all the servers.

Advantages of Web Garden

  • Provides better application availability by sharing requests between multiple worker process.
  • Web garden uses processor affinity where application can be swapped out based on preference and tag setting.
  • Less consumption of physical space for web garden configuration.

How to Manage Session in Web Farm Mode?

While using session, requests are distributed among different servers. By default, session mode is set to In Proc where session data is stored inside worker process memory. But, in Web farm mode, we can share the session among all the servers using a single session store location by making it Out proc (State Server or SQL Server Mode). So, if some of the servers go down and request is transferred to the other server by the Load balancer, session data should be available for that request.

sessionWebfarm

In the above diagram, you can see that we can both the IIS server sharing the same session data which is stored in out of worker process. You can read one of my previous articles “Exploring Session in ASP.NET” where I have explained how you can configure session mode for Out Process mode.

How to Manage Session in Web Garden Mode?

When we are using Web garden where request is being taken care of by different worker process, we have to make the session mode as out process session mode as described earlier. For Web Garden, we have to configure the out process within the same server but for different worker process.

webgardenSession2

While using Web garden with your application, you need make a couple of configuration settings in web.config in <process Model> section where you need to set certain properties like cpuMask, RequestLimit, webGarden, ClientConnectCheck, etc.

Summary

When we host a web application over multiple web servers to distribute the load among them, it is called Web Farm and when one application has multiple worker processes, it is called a Web garden.

In this blog post, I have explained the very basics of what a Web Farm is and what a Web Garden is. As this blog post contains the basic information to understand the fundamentals of web farms and web garden concept, I will be posting a separate article with details configuration setting for web garden and web farm. You can read the following articles for more information:

Hope this will help you.


Filed under: ASP.NET, ASP.NET 4.0, IIS

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead
India India
.NET Consultant | Former Microsoft MVP - ASP.NET | CodeProject MVP, Mentor, Insiders| Technology Evangelist | Author | Speaker | Geek | Blogger | Husband

Blog : http://abhijitjana.net
Web Site : http://dailydotnettips.com
Twitter : @AbhijitJana
My Kinect Book : Kinect for Windows SDK Programming Guide

Comments and Discussions

 
Questionweb farm Pin
Yogesh Sindwani6-Jul-17 7:24
Yogesh Sindwani6-Jul-17 7:24 
PraiseThanks Pin
Member 999878024-Sep-16 12:41
Member 999878024-Sep-16 12:41 
PraiseThank you for the post Pin
cpudoctor16-Mar-16 15:11
cpudoctor16-Mar-16 15:11 
QuestionMy vote of 5 Pin
Shanmugam R P1-Mar-16 6:45
Shanmugam R P1-Mar-16 6:45 
QuestionAwesome Awesome super Abhijit Sir Pin
vinayak.ghanti25-Feb-16 19:58
professionalvinayak.ghanti25-Feb-16 19:58 
Questionwho is responsible for web farm? dev or server provider Pin
Rakesh kumar Yadvanshi23-Dec-15 6:25
professionalRakesh kumar Yadvanshi23-Dec-15 6:25 
QuestionSession problem Pin
aesalan8-May-15 1:29
aesalan8-May-15 1:29 
QuestionToo good an article Pin
Member 1160525313-Apr-15 20:52
Member 1160525313-Apr-15 20:52 
QuestionClear and to the point Pin
majobeats30-Jan-15 1:35
majobeats30-Jan-15 1:35 
QuestionMy vote of 5 Pin
Shanmugam R P14-Jan-15 1:09
Shanmugam R P14-Jan-15 1:09 
Questionexplained very well Pin
Amarendhiran31-Dec-14 0:48
Amarendhiran31-Dec-14 0:48 
QuestionWeb farm and web gardan Pin
pathumca18-Sep-14 2:23
pathumca18-Sep-14 2:23 
GeneralMy vote of 5 Pin
Amey K Bhatkar26-May-14 6:37
Amey K Bhatkar26-May-14 6:37 
QuestionMy Vote of 5 Pin
ashok rathod8-Apr-14 20:30
professionalashok rathod8-Apr-14 20:30 
Questiongood explaation Pin
Soumitra Mithu27-Nov-13 4:02
professionalSoumitra Mithu27-Nov-13 4:02 
GeneralMy vote of 5 Pin
Nileshbhai10-Sep-13 22:54
professionalNileshbhai10-Sep-13 22:54 
QuestionWeb Farm with Database Mirroring Pin
Babun isahoo13-Jul-13 3:49
Babun isahoo13-Jul-13 3:49 
GeneralAewsome Article about Web Farm & Garden Pin
chakraproject24-Jun-13 2:44
chakraproject24-Jun-13 2:44 
QuestionExcellent post Pin
vanimankad6-Jun-13 4:15
vanimankad6-Jun-13 4:15 
GeneralExcellent explanation Pin
haarika18-Apr-13 23:44
haarika18-Apr-13 23:44 
SuggestionGood Explanation... Pin
PrabhuPalaniappan12-Feb-13 0:42
PrabhuPalaniappan12-Feb-13 0:42 
GeneralMy vote of 5 Pin
SamehG18-Jan-13 7:11
SamehG18-Jan-13 7:11 
GeneralMy vote of 5 Pin
Mico Perez16-Jan-13 20:52
Mico Perez16-Jan-13 20:52 
QuestionMy Vote 5 Pin
Pr!y@21-Oct-12 0:50
Pr!y@21-Oct-12 0:50 
बहुत अच्छा समझाया है आपने ।

धन्यवाद ।
●๋•háŕکhít●๋•

GeneralMy vote of 5 Pin
grizzlyb5-Oct-12 4:38
grizzlyb5-Oct-12 4:38 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.