mirror of
https://github.com/nspcc-dev/xk6-neofs.git
synced 2026-03-01 04:29:30 +00:00
Endpoint selection parameter #40
Labels
No labels
I2
I3
I4
S2
S3
S4
U1
U2
U3
U4
blocked
bug
documentation
enhancement
enhancement
feature
go
help wanted
performance
question
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
nspcc-dev/xk6-neofs#40
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @EESergey on GitHub (Dec 1, 2025).
Is your feature request related to a problem? Please describe.
If there are more endpoints than VU, not all endpoints will be used (in round-robin mode).
If one endpoint stops responding, all VU will very quickly start waiting for it to respond and stop sending requests to other endpoints (in random mode).
The load distribution across endpoints may be uneven, repeatability of test results is not always good (in random mode).
Depending on the testing goals, I want to have the option to choose.
Describe the solution you'd like
Add a parameter that defines the VU's endpoint selection algorithm.
For example:
-e ENDPOINT_SELECTION=round-robinor-e ENDPOINT_SELECTION=randomround-robin: current behavior
random: default value, behavior before the commit
nspcc-dev/xk6-neofs@81054d43c3Additional context
This is only needed for S3 now, but it might be useful in other scenarios too.