You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For some test scenarios we need to have an ability to generate unique IDs which we can in HTTP requests - e.g. for client registration APIs
For local executions we are using __VU and __ITER to generate IDs like 001000004 where 001 is VU number and 000004 is iteration number.
But when tests are executed in Cloud mode in multiple availability zones __VU can overlap because VU are individually tracked for each load generator node.
It would be nice to either track VUs across nodes (ideally) or get unique node Id or number so we can generate values like 01001000004 (${node}${vu}${iter})
The text was updated successfully, but these errors were encountered:
[Context]
For some test scenarios we need to have an ability to generate unique IDs which we can in HTTP requests - e.g. for client registration APIs
For local executions we are using
__VU
and__ITER
to generate IDs like001000004
where001
is VU number and000004
is iteration number.But when tests are executed in Cloud mode in multiple availability zones
__VU
can overlap because VU are individually tracked for each load generator node.It would be nice to either track VUs across nodes (ideally) or get unique node Id or number so we can generate values like
01001000004
(${node}${vu}${iter}
)The text was updated successfully, but these errors were encountered: