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

learn more… | top users | synonyms

0
votes
0answers
6 views

apachebench(ab) append new line for post data

Trying ab for benchmark testing for post request, but looks post data in file will append a new blank line. Any solution for this issue? $ cat d1 a=1&&b=2 ab command is ab -c 1 -n 1 -T ...
2
votes
2answers
57 views

Node.js a lot better in ab without clustering, what I'm missing?

Update 1: @BagosGiAr tests with a quite similar configuration shows the cluster always should perform better. That is, there is some problem with my configuration, and I'm asking you to help me find ...
0
votes
1answer
26 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 ...
2
votes
0answers
118 views

Apache bench Connection refused (61) apr_socket_recv

I have a similar issue with this ab is erroring out with apr_socket_recv: Connection refused (61), and I have tried upgrading the new apache bench but the problem still exists. I have no idea whether ...
3
votes
0answers
38 views

Apache Bench: Mean vs Mean across all concurrent requests

What is the difference between those 2 fields? : Time per request (mean) Time per request (mean, across all concurrent requests) How is each of them calculated? Sample Output: Time per request: ...
0
votes
0answers
35 views

Apache Bench Accuracy

I record the processing time within the web application itself. While performing a load test on a server (ab called from another server). I tried to access the same test URL with the same parameters ...
0
votes
0answers
36 views

How to specify a form parameter for a file upload test for ApacheBench ab?

I can run an upload load test with ab using ab -n 100 -c 4 -p 4198729093_b24249ece6_b.jpg http://localhost/upload Is there a way to specify the file upload as a named form parameter? The ...
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. ...
1
vote
1answer
931 views

NodeJS benchmark [closed]

I've made benchmark, to compare what is faster NodeJS or Apache + PHP? When I had tested 'Hello world' application Node was faster, but when I tried to use http.get function It was completely ...
0
votes
0answers
65 views

Improving my online e-commerce with apache benchmark and urls

I'm actually building a quite big e-commerce website (40'000 articles and 1'000 categories). In order to improve caching; i thought I might use the sitemap in order to fully cache the whole website. ...
0
votes
0answers
59 views

Why ApacheBench considers HTTP response failed (two times)?

I've taken a basic Ruby http server from here. It does seem to produce valid HTTP response: HTTP/1.1 200 OK Date: Tue, 14 Dec 2010 10:48:45 GMT Server: Ruby Content-Type: text/html; ...
1
vote
2answers
314 views

Weird behaviour with NodeJS and apache benchmark

I'm testing out nodejs (0.8.11). with the following server app: var http = require('http'); http.createServer(function (req, res) { console.log('hit!'); res.writeHead(200, {'Content-Type': ...
1
vote
1answer
429 views

Very low request per second values as a resut of Apache ab test on nginx server

I am testing my new site on the following setup * 2 m1.large ec2 instances as web server behind a elastic load balancer * both webserver has memcache/apc/nginx/php-fpm installed * 1 m1.large ec2 ...
0
votes
1answer
126 views

Using apache bench on local server

I want testing my site load (site is write on php) via apache bench. I have local server (xampp), OC: windows. In directory apache/bench there is file ab.exe, this means that apachebench is ...
0
votes
1answer
387 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
0answers
252 views

apache ab not work with high concurrent: apr_socket_recv (111)

ab is installed on a mk802 which is a arm7 machine, running ubuntu 12.04 I can run ab with: ab -n 10000 -c 100 http://192.168.1.101/ but failed if I increase the -c to 300. the error message is: ...
6
votes
2answers
2k views

Node.js struggling with lots of concurrent connections

I'm working on a somewhat unusual application where 10k clients are precisely timed to all try to submit data at once, every 3 mins or so. This 'ab' command fairly accurately simulates one barrage in ...
0
votes
1answer
180 views

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

Strange Bug Benchmarking Node JS With AB

I typically use apache bench \ when getting an estimate of a server application and have been using it to bench a server I've written in node. Just this afternoon I was able to test it using ab -c ...
1
vote
2answers
253 views

Apache Bench: Why so many 503s?

I'm running a dedicated server on DreamHost: Quad Core, 4GB RAM. Linux (Debian), Apache, PHP (with XCache for opcode caching), MySQL. The URL I'm querying has 18 MySQL queries every time. I'm ...
0
votes
1answer
240 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) ...
0
votes
0answers
96 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 ...
1
vote
1answer
273 views

A simple Dart HTTP server hangs on Apache Bench

I have this Google Dart test program: #import('dart:io'); main() { var s = new HttpServer(); s.defaultRequestHandler = (HttpRequest req, HttpResponse res) { res.statusCode = 200; ...
1
vote
0answers
194 views

memcache server losts connection on heavy request through AB (Apache Benchmark)

We got a really big hit trouble on mysql server which has 400k rows total and about 220 MB last week so we decided to start using memcache. Before changing whole script a test page has been prepared ...
0
votes
1answer
130 views

Different results in ApacheBench with and without concurrent requests

I am trying to get some statistics on response time at my production server. When calling ab -n100 -c1 "http://example.com/search?q=something" I get following results: Connection Times (ms) ...
2
votes
1answer
322 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 ...
1
vote
0answers
230 views

apache ab rool return unknown error (10108) apr_sockaddr_info_get

I'm using Apache ab for testing. But when I run the tool like this: ab -n10 'http://localhost'` it returns: This is ApacheBench, Version 2.0.40-dev <$Revision: 1.121.2.4 $> apache-2.0 ...
2
votes
2answers
2k views

Apache ab will not work - ab: invalid URL when testing python cyclone

I am trying to ab test cyclone. When I run ab -n 2000 -c 25 http://127.0.0.1 I get ab: invalid URL. Well...when I go to ff on my dev machine, the site is there. Here is my nginx config http { ...
1
vote
1answer
1k views

Node.js apache bench test

Playing and trying to see how fast node.js can serve a static file from disk using apache bench ab -r -n 10000 -c 1000 http://server:8080/loadtestfile.txt I've got ulimit problem on Ubuntu 11.04 ...
2
votes
2answers
475 views

replay logs for load testing - Does any tool simulate the actual user time taken between request?

I need to load test a site with a simulated user load. For this I intend to record the web server logs for a given 10-minute usage of an average user and use this to replay on multiple concurrent ...
0
votes
2answers
151 views

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. ...
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 ...
3
votes
1answer
615 views

Rails app on big machine only gets 60 requests/sec benchmark results

I'm hosting a Rails app on a beefy machine that -- I think -- should be able to handle a much higher load than I'm giving it. Here are the underwhelming test results from ApacheBench: ab -kc 250 -n ...
5
votes
2answers
4k views

ab (Apache Bench) error: apr_poll: The timeout specified has expired (70007) on Windows

I'm load testing IIS 7.5 (WinR2/SP1) from my Win7/SP1 client. I have a script that makes three ab calls like: start /B cmd /c ab.exe -k -n 500 -c 50 http://rhvwr2vsu410/HelloWebAPI/Home/SyncProducts ...
0
votes
0answers
257 views

ApacheBench Results from another system on the network for nginx, php-fpm

I have a rather weird problem and given that I'm pretty new to all this, it might just be a duh moment. Looking for suggestions on what I might be doing wrong - Background - I am using nginx and ...
0
votes
1answer
625 views

Apache performance tuning with 1 GB with httpd.conf

I have a 1 GB VPS and Apache slows to a crawl almost from start up. I ran ApacheBench on a static.html file and things don't differ. However, the site will have both MySQL and PHP and a high volume of ...
1
vote
2answers
394 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
354 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
3answers
777 views

Does Node.js perform badly on Windows, surely it can't be slower than apache for basic I/O

Question: Are the result that i'm getting reasonable? Is there anything which could have such an impact in reducing the number of requests per second? Edit: A friend of mine has just benchmarked the ...
4
votes
2answers
463 views

Why does a simple Thin server stop responding at 16500 requests when benchmarking? [duplicate]

Possible Duplicate: 'ab' program freezes after lots of requests, why? Here's a simple test server: require 'rubygems' require 'rack' require 'thin' class HelloWorld def ...
1
vote
0answers
208 views

Why apachebench is constantly repeating its requests in HTTP 1.0 session through the same connection?

I have made a simple python script with kind of HTTP server: import SocketServer response = b'HTTP/1.0 200 OK\r\nDate: Mon, 1 Jan 1996 01:01:01 GMT\r\n' response += b'Content-Type: ...
1
vote
2answers
2k views

ab (Apache Bench) issues on OS X

I am having frustrating issues trying to perform a highly concurrent test using ab (apache bench) on OS X. A snipit of the output looks like: Completed 1998 requests Completed 2664 requests ...
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 ...
2
votes
4answers
1k views

Http load test tool for variable URLs

Any one know about a load test tool like "Apache Bench" to send variable URLs. (Same server, but different Query Strings) For example, ab -text list.txt -n 1000 http://test.com/search? list.txt ...
1
vote
1answer
293 views

Can someone interpret these apache bench results, is there something that stands out?

Below is a apache bench run for 10K requests with 50 concurrent threads. I need help understanding the results, does anything stand out in the results that might be pointing to something blocking ...
2
votes
1answer
95 views

Transfer Rate behavior of increasing request sizes

I've implemented a simple multi-threaded HTTP server for my programming assignment a couple weeks ago. In this assignment users specified a document size via browser (like localhost:port/250 for a 250 ...
17
votes
3answers
7k views

ab is erroring out with apr_socket_recv: Connection refused (61)

I am testing eventlet out, and I am getting this error: ~>ab -n 10 -c 1 http://localhost:8090/ This is ApacheBench, Version 2.3 <$Revision: 655654 $> Copyright 1996 Adam Twiss, Zeus ...
2
votes
2answers
751 views

Simulating 2000 concurrent connections, is apache bench reliable?

I need to load test or simulate 2K connections to my web application to see how it handles load etc. If I run apache bench on my laptop, I'm guessing it can't possible simulate this? Does this mean ...
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 2