I’m trying to run k6 with ramping-arrival-rate
scenario, but mostly it should be constant at 15,000 requests per second.
scenarios: {
ramping: {
executor: "ramping-arrival-rate",
// Pre-allocate necessary VUs.
preAllocatedVUs: 50,
maxVUs: 2000,
stages: [
{ duration: "1m", target: 15000 },
{ duration: "10m", target: 15000 },
{ duration: "1m", target: 0 },
],
},
},
both the k6 logs on terminal and metrics on my api server are saying that they are correctly ran at 15,000 qps but the html report I got from xk6-dashboard show 15,000 qps on the first half of the test but keep rising in the later half. Anyone know might be causing this?
1 post - 1 participant