How to assign the http_reqs ratio accurately for multiple-scenarios?

Hi guys, I have a multiple-scenarios include 3 API, I used executor: ‘constant-vus’ to allocate ratio for each scenario, VU allocation ratio are 2:5:3, but in the end-of-test summary, the http_reqs allocation ratio for each scenario are not very accurate, how should I assign the http_reqs ratio accurately for each scenario?


Hi @sunnini !

Out of curiosity, what do you expect to see as the http_reqs? Do all scenarios have the same/constant response time?

Cheers

I hope assign the http_reqs ratio accurately for each scenario, such as A:B:C = 1:2:3. At present,by using executor: ‘constant-vus’ only can assign VU ratio.

I hope assign the http_reqs ratio accurately for each scenario, such as A:B:C = 1:2:3.

Then I guess you have to choose another executor, maybe Constant arrival rate.

With constant VU, you define the number of virtual users, but the VU can spend different times on the scenario. For example, the response to scenario one can take 200ms, and the response of the scenario 2 can take 1 minute.

Cheers.