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
Fixeslocustio#894
Current implementation collides easily in environments with large number of slave processes on the same host starting at the same time.
I'm running 64 locust slave processes per host, and getting client_id collisions regularly.
locust/locust/runners.py
Line 355 in 4bde2ca
The randomint here probably increases the chances of collisions, since it's added to a millisecond scale time function.
Recommend using
uuid4()
oruuid5(namespace, name)
using the hostname as a namespace.The text was updated successfully, but these errors were encountered: