473,405 Members | 2,444 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,405 software developers and data experts.

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 1735
Here's the web.config file:

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

<system.web>

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

<customErrors
mode="Off"
/>

<authentication mode="None" />

<authorization>
<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="10"
pageOutput="false"
traceMode="SortByTime"
localOnly="true"
/>
<sessionState
mode="InProc"
stateConnectionString="tcpip=127.0.0.1:42424"
sqlConnectionString="data
source=127.0.0.1;Trusted_Connection=yes"
cookieless="false"
timeout="20"
/>

<globalization
requestEncoding="utf-8"
responseEncoding="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**************@TK2MSFTNGP12.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**************@TK2MSFTNGP12.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
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...
7
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)...
1
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...
2
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? ...
3
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...
27
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...
0
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...
4
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...
6
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...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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?
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
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
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
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,...
0
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,...
0
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...

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.