Rework worker pools in object.PUT #646
Labels
No labels
P0
P1
P2
P3
badger
frostfs-adm
frostfs-cli
frostfs-ir
frostfs-lens
frostfs-node
good first issue
triage
Infrastructure
blocked
bug
config
discussion
documentation
duplicate
enhancement
go
help wanted
internal
invalid
kludge
observability
perfomance
question
refactoring
wontfix
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: TrueCloudLab/frostfs-node#646
Loading…
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?
There are multiple problems with them:
Possible different approach:
object.put.ratelimit
setting which tells how many PUT can be processed simultaneously.object.put.parallelism: N
which allows N simultaneous derived requests to be executed in parallel (so thatREP X
where X > N is restricted. This may depend on the load.Also, if we are going to parallelize putting of big objects with TrueCloudLab/frostfs-sdk-go#128, we need some way to restrict node memory consumption. Ideally we would like to NOT treat big and small objects equally, so that we can either process 100 of 128MB parts or 10000 of 1MB objects without friction.