I have a Jmeter thread group that uses the uuid variable several times.
uuid determined using 12345678-1234-4444-a123-${__Random(111111111111,999999999999)}
In other words, it starts with the fixed series 12345678-1234-4444-a123- and then randomizes the last twelve characters.
I want to start several threads at the same time, this gives the following problem.
When I define uuid as a user variable within a thread group, it randomizes once and then uses that value for all my threads. If I install it globally, the same thing happens.
I will run thousands of threads at the same time when I finish, so I can not perform manual decisions or read / write to disk.
Does anyone have any experience with this? I have been looking through the documentation and Google for quite some time, but cannot find a solution.
In short: I need to randomize a variable, use this variable in the entire thread group and run this thread group in several simultaneous threads. The variable must have different randomized values ββin each separate thread.
source share