473,513 Members | 2,401 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

How well will IIS scale up

The situation is as follows:
1. I would like to serve a web page that takes considerable time to
process.
2. While the page is processing, the client displays an appropriate wait
message.

What are the consequences of having this long processing page when there
are many simultaneous requests from many clients for the same page (say
75+).

I appreciate any opinions or suggestions.

Thanks

[This followup was posted to microsoft.public.dotnet.general and a copy
was sent to the cited author.]

Nov 22 '05 #1
5 1821
Guess,

Whatever you do, a page that is not showing new information in 3 seconds,
will let your user to go browsing or doing some other things, notifying him
will not help you with that.

When this is forever, it irritates and he stops going to your page.

(Assuming that he should not however has alternatives)

Just my thought,

Cor
Nov 22 '05 #2
It all come down to how you scale your arhcitecture. You need to work out
your expected hit rate, and get some load testing software and simulate your
hits. When the server falls over with server 500 messages you have exceeded
your maximum hits. If it is greater than your expected hit rate then you
need to scale out or up, or rework your application.

--
Regards

John Timney
Microsoft Regional Director
Microsoft MVP

"Guess" <in******@aol.com> wrote in message
news:MP************************@news-server.socal.rr.com...
The situation is as follows:
1. I would like to serve a web page that takes considerable time to
process.
2. While the page is processing, the client displays an appropriate wait
message.

What are the consequences of having this long processing page when there
are many simultaneous requests from many clients for the same page (say
75+).

I appreciate any opinions or suggestions.

Thanks

[This followup was posted to microsoft.public.dotnet.general and a copy
was sent to the cited author.]

Nov 22 '05 #3
[This followup was posted to microsoft.public.dotnet.general and a copy
was sent to the cited author.]

In article <ul**************@TK2MSFTNGP15.phx.gbl>, "John Timney
\(Microsoft MVP\)" <ti*****@despammed.com> says...
It all come down to how you scale your arhcitecture. You need to work out
your expected hit rate, and get some load testing software and simulate your
hits. When the server falls over with server 500 messages you have exceeded
your maximum hits. If it is greater than your expected hit rate then you
need to scale out or up, or rework your application.

--
Regards

John Timney
Microsoft Regional Director
Microsoft MVP

"Guess" <in******@aol.com> wrote in message
news:MP************************@news-server.socal.rr.com...
The situation is as follows:
1. I would like to serve a web page that takes considerable time to
process.
2. While the page is processing, the client displays an appropriate wait
message.

What are the consequences of having this long processing page when there
are many simultaneous requests from many clients for the same page (say
75+).

I appreciate any opinions or suggestions.

Thanks

[This followup was posted to microsoft.public.dotnet.general and a copy
was sent to the cited author.]


Thanks for your thoughts!

So, you are saying that IIS is capable holding a large number of waiting
threads?. The processes that I plan to wait for a Web Services running
on some other farm of servers.
I am thinking of using BigIP to manage the farm of IIS boxes, as well as
another BigIP box to manage the farm of Web Services handlers. When the
number of requests is not over a threshold, we will process by letting
the thread wait for the Web Service response before responding to the
client.
If however, the number of requests is over the thresshold, we will make
an appropriate entry in a database, and immediatelly return to the
client. The processing will still be done, but now instigated by some
process in SQL Server that will interact with the Web Service.
Nov 22 '05 #4
IIS can scale a server farm to a massive level, so technically it could
scale out to whatever your requriements are - but with scale out comes
expense. This is where you have to consider how your app is architected,
and if your propsed design is appropriate.

--
Regards

John Timney
Microsoft Regional Director
Microsoft MVP
"Guess" <in******@aol.com> wrote in message
news:MP************************@news-server.socal.rr.com...
[This followup was posted to microsoft.public.dotnet.general and a copy
was sent to the cited author.]

In article <ul**************@TK2MSFTNGP15.phx.gbl>, "John Timney
\(Microsoft MVP\)" <ti*****@despammed.com> says...
It all come down to how you scale your arhcitecture. You need to work out your expected hit rate, and get some load testing software and simulate your hits. When the server falls over with server 500 messages you have exceeded your maximum hits. If it is greater than your expected hit rate then you need to scale out or up, or rework your application.

--
Regards

John Timney
Microsoft Regional Director
Microsoft MVP

"Guess" <in******@aol.com> wrote in message
news:MP************************@news-server.socal.rr.com...
The situation is as follows:
1. I would like to serve a web page that takes considerable time to
process.
2. While the page is processing, the client displays an appropriate wait message.

What are the consequences of having this long processing page when there are many simultaneous requests from many clients for the same page (say 75+).

I appreciate any opinions or suggestions.

Thanks

[This followup was posted to microsoft.public.dotnet.general and a copy was sent to the cited author.]


Thanks for your thoughts!

So, you are saying that IIS is capable holding a large number of waiting
threads?. The processes that I plan to wait for a Web Services running
on some other farm of servers.
I am thinking of using BigIP to manage the farm of IIS boxes, as well as
another BigIP box to manage the farm of Web Services handlers. When the
number of requests is not over a threshold, we will process by letting
the thread wait for the Web Service response before responding to the
client.
If however, the number of requests is over the thresshold, we will make
an appropriate entry in a database, and immediatelly return to the
client. The processing will still be done, but now instigated by some
process in SQL Server that will interact with the Web Service.

Nov 22 '05 #5
[This followup was posted to microsoft.public.dotnet.general and a copy
was sent to the cited author.]

In article <eL**************@TK2MSFTNGP15.phx.gbl>, "John Timney
\(Microsoft MVP\)" <ti*****@despammed.com> says...
IIS can scale a server farm to a massive level, so technically it could
scale out to whatever your requriements are - but with scale out comes
expense. This is where you have to consider how your app is architected,
and if your propsed design is appropriate.

--
Regards

John Timney
Microsoft Regional Director
Microsoft MVP
"Guess" <in******@aol.com> wrote in message
news:MP************************@news-server.socal.rr.com...
[This followup was posted to microsoft.public.dotnet.general and a copy
was sent to the cited author.]

In article <ul**************@TK2MSFTNGP15.phx.gbl>, "John Timney
\(Microsoft MVP\)" <ti*****@despammed.com> says...
It all come down to how you scale your arhcitecture. You need to work out your expected hit rate, and get some load testing software and simulate your hits. When the server falls over with server 500 messages you have exceeded your maximum hits. If it is greater than your expected hit rate then you need to scale out or up, or rework your application.

--
Regards

John Timney
Microsoft Regional Director
Microsoft MVP

"Guess" <in******@aol.com> wrote in message
news:MP************************@news-server.socal.rr.com...
> The situation is as follows:
> 1. I would like to serve a web page that takes considerable time to
> process.
> 2. While the page is processing, the client displays an appropriate wait > message.
>
> What are the consequences of having this long processing page when

there

I appreciate your comments. Currently our code makes and entry in the
database and responds immediatelly to the client. The reason is that we
feared that waiting threads (or isolated waiting processes) would bog
down the server requiring more processors. This was the case in IIS3.5
and IIS4.
I am not sure that it would not be so in IIS5, and that is the answer I
seek. Whether IIS5 (or 6), would have equivalent number of connections
per CPU when there are waiting threads or processes.

Thanks
Nov 22 '05 #6

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

Similar topics

2
3722
by: John Fouhy | last post by:
So I've got a horizontal scale widget in my GUI. When I click the mouse in the area to the right of the GUI, the scale advances by 1. 13 +-------------------------+ |<| X |>|...
4
6592
by: codecraig | last post by:
Hi, I am using Tkinter and I have a Label and a Scale. I want to update my label everytime the Scale value changes. What is the best way of doing this? Do i have to bind for every event type? ...
5
316
by: Guess | last post by:
The situation is as follows: 1. I would like to serve a web page that takes considerable time to process. 2. While the page is processing, the client displays an appropriate wait message. What...
7
17402
by: Randy Vande Hei | last post by:
Does anyone know how to change the the GDI+ coordinate system like you used to be able to do in VB6 with the picturebox.scale method. The picturebox.scale method took an x,y point defining the...
3
7282
by: John Bonds | last post by:
I'm looking for some sort of digital scale to integrate into .NET. Does anybody know of anything (like a postal scale) that attaches to USB, serial or whatever that comes with a DLL or an API...
3
2011
by: Jerry Spence1 | last post by:
A very useful feature was added in 2.0 of .NET framework which was the scaling of a form and all the controls within it. This is really useful but I am finding very little information of how to use...
0
2488
by: Wayne | last post by:
I am charting data from a query that consists of a Date/Time field and a Number field. The Date/Time field is the x scale on my chart. Sometimes data is collected from different times during the...
7
4190
Wagsy
by: Wagsy | last post by:
Hi All, I have a small form that allows scale weigh data to be diplayed in a textbox. i can communicate with the scale - tare, zero etc. how do i filter the weight string or i think it may be...
19
4867
by: Matteo Migliore | last post by:
Hi! I've to scale a vector of numbers of size N to a vector of size M. The trasformation is like a zoom on images but I need on a vector. The second size can be M >= N or M <= N, M 0. The...
0
1420
by: vertigo | last post by:
Hello i wanted to draw graph. On X scale i have time (in seconds). I have measure points for everyday from 8 AM to 4 PM. On Y scale i have values. For one day everything looks fine. But i...
0
7264
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,...
0
7386
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,...
1
7106
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...
0
7534
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...
0
5689
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
5094
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
3236
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...
0
1601
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
459
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...

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.