Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
15 views

markdown I'm trying to run HTTP emulation experiments using NEST (Network Emulation and Simulation Testbed) but encountering parser errors with httperf output due to regex pattern mismatches. Problem ...
Affan Arshad's user avatar
5 votes
0 answers
800 views

Wondering if anyone can tell what's going on? After slogging through compilation trial and error all day, I've got a httperf that compiles and runs yet fails to connect to anything. It now barfs with "...
Ben Simmons's user avatar
  • 1,938
0 votes
1 answer
925 views

I had installed httperf on Fedora 21/Ubuntu 12.04 and tried to make a simple test with following command: httperf --server www.google.com It always gives me the following result: httperf --client=0/...
Bill  Ying's user avatar
1 vote
1 answer
503 views

My problem is the same as this question and this question I basicly want trying to run httperf with 10000 connection in parallel like this [httperf --uri / --server 192.168.1.2 --port 8080 --num-...
Thiago's user avatar
  • 65
0 votes
1 answer
1k views

I need to do load testing for my application using httperf where i need to send multiple requests to the server and not just one webservice. How do i pass multiple uri's in httperf? Also how can i put ...
Jamuna Nandeesh's user avatar
3 votes
0 answers
683 views

I am trying to stress test one simple server with 10K connections per seconds; it's pretty dummy server so this should be possible. When I run gatling, the best I can get is 7K, at 8K we start to ...
igr's user avatar
  • 10.7k
0 votes
2 answers
503 views

I'm using httperf for load testing. I have two HTTP endpoints to be tested. However, the second endpoint needs the result of the first one. That is, requests to the second endpoint need to pass a ...
ovunccetin's user avatar
  • 8,763
0 votes
1 answer
154 views

I want to configure httperf in a way that it wait for page to load all attached files. In my case, there are 2 Javascript files which are attached with this page. What should its command in this case. ...
Waqar Haider's user avatar
2 votes
2 answers
2k views

Has anybody seen "httperf: connection failed with unexpected error 0" when running httperf with --ssl? This is blocking my test on that domain. When I tested --ssl on https://google.com it worked ...
agenteo's user avatar
  • 787
5 votes
0 answers
773 views

I want to benchmark uploading of files to a remote server using HTTPERF I know that there is a wsesslog option where I can give entries for form data. But can I send a post request for a file as ...
Akshya11235's user avatar
  • 1,039
1 vote
1 answer
872 views

When I run httperf with following options, the output is easy to understand. Options: Make total 10 connections (num-conns) at rate of 10 (rate) connections/second with 2 request calls per connection ...
user671556's user avatar
0 votes
2 answers
411 views

I am using httperf to benchmark web-servers. My configuration, i5 processor and 4GB RAM. How to stress this configuration to get accurate results...? I mean I have to put 100% load on this server(12....
user2714092's user avatar
1 vote
1 answer
3k views

I have file by the name sessions.txt which has contents: url1 url2 url3 That means in the file I have 3 sessions with burst of length 1 The Httperf command I ran is httperf --server=localhost --...
user2277149's user avatar
0 votes
1 answer
647 views

I want to test my REST API which has a URI something like this: /myrestAPI/search?startTime=0&endTime=10&count=8&filters={"params": [{"field":"Topic","value":"Algorithms","type":"...
user2277149's user avatar
4 votes
1 answer
611 views

I'm trying to load test my Rails (3.2.13) application with httperf. It worked very well for the pages which don't require cookies. But, I couldn't make it working for the pages which require cookies. ...
Ashish Bista's user avatar
  • 4,713
1 vote
0 answers
381 views

I want to load test my application and need a Cookie for it. I've looked all of the other questions and have tried this: In autobench.conf httperf_add-header = "Cookie: cookie_name=cookie_string\n" ...
gracegimon's user avatar
7 votes
1 answer
14k views

I'm doing a series of benchmarks and found the httpperf tool. But the version in my ubuntu 12.04 has a too small file descriptor size. Because it warns me with this message: httperf: warning: ...
tutuca's user avatar
  • 3,680
1 vote
0 answers
127 views

I'm testing with httperf and i'm trying to monitor the single response time on requests. The result that is given at the end of the test doesn't work for me and it's too approximate. I was thinking ...
fady's user avatar
  • 75
0 votes
1 answer
633 views

How do you set a session cookie in autobench so you can benchmark URLs that require session authentication?
bendiy's user avatar
  • 585
5 votes
1 answer
7k views

I need to perform 3 types of performance tests for apache. 500 requests/sec for 60 seconds duration 1000 requests/sec for 60 seconds duration 1500 requests/sec for 60 seconds duration I went through ...
Nikhil Rupanawar's user avatar
11 votes
1 answer
2k views

I have been running load tests using httperf for a few weeks and getting this error - httperf: warning: open file limit > FD_SETSIZE; limiting max. # of open files to FD_SETSIZE when I fire query ...
Coder's user avatar
  • 1,969
4 votes
3 answers
5k views

I have a file with this content: helper?token=99999 method=POST contents='{"key1":99999, "key2":88888, "key3":55}' and then I run this command: httperf --print-reply --print-request --hog --client=0/...
user2427's user avatar
  • 7,952
4 votes
4 answers
5k views

I'm running httperf 0.9.0 (downloaded from Google Code) on Ubuntu 12.04.1 LTS 64-bit with 2CPU and 4GB RAM. I'm trying to benchmark web servers but encountered the following buffer overflow problem. ...
Xiao Jia's user avatar
  • 4,279
2 votes
0 answers
1k views

i want to send a httperf request to post a list of uri,xml pair at a given rate using httperf. I tried various optios eg using --wsesslog option but i am not able to produce the desired output. can ...
duck's user avatar
  • 2,561
0 votes
1 answer
284 views

I'm running a load test using Autobench and httperf, and am having trouble understanding the example they give on their site. The example uses the flags --low_rate 20 --high_rate 40 --rate_step 5 --...
Aaron Marks's user avatar
1 vote
0 answers
139 views

I'm currently using autobench to test a personal web server. I want to define a scenario with 3 main steps: Step 1: generate an increasing request load. For example from low_rate=10 to high_rate=100 ...
lyapma's user avatar
  • 21
1 vote
2 answers
1k views

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 ...
Eli's user avatar
  • 39.3k
4 votes
2 answers
12k views

httperf ... --rate=20 --send-buffer=4096 --recv-buffer=16384 --num-conns=100 --num-calls=10 Gives 1000 requests as expected on nginx. Total: connections 100 requests 1000 replies 1000 test-duration 5....
Dmitry's user avatar
  • 2,138
0 votes
1 answer
1k views

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 ...
spd's user avatar
  • 2,154
3 votes
1 answer
2k views

How do I set in autobench that I'm testing an HTTPS (port 443) URL? When I call it with: autobench --single_host --host1 host.com --port1 443 --uri1 /hello --num_conn 1000 --timeout 5 --low_rate 10 -...
Mark's user avatar
  • 70.5k
37 votes
3 answers
6k views

When I try to perform a load test using httperf with high request rate, I get the following error: » httperf --client=0/1 --server=www.xxxxx.com --port=80 --uri=/ --send-buffer=4096 --recv-buffer=...
Mike Hemelberg's user avatar
4 votes
1 answer
2k views

I'm wondering what the importance of the connreset with httperf is. When testing a single webpage, I receive no errors. When using a simple .log file with several pages, I am getting 100% connreset ...
Jason's user avatar
  • 71
2 votes
3 answers
2k views

I'm unable to decide which is a better benchmarking tool-Is it apachebench tool or httperf? Please help me to decide which one would be the most appropriate tool to be chosen for benchmarking the web ...
mamatha's user avatar
  • 49
1 vote
1 answer
3k views

Does anyone know what this httperf error means? Is this having a negative effect on my tests? httperf: connection failed with unexpected error 105
Eric the Red's user avatar
  • 5,474
3 votes
1 answer
3k views

I have a web server based on paste.httpserver as an adapater between HTTP and WSGI. When I do performance measurements with httperf, I can do over 1,000 requests per second if I start a new request ...
Andrew Dalke's user avatar
  • 15.4k
3 votes
3 answers
2k views

I'm trying to benchmark a simple webserver I wrote, but I'm having trouble deciphering what Autobench has outputted. I've been googling all over for help on this (even going through the autobench and ...
Dave DeLong's user avatar