Add explicit reiteration delay to object selector #26
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.
Depends on
#20 Add pprof to the k6 itself
TrueCloudLab/xk6-frostfs
Reference: TrueCloudLab/xk6-frostfs#26
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/31
To prevent object selector from excessive re-iteration over bolt database we make a small delay after we made a pass over the database and before we start a new cycle.
Currently this delay is calculated based on Age of objects in the selector's filter. However, Age filter is quite specific and is used just for deletion. More flexible approach would be to have
reiterateDelay
that can be explicitly supplied into object selector.Need some clarification.