473,804 Members | 2,134 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

ASP.NET 2.0 application across three physical servers?

Hi folks,

We're looking for a CMS system for our organisation, and we're picking
potential solutions.

We need something that is scalable cause we're a growing company, so
there's potentially 2000+ simultaneous users.

It's been recommended that we favour applications which can be
separated into three separate physical tiers (web server, application
server, and sql server). The justification being that it's very
expensive to add additional application servers just because you're
web traffic increases.

In my experience, I've never seen anyone deploy a typcial ASP.NET web
site in this way, where there is a separate application server.
Instead, I've seen IIS and the .NET App always live on the same
machine, possibly in a load balanced cluster etc (see below).

Small Scale
=========
Server A - IIS, .NET App, MSSQL

Small/Medium Scale
==========
Server A - IIS, .NET App
Server B - MSSQL

Medium Scale
==========
Server A - Load Balancer
Server B - IIS, .NET App
Server C - IIS, .NET App
Server D - MSSQL
Server E - MSSQL Session State Server

How would you go about deploying a "typical" .NET application across 3
tiers? Would you want to?
>From what I understand, web services/messaging/remoting/COM+ are all
ways of allowing independent deployment of the application tier (I've
used some of these myself), but these come with their own costs and
complexities. For most .NET apps I'd favour clustering for simple
scalability. Am I missing something?

Hope this makes sense

Tobin

Note that I'm not knocking the Web/App/Data server approach, I use
this with RubyOnRails all the time (Apache Server / Mongrels App
Servers / MySQL).

Feb 13 '07 #1
4 1425
I'm not sure I understand your question. If you are talking about "tiers"
that usually refers to the logical, not physical (e.g. "data tier" "business
logic tier", etc)

You can certainly set up an app in conformance with your "Medium Scale"
example - it's no big deal. Is your question related to "how to do that"?
Peter

--
Site: http://www.eggheadcafe.com
UnBlog: http://petesbloggerama.blogspot.com
Short urls & more: http://ittyurl.net


"to***@tobinhar ris.com" wrote:
Hi folks,

We're looking for a CMS system for our organisation, and we're picking
potential solutions.

We need something that is scalable cause we're a growing company, so
there's potentially 2000+ simultaneous users.

It's been recommended that we favour applications which can be
separated into three separate physical tiers (web server, application
server, and sql server). The justification being that it's very
expensive to add additional application servers just because you're
web traffic increases.

In my experience, I've never seen anyone deploy a typcial ASP.NET web
site in this way, where there is a separate application server.
Instead, I've seen IIS and the .NET App always live on the same
machine, possibly in a load balanced cluster etc (see below).

Small Scale
=========
Server A - IIS, .NET App, MSSQL

Small/Medium Scale
==========
Server A - IIS, .NET App
Server B - MSSQL

Medium Scale
==========
Server A - Load Balancer
Server B - IIS, .NET App
Server C - IIS, .NET App
Server D - MSSQL
Server E - MSSQL Session State Server

How would you go about deploying a "typical" .NET application across 3
tiers? Would you want to?
From what I understand, web services/messaging/remoting/COM+ are all
ways of allowing independent deployment of the application tier (I've
used some of these myself), but these come with their own costs and
complexities. For most .NET apps I'd favour clustering for simple
scalability. Am I missing something?

Hope this makes sense

Tobin

Note that I'm not knocking the Web/App/Data server approach, I use
this with RubyOnRails all the time (Apache Server / Mongrels App
Servers / MySQL).

Feb 13 '07 #2
On 13 Feb, 17:49, Peter Bromberg [C# MVP]
<pbromb...@yaho o.yabbadabbadoo .comwrote:
I'm not sure I understand your question. If you are talking about "tiers"
that usually refers to the logical, not physical (e.g. "data tier" "business
logic tier", etc)

You can certainly set up an app in conformance with your "Medium Scale"
example - it's no big deal. Is your question related to "how to do that"?

Peter
Thanks for the reply, I'll try and be clearer!

Essentially I'm asking if it's common to have a 3-server setup for a
typical ASP.NET site rather than a 2-server setup. In the 3 server
setup one server acts as a presentation server (web), another acts as
an *application server*, and then the 3rd acts as a database server. I
don't think I've ever seen this configuration in ASP.NET - the web and
application server are usually one and the same.

We have an advisor who is telling us that, for scalability, we should
be aiming for this three server deployment model. However, I was
trying to think how this might be achieved in .NET without having to
re-write the site to use services, remoting or messaging. Our
application doesn't seem to warrant the complexity that this would
involve, and scaling can probably be done by mirroring & load
balancing instead.

Hope that makes some sense!

Tobin

Feb 14 '07 #3
Scalability is not necessarily improved by moving "pieces" of an application
to separate physical machines. For example, when a SQL Server is located on a
separate machine, more network latency comes into play for each SQL call than
if it were on the same machine.
There are a lot of factors to consider, and each application has different
characteristics under load. Load testing is one way to compare the results of
different deployment scenarios.
Peter

--
Site: http://www.eggheadcafe.com
UnBlog: http://petesbloggerama.blogspot.com
Short urls & more: http://ittyurl.net


"to***@tobinhar ris.com" wrote:
On 13 Feb, 17:49, Peter Bromberg [C# MVP]
<pbromb...@yaho o.yabbadabbadoo .comwrote:
I'm not sure I understand your question. If you are talking about "tiers"
that usually refers to the logical, not physical (e.g. "data tier" "business
logic tier", etc)

You can certainly set up an app in conformance with your "Medium Scale"
example - it's no big deal. Is your question related to "how to do that"?

Peter

Thanks for the reply, I'll try and be clearer!

Essentially I'm asking if it's common to have a 3-server setup for a
typical ASP.NET site rather than a 2-server setup. In the 3 server
setup one server acts as a presentation server (web), another acts as
an *application server*, and then the 3rd acts as a database server. I
don't think I've ever seen this configuration in ASP.NET - the web and
application server are usually one and the same.

We have an advisor who is telling us that, for scalability, we should
be aiming for this three server deployment model. However, I was
trying to think how this might be achieved in .NET without having to
re-write the site to use services, remoting or messaging. Our
application doesn't seem to warrant the complexity that this would
involve, and scaling can probably be done by mirroring & load
balancing instead.

Hope that makes some sense!

Tobin

Feb 14 '07 #4
jb
But, what do you mean with .net app?

As I know, the .net app runs directly under IIS, you can not separate them

Xus

<to***@tobinhar ris.comescribió en el mensaje
news:11******** **************@ s48g2000cws.goo glegroups.com.. .
Hi folks,

We're looking for a CMS system for our organisation, and we're picking
potential solutions.

We need something that is scalable cause we're a growing company, so
there's potentially 2000+ simultaneous users.

It's been recommended that we favour applications which can be
separated into three separate physical tiers (web server, application
server, and sql server). The justification being that it's very
expensive to add additional application servers just because you're
web traffic increases.

In my experience, I've never seen anyone deploy a typcial ASP.NET web
site in this way, where there is a separate application server.
Instead, I've seen IIS and the .NET App always live on the same
machine, possibly in a load balanced cluster etc (see below).

Small Scale
=========
Server A - IIS, .NET App, MSSQL

Small/Medium Scale
==========
Server A - IIS, .NET App
Server B - MSSQL

Medium Scale
==========
Server A - Load Balancer
Server B - IIS, .NET App
Server C - IIS, .NET App
Server D - MSSQL
Server E - MSSQL Session State Server

How would you go about deploying a "typical" .NET application across 3
tiers? Would you want to?
>>From what I understand, web services/messaging/remoting/COM+ are all
ways of allowing independent deployment of the application tier (I've
used some of these myself), but these come with their own costs and
complexities. For most .NET apps I'd favour clustering for simple
scalability. Am I missing something?

Hope this makes sense

Tobin

Note that I'm not knocking the Web/App/Data server approach, I use
this with RubyOnRails all the time (Apache Server / Mongrels App
Servers / MySQL).

Feb 14 '07 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

13
8410
by: Charles Handy | last post by:
How does FastCGI compare against java Apps running in java app servers like TomCat, Sun One, WebLogic and WebSphere? Is there a business case for switching from CGI to Java? Performance? Productivity? Features? Object orientation? Code Reuse? Any opinions?
3
1653
by: Varkey | last post by:
Dear friends, I am new to .NET based app development and have a pretty elementary query, I suppose... I have caught up with the basics of .NET pretty well, thanks to some Microsoft VB/ASP background and helpful colleagues... The query goes... In a DOTNET based desktop application environment, does it make sense to have each copy of the installed application from the different
4
2230
by: Chris Gatto | last post by:
Hello, My organization is currently considering the purchase of a new intranet application server and we are looking for opinions from those who have been down this road before. In brief the server must support the following: - 600+ users using various ASP.Net based applications, only 2 currently but growing over time as old legacy apps are converted; - Some applications are mission critical, others not so much; - DB back-end is a...
2
3830
by: gdabbara | last post by:
Hi, We have a situation where we want to move our current database server to a different hardware and rename the server. If we change the Physical server name, do we have to go thru the whole process of changing it in sql server by running sp_dropserver, sp_addserver? Can we have an alias for the server name in DNS and can sql server resolve the server name internally by going thru DNS? For eg: Our current database server name is...
14
4342
by: spencer | last post by:
My client is going through a large project to replace existing data warehouse physical infastructure which is running DB2 8.1.6. In the past we had a much more distributed environment where we had certain portions of the data warehouse on a physically different server. We utilized federation to allow the joining of tables on seperate instances. We found that this worked ok in situations where the tables were not that large say under...
8
1724
by: Mike Silva | last post by:
Hello all, I'm a longtime programmer (embedded with a smattering of desktop stuff as well) who knows very little about web programming. Right now I am developing the prototype of a multi-user application in MSVC++, but I think it would make more sense to redo the app as a web application (which I know almost nothing about, remember). From poking around I see that PHP is a fairly mainstream candidate for me to consider. Now, I will...
15
2633
by: (PeteCresswell) | last post by:
Some time within the next nine months, there's a pretty good chance I'll have the "opportunity" to port a bond trading system that I wrote - whose front end is currently MS Access - to .NET. Quotes bc I need this like I need another hole in the head. But in the words of one of my esteemed colleagues: "I don't sell programming; I sell happiness." And if this will make my clients happy, that's what floats my boat in the long run.
0
1510
by: jehugaleahsa | last post by:
On Jun 13, 3:09 pm, "Bob Powell " <b...@spamkillerbobpowell.net> wrote: I apologize for the size. I should have probably put this on a blog or something. I'm not interested in tools. I interested in concepts / better ways of handling day-to-day design decisions.
0
4949
by: Brian Pitt | last post by:
Hi I am trying to use WinHttp.WinHttpRequest.5.1 to access an https (ssl) page on an Oracle-Application-Server-10g and I keep getting a -2147483638 error. I am able to use the exact same script to access https pages on other servers and I can access http requests on oracle application servers. The problem is isolated to accessing https pages on oracle application servers and I have now come up against this problem with three of my
0
9715
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9595
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10603
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10356
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10099
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
5536
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5675
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3836
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3003
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.