2
votes
0answers
39 views

apr_pollset_poll: The timeout specified ha s expired (70007), only concurrent request processed

I'm making a simple restlet server, which takes a json file as post, and returns "helloworld".(Posting here a small replica of my server). I want to benchmark this server using apache benchmark (ab), ...
0
votes
1answer
30 views

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 ...
0
votes
0answers
18 views

How can we maintain the counters for each process of the apache without using getmyid function [duplicate]

Possible Duplicate: Maintain a counter for each processes Hello, Please open this question again, pls ask me if any doubt in understanding question. Guide me an elegant solution to this. ...
0
votes
1answer
393 views

Apache benchmark multipart/form-data

i'm facing a strange problem with apache benchmark post file. I need to stress a feature that handles file upload. So, I googled about, and found a post describing how to build a post file properly. ...
0
votes
1answer
242 views

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) ...
1
vote
0answers
98 views

can't run benchmark using ApacheBenchmark on REST web application

I want to benchmark two simple REST web frameword (RESTlet and RESTfulie) using ab I deployed a really simple app using both framework (a hello world) then I tried to run this command : ab -n 1000 ...
2
votes
1answer
328 views

Poor performance

I am doing performance tests for my master thesis and I'm getting very poor performance of Symfony2 simple application. It's simple app, one query and some math. Test results for command: ab ...
4
votes
1answer
2k views

Which gets the measurements right, JMeter or Apache ab?

I started writing some basic tests in JMeter and was surprised that the measurements are so different from those from Apache ab. I have a gigabit LAN connecting an Intel i7 server running Nginx and ...
1
vote
2answers
399 views

How do I Benchmark RESTful Service with Variable Parameters?

I'm currently working on benchmarking a RESTful service I've made, and part of that is making sure it runs in a reasonable amount of times for a large array of parameters. For example, let's say I ...
2
votes
1answer
359 views

ApacheBench is very slow

I have created two benchmark pages using Slim and Silex micro frameworks, then tested them for speed. Chrome Developer Tools result: Slim: 7ms Silex: 16ms ApacheBench result: # Slim $ ab -n 1 -c ...
1
vote
1answer
147 views

apache bench like for mysql

Does it exist a tool like ab (apache bench) for mysql? ex: I create a table, I fill as i want (some MO of rows) then: shell> tool -conccurency=20 -requests=2000 -query="SELECT * FROM table WHERE ...
5
votes
1answer
122 views

tool to Genrate Load using the Database Sample Data

I wanted to genrate a load on my web application to measure/test that how many requests my web app can handle. Currently I am using Apaceh Benchmark For POST request. The problem is Apache Benchmark ...
3
votes
1answer
1k views

Terrible Apache Bench results on Custom CMS

Please note: This is not a complain about a shoddy CMS. Just toying with Apache Bench and got terrible results with our custom CMS, more exactly i got: Requests per second: 0.37 [#/sec] (mean) ...
1
vote
1answer
2k views

Getting failed requests with apache benchmark on a load balanced Tornado site but none logged

Perhaps this is a question about ab rather than about Tornado but something doesn't make sense. I run the benchmark like this: $ ab -n 100 http://localdomainname/ # 2 tornados being 1 nginx ... ...
2
votes
4answers
2k views

How to send more than one query string in Apache Bench?

ab -n 1 -c 1 http://localhost:2020/welTo.do?pxtId=3000007937&superDo=jack I got answer for first query string but i also get 'superDo' is not recognized as an internal or external command, ...
6
votes
6answers
3k views

Alternatives to ApacheBench for profiling my code speed

I've done some experiments using Apache Bench to profile my code response times, and it doesn't quite generate the right kind of data for me. I hope the good people here have ideas. Specifically, I ...
0
votes
1answer
398 views

How do I benchmark a web page, including all images, scripts, stylesheets etc

I've tried using a couple of tools (apache bench, html_load) but they only request a single file. I'm testing out bundling strategies and so I need the tool to also download any stylesheets, scripts ...
7
votes
2answers
2k views

Changing POST data used by Apache Bench per iteration

I'm using ab to do some load testing, and it's important that the supplied querystring (or POST) parameters change between requests. I.e. I need to make requests to URLs like: ...
9
votes
2answers
5k views

Can someone please explain what these ApacheBench results mean?

i'm trying to figure out how to use ApacheBench and benchmark my website. I installed the default site project (it's ASP.NET MVC but please don't put stop reading if u're not a .NET person). I didn't ...
76
votes
3answers
11k views

Load Testing with AB … fake failed requests (length)

To do some load testing, for my own curiosity, on my server I ran: ab -kc 50 -t 200 http://localhost/index.php This opens up 50 keep-alive connections for 200 seconds and just slams my server with ...