Ana Gallardo
Ana Gallardo

Reputation: 69

Concurrency and ultimate thread group Setup

I want to use Concurrency thread group, so I'm using this configuration Configuration CTG

Why I'm expecting is to send 10 requests in 5 seconds, and hold them for 1 second but the result after running my script is this, more than 10 http request are send.

How can I control only send 10 requests?

Thank you.

enter image description here

A similar behaviour happens with Ultimate thread group

Upvotes: 0

Views: 949

Answers (1)

Dmitri T
Dmitri T

Reputation: 168002

You're not sending 10 requests in 5 seconds, you're launching 5 threads (virtual users) in 5 seconds, to wit JMeter will add 2 virtual users each second for 5 seconds and then hold the load for 1 second.

The actual number of requests which will be made depends on your application response time, higher response time - less requests, lower response time - more requests.

If you want to send exactly 10 requests in 5 seconds evenly distributed go for the following configuration:

Upvotes: 1

Related Questions