vote up 0 vote down star
1

Hello,

I am after a Python script to help me load test my Google App Engine website. I want to give it a set of URLs and a request rate (would need to use threads) and then measure the response times of my website.

I have had a look at a few solutions but they don't let you set an upper limit for the request rate.

Any ideas? Thanks

flag

Are you sure you really want "request rate" and not "concurrency"? Request rate doesn't tell you anything - either the server can serve it, or it over-runs the server and requests get slower and slower till it crashes. Concurrency tells you more interesting information because it actually investigates how many clients you can serve at once, rather than just hammering your server into submission. – Paul McMillan Nov 7 at 4:16
+1 to what Paul said! – Patrick Lightbody Nov 16 at 18:15
My client wanted to know if our site can serve X requests/sec at a mean response time of Y ms. So I made a Python script to test this. Would concurrency better illustrate this? – Richard Nov 16 at 23:46

2 Answers

vote up 3 vote down

You don't need a python script for this, you want to use the apache tool ab.

http://httpd.apache.org/docs/2.0/programs/ab.html

It is the canonical load testing solution, and will get you great metrics for performance. You can set the request rate, but should really look at the concurrency level which is a far more meaningful statistic.

link|flag
actually I do need a Python script, because that is the requirements of my client – Richard Nov 6 at 0:17
1  
why don't you make a python wrapper for ab? – luc Nov 6 at 6:28
because my client needs a pure python solution – Richard Nov 8 at 23:07
vote up 1 vote down

Pylot is a versatile load testing tool written in Python. I haven't used it personally, but it seems good.

link|flag
yeah I had a look at it, but doesn't seem to support a target request rate. – Richard Nov 6 at 0:29

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.