Unanswered question

How does range values of pacing work

If I give range1 and range 2 pacing values for a script as 5 and 10, how do they behave
what value is exactly taken?
If the script execution completes at 7 seconds, will it wait till 10 seconds?
If a script execution takes 15 seconds, what happens, does it wait or goes to next iteration?

Venkata Vijaya S.
Venkata Vijaya S.

Venkata Vijaya S.

Level
0
34 / 100
points

Answers

christophe M.
christophe M.

christophe M.

Level
4
5000 / 5000
points
Team

The typical usage of the pacing is to use the single value. So that the time for the container + a computed delay = the specified time. No delay is applied when the container is longer than the pacing value.

When entering two values, they are used as a min and max: the pacing used is a random value between min and max.

Venkata Vijaya S.
Venkata Vijaya S.

Venkata Vijaya S.

Level
0
34 / 100
points

Hi Suppose the transaction execution time for a particular transaction is 20 seconds but higher range of pacing is given as 15 seconds only, will it the transaction execution continue after 15 seconds or will halt and go to next iteration once 15 seconds is reached?

christophe M.
christophe M.

christophe M.

Level
4
5000 / 5000
points
Team

The Transaction is never interrupted, oly if it's faster than the pacing then a delay is added. If longer, then the Transaction is normally executed.