Parallelize object distribution over all the nodes #225
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
2 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: TrueCloudLab/frostfs-node#225
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?
Currently
Next
can handle placement vectors one by one only. Every vector is being handled asyncly but I think it is possible to work with every node (in every vector and not only in the same one) that way too. But it needs to be done carefully withoutPut
requests duplication.Put
handling #226Multiple REP vectors is not the most popular scenario, and the implementation needs to play nicely with
copies_number
parameter -- we must store first N copies according to the order.So either we use this optimization when
copies_number=0
or do not use at all.