nexxus007
nexxus007

Reputation: 25

4 second delay between each request in Jmeter 5.3

I recently installed Jmeter 5.3, and while running a test, i noticed that each request has a delay of 4 seconds, even though I do not have an delay thread anywhere. If i run the same test in Jmeter 5.2.1, I do not see any delay, and every request works fine.

Any inputs?

Upvotes: 1

Views: 173

Answers (1)

Dmitri T
Dmitri T

Reputation: 167992

Looking into JMeter Changelog there were only 2 non-cosmetic changes between versions 5.2.1 and 5.3:

  1. Changing default value of the httpclient4.time_to_live property from 2 seconds to 1 minute in order to be in line with modern browsers default settings, can be reverted via user.properties file
  2. Upgrading Groovy library to version 3 from version 2, can be reverted by removing all grooovy-xxxx.jar libraries from "lib" folder of your JMeter installation and replacing them with groovy-all-2.4.16.jar

None of the changes gives 4 second delay between requests.

More information: What's New in JMeter 5.3

If you need to understand what your threads are doing during this 4 seconds delay time frame - take a thread dump, it can be done even via JMeter GUI

enter image description here

Upvotes: 1

Related Questions