https://issues.apache.org/bugzilla/show_bug.cgi?id=54867
Bug ID: 54867
Summary: Degraded performance between 2.5.3 and 2.9
Product: JMeter
Version: 2.9
Hardware: PC
OS: Linux
Status: NEW
Severity: regression
Priority: P2
Component: HTTP
Assignee: [email protected]
Reporter: [email protected]
Classification: Unclassified
Created attachment 30211
--> https://issues.apache.org/bugzilla/attachment.cgi?id=30211&action=edit
Screenshot
Performance in a standard http call were degraded between 2.5.1 and version 2.9
(see screenshot)
The test is really easy. Just add a mock perl on apache with a tempo of 10ms.
Apache conf (/etc/httpd/conf.d/jmeter.conf)
<VirtualHost *:80>
ServerName jmeter.com
ServerAlias www.jmeter.com
DocumentRoot "/var/www/html"
Alias /test.php /var/www/html/perl/jmeter.pl
</VirtualHost>
Perl script (/var/www/html/perl/jmeter.pl)
#!/usr/bin/perl
use strict;
use CGI;
my $cgi = new CGI;
use Time::HiRes;
Time::HiRes::sleep(0.01);
print "Content-type: text/html\r\n\r\n";
print "JMeter test";
JMeter script
query : http://serveur/test.php
users : 10
time : 30 sec
--
You are receiving this mail because:
You are the assignee for the bug.