Reputation: 2134
I am using Amazon EC2 services for my web services. I would like to know the maximum number of users that can simultaneously use my web services.
For this, I performed load testing using httperf from the client system.
When the Reply Rate is nearly equal to Request Rate then we can tell that the server is doing well. But for request rate 5 I was getting the reply rate as 1 when testing was done for 20 samples. The value of time-out was 5. Also, many requests were timed out; 300 out of 500 were timed out.
httperf --server=web-service-url --rate=5 --num-conns=500 --timeout=5
Upvotes: 0
Views: 1453
Reputation: 5219
sudo apt-get install httperf
. Also, you can build from source.--uri
, --retry-on-failure
etc. A full list of options here.--method=POST
( use method
arg with GET / POST / PUT)Upvotes: 1