context.Cancelled
and context.DeadlineExceeded
reasons for client sleep #24
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 milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: TrueCloudLab/frostfs-node#24
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?
Context
After the https://github.com/nspcc-dev/neofs-node/pull/2164, any
error
returned by a client (means realerror
, non-status (SplitInfo
is an exception)) makes all the following requests to the client fail. That could help with some high-load (or failover) scenarios.Problem
On the other hand, I do not totally agree that such a solution should be considered our best effort. At least
context.Cancelled
is not clear at all to me.Thoughts
I guess we can tune network communication, turn the
Replicator
off for some time, add some feedback mechanism for our components, etc, but not only sleep for30s
and hope that everything will be fine. Moreover, the current implementation will still read objects from disk and fail and the almost latest step (HEAD
, before the finalPUT
). Also, does anybody ever think about the "pull" replication mechanism vs the current "push"?