I’m playing around with a scenario where I need to post bidding to an auction. This will be called by multiple users.
E.g. post request body
{
“amount”:
}
Now I want to mimic this bidding scenario for 10 users, but the amount in the post request gets outdated during execution as someone already used a higher value and all the bids with lower values fail.
Since I can’t hold of sequence how VUs are invoked, how can I make sure this pattern can be achieved?
I can’t think of what pattern/executor should I use here. My guess is I need to have only 1 concurrent user but I need to ramp up say 100-200 VUs within 1 minute but still executing one at a time.
Any ideas?