Improve reading VUs to work with objects produced by writing VUs #25
Labels
No labels
P0
P1
P2
P3
good first issue
Infrastructure
blocked
bug
config
discussion
documentation
duplicate
enhancement
go
help wanted
internal
invalid
kludge
observability
perfomance
question
refactoring
wontfix
No milestone
No project
No assignees
2 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: TrueCloudLab/xk6-frostfs#25
Loading…
Add table
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?
Original issue: https://github.com/nspcc-dev/xk6-neofs/issues/20
Currently reading VUs are reading a fixed set of objects that were pre-generated before K6 run. As result, readers are sending requests that are covering very narrow set of data in neoFS. More realistic scenario would be if reading VUs attempted to read the objects that have been created by writing VUs within the same load session.
We can achieve this by storing objects in registry (in writing functions) and then picking them up with
ObjSelector
in reading VUs.Consider deletes in case of reading deleted objects.