473,804 Members | 3,739 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

ASP.NET Stress Test ACT (Socket Errors)

I´m having this problem: I'm stress testing a ASP.NET web application using
ACT and comparing results with a previous version of the website (developed
in ColdFusion 4.5). When using 300 simultaneous users (about 25-30 rps),
everything works fine, although Cold Fusion seems to be a little faster than
ASP.NET.

When using 2000 simultaneous users (about 50-60 rps), Cold Fusion works
really fine but the application in ASP.NET starts to have socket errors. (See
the test results below). In this cenario TTFB min is ok, the average becomes
a little high and TTFB max is really high (85 sec), what does not happen with
Cold Fusion.

Anyone can say what could be the cause of this problem? Is it possible to be
a configuration issue of the framework? A Network problem?

ACT is running on a single WINXP SP2 station and the website is at a WIN2000
with IIS5 and .NET Framework 1.1

----------------------------------------------------------------------------------------------
Additional Network Statistics

Number of socket connections: 13.635
Number of socket errors: 1.070

Number of bytes sent (bytes): 5.459.234
Number of bytes received (bytes): 21.193.590

Average rate of sent bytes (bytes/sec): 30.329,08
Average rate of received bytes (bytes/sec): 117.742,17

Number of connection errors: 828
Number of send errors: 121
Number of receive errors: 121
Number of timeout errors: 0

Response Codes
Response Code: 200 - The request completed successfully.
Count: 13.514
Percent (%): 100,00
------------------------------------------------------------------------------------------------

Gustavo Barbosa
Nov 19 '05 #1
1 1515
hard to know with this little info. could be configuration or your code.
what was the cpu, queue depth, etc. if you have cpu, and i/o to spare, try
upping the asp.net thread pool size. you may also need to up the ado.net
pool size.

-- bruce (sqlwork.com)

"Gustavo Barbosa" <Gu************ @discussions.mi crosoft.com> wrote in
message news:C4******** *************** ***********@mic rosoft.com...
| I´m having this problem: I'm stress testing a ASP.NET web application
using
| ACT and comparing results with a previous version of the website
(developed
| in ColdFusion 4.5). When using 300 simultaneous users (about 25-30 rps),
| everything works fine, although Cold Fusion seems to be a little faster
than
| ASP.NET.
|
| When using 2000 simultaneous users (about 50-60 rps), Cold Fusion works
| really fine but the application in ASP.NET starts to have socket errors.
(See
| the test results below). In this cenario TTFB min is ok, the average
becomes
| a little high and TTFB max is really high (85 sec), what does not happen
with
| Cold Fusion.
|
| Anyone can say what could be the cause of this problem? Is it possible to
be
| a configuration issue of the framework? A Network problem?
|
| ACT is running on a single WINXP SP2 station and the website is at a
WIN2000
| with IIS5 and .NET Framework 1.1
|
| --------------------------------------------------------------------------
--------------------
| Additional Network Statistics
|
| Number of socket connections: 13.635
| Number of socket errors: 1.070
|
| Number of bytes sent (bytes): 5.459.234
| Number of bytes received (bytes): 21.193.590
|
| Average rate of sent bytes (bytes/sec): 30.329,08
| Average rate of received bytes (bytes/sec): 117.742,17
|
| Number of connection errors: 828
| Number of send errors: 121
| Number of receive errors: 121
| Number of timeout errors: 0
|
| Response Codes
| Response Code: 200 - The request completed successfully.
| Count: 13.514
| Percent (%): 100,00
| --------------------------------------------------------------------------
----------------------
|
| Gustavo Barbosa
Nov 19 '05 #2

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

Similar topics

2
1980
by: Shabam | last post by:
I'm getting the following 2 errors randomly when doing a load test on a web application's search engine. As far as I know, there isn't writing to the DB involved when doing searches, so I'm at a loss of why this occurs under load. I'm not the programmer, but this doesn't seem right. Can someone help me figure out what is causing this, and what should be done to solve it? ERROR 1: Server Error in '/' Application.
0
1382
by: GeorgeB | last post by:
HI, I created an ASP.NET application which runs on win 2003 server and IIS6 with hyperthreading enabled. I keep getting the following error: Path: /Login.aspx. Source: System.Web at System.Web.UI.Page.LoadPageStateFromPersistenceMedium() at System.Web.UI.Page.LoadPageViewState() at System.Web.UI.Page.ProcessRequestMain()
3
1751
by: Rick | last post by:
Hello, I ran Microsoft's free "Web Application Stress" tool to see how asp.net/c# performed against html. Are these results typical? Network: WAS ran on a server with a t3 Internet connection to the test server. Test Server: Windows 2000 SP 4
4
12431
by: martin carmichael | last post by:
Hello, I am wondering how aspnet developers do their web stress on ASPNET apps .. I would like to run mine with apache JMeter, a well-known open source tool. Unfortunately, it does not works well with ASPNET, I think maybe because postback in the dotnet area are not the same as in the html/java/cgi-bin traddition.
7
1582
by: cpnet | last post by:
I'm trying to stress-test some controls I've built in a sample web app using ACT. I'm now using IIS on my SBS 2k3 machine as my webserver for the test, and ACT is running on my XP Pro (sp1) machine. When I run through my test without act, I get a server response for all requests in well under a second. However, when I have ACT running to record a test, those same requests can take 10-20 seconds! Similarly, when I run a test consisting...
0
1298
by: Ravi Chand via .NET 247 | last post by:
(Type your message here) Hi All, One of our ASP.Net application was stress tested recently andunfortunately it is throwing up intermittent errors. Theapplication has been setup in a load balancing environment. Theaspx pages thorwing the errors work normally under stress freeconditions. The 2 distinct errors being thrown are: 1) Specified Cast is not valid System.InvalidCastException: Specified Cast is not valid
3
2128
by: Darkstar 3D | last post by:
If you want to stress test your Apache/PHP server just have a small little typo like this: $errCodes=range(910000,9100005); in your code instead of $errCodes=range(910000,910005); Some serious crunching will go on! Off course don't do this on a
2
4043
by: John Nagle | last post by:
Here's a strange little bug. "socket.getaddrinfo" blows up if given a bad domain name containing ".." in Unicode. The same string in ASCII produces the correct "gaierror" exception. Actually, this deserves a documentation mention. The "socket" module, given a Unicode string, calls the International Domain Name parser, "idna.py", which has a a whole error system of its own. The IDNA documentation says that "Furthermore, the socket...
10
3592
by: John Nagle | last post by:
Here are three network-related exceptions. These were caught by "except" with no exception type, because none of the more specific exceptions matched. This is what a traceback produced: 1. File "D:\Python24\lib\socket.py", line 295, in read data = self._sock.recv(recv_size) timeout: timed out
0
9706
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
9582
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
10580
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...
0
10082
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...
1
7621
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6854
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5525
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...
2
3821
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2993
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.