Skip to main content

Can You Create WEB Garden


Hi Friends

Few month before this question was asked to me , at that time it was totally surprising for me, so my answer was No IDEA sir..I thought this is Non-Technical question because by name its like any kind of Garden and I am aware about such garden...

But This is very interesting Topic in IIS and Web Technology.. This question forced me to searched and share about this GARDEN.. So, I planned to implement and test in our current Organization..  he he....


Actually, When a single Application pool contain multiple Worker process is called web garden and Web application hosted on multiple server and access based on the load on servers is called Web Farms..

Difference between Web Farm and WEB Garden..


Web FARM :


When we hosting our single web site on multiple web server over load balancer called WEB FARM . Think if we have only one web server and multiple clients requesting for the resources from the server. But when there is huge numbers of  incoming traffic for our web sites, one standalone server is not sufficient to process the request. we need to use multiple server to host the application and divide the traffic among them. This Architecture will Called Web Farm. 

Web Garden :

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 kind of request, response, session data, cache data.  Application Pool is the container of worker process. Application pools is used to separate sets of IIS worker processes and enables a better security, reliability, and availability for any web application. Now, by default each and every Application pool contains a single worker process. Application which contains the multiple worker process called Web Garden







Advantages of Web Farm and Web Garden :



Advantages of Web Farm

  1. It provides high availability. If any of the server in the farm goes down, Load balancer can redirects the requests to other servers.
  2. Provides high performance response for client requests.
  3. Session and other resource can be stored in a centralized location to access by the all server.
Advantages of Web Garden:
  1. provides better application availability by sharing request between multiple worker process.
  2. Less consumption of physical space for web garden configuration.




Happy Reading
@SumanJha

Comments

  1. I'm really impressed with your writing skills as well as with the layout on your blog. Is this a paid theme or did you customize it yourself? Either way keep up the nice quality writing, it's rare to see a great blog like this one nowadays.
    Stop by my blog post - How Many Calories In Grapes

    ReplyDelete
    Replies
    1. This comment has been removed by the author.

      Delete
  2. Thanks you so much for the nice comment. This is not a paid theme, this is customized by myself and written by myself. I am technology savvy and like to write and talk about Microsoft Products like Sql Server/IIS / Windows.

    ReplyDelete

Post a Comment

Plz dont forget to like Facebook Page..
https://www.facebook.com/pages/Sql-DBAcoin/523110684456757

Popular posts from this blog

History of MySQL from AB Corp to Cloud Database

MySQL was created by a Swedish company, MySQL AB, founded by David Axmark, Allan Larsson and Michael "Monty" Widenius. Original development of MySQL by Widenius and Axmark began in 1994. The first version of MySQL appeared on 23 May 1995. Its name is a combination of "My", the name of co-founder Michael Widenius's daughter,and "SQL", the abbreviation for Structured Query Language. ·          23 May 1995 - First internal release ·          Year 1996 - Version 3 o     Simple CRUD operations o     January 1997 Windows version was released on 8 January 1998 for Windows 95 and NT o     production release 1998, from www.mysql.com ·          Year 2002 - Version 4 o     MyISAM o     unions o     Tracking o     B-trees o     s...

How to add an article in Transactional Replication

If we have a set-up of Transactional Replication for Data Distribution running and wanting to add new object to replication on other server we can follow below process. To add an article In Transaction replication with PUSH Subscription 

Configure Impersonation Authentication in IIS8 for MVC Application

Impersonation is when ASP.NET executes code in the context of an authenticated and authorized client. By default, ASP.NET does not use impersonation and instead executes all code using the same user account as the ASP.NET process, which is typically the ASPNET account. There are 5 below steps by which we can establish Impersonation configuration in our secured application environment. 1.)    Creation of Application/Proxy user where Application is hosted. 2.)    Give appropriate access to the user. 3.)    Create Database Login user on database. 4.)    Authenticate User and provide credential on IIS. 5.)    Then Configure web.config on Application.