DAOS-18607 object: increase RPC retry latency#18015
Draft
Nasf-Fan wants to merge 1 commit intorelease/2.6from
Draft
DAOS-18607 object: increase RPC retry latency#18015Nasf-Fan wants to merge 1 commit intorelease/2.6from
Nasf-Fan wants to merge 1 commit intorelease/2.6from
Conversation
|
Errors are Unable to load ticket data |
To reduce server load that is caused by resent IO requests. Signed-off-by: Fan Yong <fan.yong@hpe.com>
bc2e347 to
fe43b2c
Compare
gnailzenh
approved these changes
Apr 15, 2026
| /* Increase delay after multiple times retry. */ | ||
| if (*retry_cnt >= 5) | ||
| delay <<= 1; | ||
| if (*retry_cnt > 10 || delay > 3000000) |
Collaborator
There was a problem hiding this comment.
I think we can just 10X each time and start from 10us, so we eventually retry after each 10 seconds after 6 tries.
Let's see if it can help first.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
To reduce server load that is caused by resent IO requests.
Steps for the author:
After all prior steps are complete: