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

How to encrypt and decrypt Table data in postgres

For encrypting and decrypting , we must use the bytea data type on the column which we implement. Bcoz bytea will use the pgcrypto method by default. However, you will need to create the pgcrypto extension to enable these functions as they are not pre-defined in PostgreSQL/PPAS. Example CREATE EXTENSION pgcrypto; CREATE TABLE userinfo (username varchar(20), password bytea); >>    Inserting the data in an encrypted format INSERT INTO userinfo VALUES(' suman ',encrypt('111222','password','aes')); select * from userinfo ; >>    Retrieving the data as decrypted format SELECT decrypt(password,decode('password','escape'::text),'aes'::text) FROM userinfo; Thanks for reading Plz dont forget to like Facebook Page.. https://www.facebook.com/pages/Sql-DBAcoin/523110684456757

How to recover msdb database from suspect mode

 It was Monday 9 th Jun 47 degr. temperature of Delhi-NCR. Temperature was like boiling me and database. When I reached my office( @ 8.45 am) got an alert from one of Server. “MSDB is in suspected mode” At the same time comes in my mind, this issue will boil me today.. I just tried to cool my self through cold drink then connected server from my local system using windows authentication mode..

SQL71562: external references are not supported when creating a package from this platform

Last week I got this error from one of developer who was trying to deploy his project from Testing server to SQL Azure QA server. He was using “Deploy Database to SQL Azure” option from SSMS Tool-Task option. After connecting to SQL Azure portal when operation started to deployment below errors occurs. Validation of the schema model for data package failed. Error SQL71562: Error validating element xx.xxx.xx:function .dbo.xxx has an unresolved refrence to object xx.dbo.xxxx external refrences are not supported when creating a package from this platform . Reason: The reason of the this error was; some functions of project was dependent on master database and only single database was being deploy to SQL Azure. DACFx must block Export when object definitions (views, procedures, etc.) contain external references, as Azure SQL Database does not allow cross-database external references So, this error was coming. Solution : I suggested him to create those function to locally