Questions tagged [apachebench]

ApacheBench (ab) is a single-threaded command line computer program for measuring the performance of HTTP web servers

ApacheBench (ab) is a single-threaded command line computer program for measuring the performance of HTTP web servers.

220 questions
0
votes
1 answer

ab is not sending requests as fast as I want

I want to load test my web app and find out the max requests that it can handle per second, while ab doesn't behave quite the same as I have expected: when sending requests with a single ab, it can send 2k requests/second, so I expect that starting…
DiveInto
  • 2,158
  • 3
  • 27
  • 50
0
votes
1 answer

Apache benchmark failed request on Connect?

Im trying to stress test my server. I started using JMeter but this did did not work like i wished. Im trying the same with apache benchmark but run on a failed request i just dont know what it means. I tried stressing it with: ab -n 10000 -c 2000…
user3559509
0
votes
1 answer

Apache Benchmark horror results with a simple Gevent app

I have a simple Python code to run Gevent. Tested with Apache Benchmark with 10000 users and 5 concurrent but it's damn slow..nearly 2 seconds per request (1.419 ms) which is bad.. My code is from gevent import wsgi, monkey class…
boy
  • 1
  • 2
0
votes
1 answer

How to load test website with SWF Flash file?

I have a website that has a SWF embbeded on it with SWFObject. This SWF file has 1,5 MB. I would like to test if website (Lightppd) will be alive if 600 users per hour will try to open it. It will be approx. 900 MB / hour of transfer. So I have 2…
Tom Smykowski
  • 25,487
  • 54
  • 159
  • 236
0
votes
2 answers

Plotting same results in JMeter as ApacheBench

We are benchmarking our server and therefor we are using multiple benchmark tools. We already used ApacheBench giving us some great results and were also easy to plot in a graph. Example plot AB results Now we are using JMeter but having a hard time…
RazorAlliance192
  • 722
  • 9
  • 23
0
votes
1 answer

Apachebench making more requests than I ask for

I am trying to use apachebench to make a number of requests to test my server. However it often times makes a ton more requests than I ask for. I am using this to test a node.js server which uses express. ab -n 1 http://myserver/ It seems finicky…
lostintranslation
  • 23,756
  • 50
  • 159
  • 262
0
votes
1 answer

Am I using ApacheBench correctly?

In Video controller - Show action, I've tried with two scenarios. The first one uses increment_counter, and writes to the db directly: Video.increment_counter(:views_count, @video.id) The second approach uses the save method. @video.views_count =…
Christian Fazzini
  • 19,613
  • 21
  • 110
  • 215
0
votes
1 answer

Why ApacheBench test on tornado aborts when I add `-k`?

I start a tornado http server like this: app = tornado.web.Application([ (r'.*', MyRequestHandler), ]) http_server = tornado.httpserver.HTTPServer(app, no_keep_alive=True) http_server.listen(port) ioloop =…
iMom0
  • 12,493
  • 3
  • 49
  • 61
0
votes
2 answers

Apache Benchmarks really bad, any advice?

Using Apache Bench, the home page of my site can only handle 0.42 requests per second. A simple phpinfo() page can handle 31.99 requests per second, which seems really slow for such a simple script. Obviously my home page handling 0.42 requests is…
LOLapalooza
  • 2,042
  • 3
  • 17
  • 22
-1
votes
1 answer

Differences between JMeter and Apache Benchmark

I've been using JMeter for a long time and during my research, I came across Apache Benchmark, which seemed a bit more simple load testing tool to me. So my assumption is that; Apache Benchmark is more suitable choice for benchmarking one API at a…
Gökhan Uçar
  • 191
  • 15
1 2 3
14
15