mirror of
https://github.com/nspcc-dev/neofs-node.git
synced 2026-03-01 04:29:10 +00:00
Dynamic write cache threading #1435
Labels
No labels
I1
I2
I3
I4
S0
S1
S2
S3
S4
U0
U1
U2
U3
U4
blocked
bug
config
dependencies
discussion
documentation
enhancement
enhancement
epic
feature
go
good first issue
help wanted
neofs-adm
neofs-cli
neofs-cli
neofs-cli
neofs-ir
neofs-lens
neofs-storage
neofs-storage
performance
question
security
task
test
windows
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
nspcc-dev/neofs-node#1435
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 @roman-khimov on GitHub (Jun 23, 2025).
Is your feature request related to a problem? Please describe.
I'm always frustrated when we can have better user experience but we don't yet. Our write cache is designed to be greedy in terms of used disk I/O and flushes things as fast as it can. But in a mixed RW/RO scenario this makes RO requests suffer a bit more than needed technically for short write load spikes. If this write burst completely fits into write cache size node can serve a bit more read requests while slowly flushing WC to the backing store.
Describe the solution you'd like
We can throttle WC flushing by limiting the number of threads involved. Some threads can be parked (waiting for signal) and only activated once WC hits some percentage of used space (like a single thread until 10% and then add threads linearly so that we'd have all of them doing their thing at 50% used space).
Notice that this will degrade pure writing load performance since WC will be depleted earlier in this case, but it's acceptable since scenarios with short write bursts and ~constant RO load are more probable in real life. This can be mitigated by increasing the size of WC as well.