-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add RPC retry with exponential back-off in case of quic `server busy` error. Reduce synchronous part of accept loop. With the bump to quic-go v0.15.5 (#3732) the quic library now enforces a max accept queue length. With our approach of every RPC is a new quic connection, and some work being done synchronously in the accept loop this bites on CI heavily. With the exponential back-off and immediately spawning a go routine, we can improve failure rate significantly. But this should not be the final solution. Applications need to be able to deal with requests failing. Currently, we only do one shot testing, which might be too strict. For investigation results, see the buildkite builds associated with the draft PR #3750.
- Loading branch information
Showing
5 changed files
with
37 additions
and
23 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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