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?
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.
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?
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.
christophe answered
Venkata Vijaya answered
christophe answered
Venkata Vijaya posted a new question