How to define 5000 users load with 100 concurrent users load at any time?

For me it seems the same issue as this other one with different parameters: How to define a scenario 1000 Users run only 1 iteration with in 10 minutes of duration - #9 by bandorko

export const options = {
    scenarios: {
      load: {
        executor: 'constant-arrival-rate',
        duration: '60m',
        rate: 5000,                         // 5000 request
        timeUnit: '60m',                    // in 60 minutes
        preAllocatedVUs: 100,               // maximum 100 concurrent requests
      },
    },
  };
2 Likes