DAOS-18607 object: increase RPC retry latency#18015
Closed
Nasf-Fan wants to merge 2 commits intorelease/2.6from
Closed
DAOS-18607 object: increase RPC retry latency#18015Nasf-Fan wants to merge 2 commits intorelease/2.6from
Nasf-Fan wants to merge 2 commits intorelease/2.6from
Conversation
|
Errors are Unable to load ticket data |
bc2e347 to
fe43b2c
Compare
gnailzenh
previously 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.
fe43b2c to
2d027e0
Compare
To reduce server load that is caused by resent IO requests. More fixes: 1. Use current ULT to send DTX RPC instead of via dss_chore. 2. Add some log message for -DER_AGAIN cases. Signed-off-by: Fan Yong <fan.yong@hpe.com>
2d027e0 to
ab11981
Compare
Contributor
Author
Contributor
|
if this PR is not needed anymore, please close and delete the branch. |
Contributor
Author
|
The patch #18036 has already been landed to release/2.6, we do not need this one any longer. |
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.
More fixes:
Use current ULT to send DTX RPC instead of via dss_chore.
Add some log message for -DER_AGAIN cases.
Steps for the author:
After all prior steps are complete: