Skip to content

Commit

Permalink
Update constant arrival rate scenarios
Browse files Browse the repository at this point in the history
  • Loading branch information
MushtabaA committed Mar 3, 2024
1 parent 0e0beaf commit 7915e20
Showing 1 changed file with 8 additions and 13 deletions.
21 changes: 8 additions & 13 deletions scripts/iterationRate/constantArrivalRate.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,38 +10,33 @@ export const options = {
scenarios: {
scenario1: {
executor: 'constant-arrival-rate',
duration: '30s',
rate: 20,
duration: '120s',
rate: 100,
timeUnit: '1s',
preAllocatedVUs: 20,
},
scenario2: {
executor: 'constant-arrival-rate',
duration: '120s',
rate: 20,
duration: '30s',
rate: 100,
timeUnit: '1s',
preAllocatedVUs: 20,
},
scenario3: {
executor: 'constant-arrival-rate',
duration: '30s',
rate: 10,
rate: 50,
timeUnit: '1s',
preAllocatedVUs: 10,
},
scenario4: {
executor: 'constant-arrival-rate',
duration: '30s',
rate: 10,
rate: 30,
timeUnit: '1s',
preAllocatedVUs: 10,
},
scenario5: {
executor: 'constant-arrival-rate',
duration: '30s',
rate: 5, // Reduced the rate to match the VU limit
duration: '120s',
rate: 5,
timeUnit: '1s',
preAllocatedVUs: 5,
},
},
};
Expand Down

0 comments on commit 7915e20

Please sign in to comment.