How to define a scenario 1000 Users run only 1 iteration with in 10 minutes of duration

@venkatareddy

Could you try with this?

export const options = {
  scenarios: {
    load: {
      executor: 'constant-arrival-rate',
      duration: '10m',
      rate: 1000,
      timeUnit: '10m',
      preAllocatedVUs: 1000,
    },
  },
};
3 Likes