mirror of
https://github.com/nspcc-dev/xk6-neofs.git
synced 2026-03-01 04:29:30 +00:00
k6 can run only ~888 VU maximum with 4kb objects against one node of Object storage cluster from load node #18
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#18
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 @jingerbread on GitHub (Nov 22, 2022).
k6 can run ~888 VU maximum against one node of Object storage cluster (VUs number can vary from run to run)
After that it starts throwing timeout error, find during doing performance test, that prevents us from testing higher number of VUs per cluster node from load node
grafana/k6@46b4847179/core/local/local.go (L145)code: xk6-neofs in native.go "prmDial.SetTimeout(5 * time.Second)"
After increasing timeout, we get other error, seems it hangs after initing 889 VU
We should also need to clarify requirements of how many threads (VUs) we can handle per cluster node.
@fyrchik commented on GitHub (Dec 28, 2022):
I was able to get it running on my laptop with
WRITERS=2000:So I think the issue is either related to an object size (10000 in my case, 4 in yours) or possibly some system limits on a load/storage node. @jingerbread can you reproduce it with a bigger
WRITE_OBJ_SIZE?