473,385 Members | 2,015 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

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 1809
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
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
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
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
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
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
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
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
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
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
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
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

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.