473,666 Members | 2,238 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Are these stress test results typical?

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
1 GIG AMD CPU
1 GIG RAM
IIS 5, no logging

Test:
Page1.htm 20 lines of super simple html text, no tables, css etc.
Page2.aspx same extact text as in page1.htm (no asp controls added), but
created in VS with code behind cs file that I didn't alter.

WAS Settings:
All default except:
Stress Level (threads) 30 [sockets remained 1 per thread]
Test Run Time: 5 mins

Results:

Page2.aspx
CPU Averaged 94%

Number of test clients: 1
Number of hits: 83283
Requests per Second: 277.61

Socket Statistics
----------------------------------------------------------------------------
----
Socket Connects: 83313
Total Bytes Sent (in KB): 22779.38
Bytes Sent Rate (in KB/s): 75.93
Total Bytes Recv (in KB): 93532.59
Bytes Recv Rate (in KB/s): 311.78

Page Summary
Page Hits TTFB Avg TTLB Avg Auth
Query
=============== =============== =============== ==
GET 83283 61.95 61.98 No


Page1.htm
CPU Averaged 21%

Number of test clients: 1
Number of hits: 95276
Requests per Second: 317.58

Socket Statistics
----------------------------------------------------------------------------
----
Socket Connects: 95306
Total Bytes Sent (in KB): 20662.04
Bytes Sent Rate (in KB/s): 68.87
Total Bytes Recv (in KB): 109604.62
Bytes Recv Rate (in KB/s): 365.35

Page Summary
Page Hits TTFB Avg TTLB Avg Auth
Query
=============== =============== =============== ====
GET 95276 48.60 48.62 No
At first blush the results seem to be in order, but asp.net really sucked up
the CPU for a dummy page. What do you think?

Rick

P.S. Thank you, but caching advice won't apply to our needs.


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.558 / Virus Database: 350 - Release Date: 1/2/2004
Nov 18 '05 #1
3 1742
Here's the web.config file:

<?xml version="1.0" encoding="utf-8" ?>
<configuratio n>

<system.web>

<compilation
defaultLanguage ="c#"
debug="false"
/>

<customErrors
mode="Off"
/>

<authenticati on mode="None" />

<authorizatio n>
<allow users="*" /> <!-- Allow all users -->
<!-- <allow users="[comma separated list of users]"
roles="[comma separated list of roles]"/>
<deny users="[comma separated list of users]"
roles="[comma separated list of roles]"/>
-->
</authorization>

<trace
enabled="false"
requestLimit="1 0"
pageOutput="fal se"
traceMode="Sort ByTime"
localOnly="true "
/>
<sessionState
mode="InProc"
stateConnection String="tcpip=1 27.0.0.1:42424"
sqlConnectionSt ring="data
source=127.0.0. 1;Trusted_Conne ction=yes"
cookieless="fal se"
timeout="20"
/>

<globalizatio n
requestEncoding ="utf-8"
responseEncodin g="utf-8"
/>

</system.web>

</configuration>

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.558 / Virus Database: 350 - Release Date: 1/2/2004
Nov 18 '05 #2
Rick,

Those results sound correct.

But why would anyone use an .aspx page to deliver static content? Of course
the .aspx page is going to use the cpu intensively for a moment. It is
compiling the page whether there is dynamic content or not because the page
is linked to the application's .dll.

A real test would be a database pull on an .asp page or j2ee page vs. the
same datapull and display in a .aspx page.

If, somewhere in your asp.net application, all you need to do is deliver
static content you should definitely use a .htm page.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
"Rick" <no****@nospam. com> wrote in message
news:uX******** ******@TK2MSFTN GP12.phx.gbl...
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
1 GIG AMD CPU
1 GIG RAM
IIS 5, no logging

Test:
Page1.htm 20 lines of super simple html text, no tables, css etc.
Page2.aspx same extact text as in page1.htm (no asp controls added), but
created in VS with code behind cs file that I didn't alter.

WAS Settings:
All default except:
Stress Level (threads) 30 [sockets remained 1 per thread]
Test Run Time: 5 mins

Results:

Page2.aspx
CPU Averaged 94%

Number of test clients: 1
Number of hits: 83283
Requests per Second: 277.61

Socket Statistics
-------------------------------------------------------------------------- -- ----
Socket Connects: 83313
Total Bytes Sent (in KB): 22779.38
Bytes Sent Rate (in KB/s): 75.93
Total Bytes Recv (in KB): 93532.59
Bytes Recv Rate (in KB/s): 311.78

Page Summary
Page Hits TTFB Avg TTLB Avg Auth
Query
=============== =============== =============== ==
GET 83283 61.95 61.98 No


Page1.htm
CPU Averaged 21%

Number of test clients: 1
Number of hits: 95276
Requests per Second: 317.58

Socket Statistics
-------------------------------------------------------------------------- -- ----
Socket Connects: 95306
Total Bytes Sent (in KB): 20662.04
Bytes Sent Rate (in KB/s): 68.87
Total Bytes Recv (in KB): 109604.62
Bytes Recv Rate (in KB/s): 365.35

Page Summary
Page Hits TTFB Avg TTLB Avg Auth
Query
=============== =============== =============== ====
GET 95276 48.60 48.62 No
At first blush the results seem to be in order, but asp.net really sucked up the CPU for a dummy page. What do you think?

Rick

P.S. Thank you, but caching advice won't apply to our needs.


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.558 / Virus Database: 350 - Release Date: 1/2/2004

Nov 18 '05 #3
Change page1.htm to page1.asp and see what happens, or re-do page2.aspx
to be page2.html, as it seems from your message that it can be an html page.
One would use asp/aspx only if it must access some resource, like a
database, etc, and asp/aspx is slower than html.

"Rick" <no****@nospam. com> wrote in message
news:uX******** ******@TK2MSFTN GP12.phx.gbl...
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
1 GIG AMD CPU
1 GIG RAM
IIS 5, no logging

Test:
Page1.htm 20 lines of super simple html text, no tables, css etc.
Page2.aspx same extact text as in page1.htm (no asp controls added), but
created in VS with code behind cs file that I didn't alter.

WAS Settings:
All default except:
Stress Level (threads) 30 [sockets remained 1 per thread]
Test Run Time: 5 mins

Results:

Page2.aspx
CPU Averaged 94%

Number of test clients: 1
Number of hits: 83283
Requests per Second: 277.61

Socket Statistics
-------------------------------------------------------------------------- -- ----
Socket Connects: 83313
Total Bytes Sent (in KB): 22779.38
Bytes Sent Rate (in KB/s): 75.93
Total Bytes Recv (in KB): 93532.59
Bytes Recv Rate (in KB/s): 311.78

Page Summary
Page Hits TTFB Avg TTLB Avg Auth
Query
=============== =============== =============== ==
GET 83283 61.95 61.98 No


Page1.htm
CPU Averaged 21%

Number of test clients: 1
Number of hits: 95276
Requests per Second: 317.58

Socket Statistics
-------------------------------------------------------------------------- -- ----
Socket Connects: 95306
Total Bytes Sent (in KB): 20662.04
Bytes Sent Rate (in KB/s): 68.87
Total Bytes Recv (in KB): 109604.62
Bytes Recv Rate (in KB/s): 365.35

Page Summary
Page Hits TTFB Avg TTLB Avg Auth
Query
=============== =============== =============== ====
GET 95276 48.60 48.62 No
At first blush the results seem to be in order, but asp.net really sucked up the CPU for a dummy page. What do you think?

Rick

P.S. Thank you, but caching advice won't apply to our needs.


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.558 / Virus Database: 350 - Release Date: 1/2/2004

Nov 18 '05 #4

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

Similar topics

4
12419
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
1575
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...
1
1511
by: Gustavo Barbosa | last post by:
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...
2
1196
by: Mardy | last post by:
I need to stress test an asp.net application but I don't have the Microsoft Application Center Test tool. Does anybody know of a good FREE tool that I can use to stress test my application? Thanks
3
2112
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
27
3775
by: Josh | last post by:
We have a program written in VB6 (over 100,000 lines of code and 230 UI screens) that we want to get out of VB and into a better language. The program is over 10 years old and has already been ported from VB3 to VB6, a job which took over two years. We would like to port it to Python, but we need to continue to offer upgrades and fixes to the current VB6 version. Does anybody know of ways we could go about rewriting this, one screen at a...
0
1317
by: Phase 3 team | last post by:
Hi Can someone define in the WAS tool Concurrent connections - Stress Level (Threads) ? I am trying to test a healthy website which has the following: 2.5 mil hits a day, (concurrent users avg 1400)
4
3952
by: FFMG | last post by:
Hi, I want to stress test my dev box to see where the bottle necks in my script might be. I don't really need to test MySQL or Apache, (I have no doubt they are working fine), but rather want to test what scripts might be slow under stress. I am developing on a windows machine but will be running the site on a
6
2790
by: tvnaidu | last post by:
Hi: Any stress test html script to test web page contains few radio buttons and apply. I have web page contains 8 radio buttons, just select on / off using radio button, then at the bottom, click on "apply", I need some script to do this overnight to stress the system, please let me know if any script availbale, appreciated. TV.
0
8440
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
8866
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
8781
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8638
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
7381
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6191
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
4193
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
4365
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2769
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 we have to send another system

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.