-
Notifications
You must be signed in to change notification settings - Fork 110
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Example: Peer fanout in peer set #3231
Closed
Closed
Conversation
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
And add a similar method for peer fanouts.
teor2345
commented
Dec 14, 2021
Comment on lines
+654
to
+686
/// Fans out the same request to a few ready peers, | ||
/// combining successful responses into a single response, | ||
/// and ignoring errors. | ||
/// | ||
/// But if all requests return an error, returns an error from an arbitrary peer. | ||
fn route_fanout(&mut self, req: Request) -> <Self as tower::Service<Request>>::Future { | ||
// TODO: does each individual fanout request need a smaller timeout, | ||
// to avoid stalling all the requests when a single peer doesn't respond? | ||
|
||
// Limit the fanout to half the ready peers, and to the fanout maximum. | ||
let half_ready_peers = (self.ready_services.len() + 1) / 2; | ||
let fanout_peers = min(constants::MAX_REQUEST_FANOUT, half_ready_peers); | ||
|
||
self.route_multiple(req.clone(), fanout_peers) | ||
.map(|results| { | ||
let responses: Vec<Response> = results | ||
.iter() | ||
.filter_map(|result| result.as_ref().ok()) | ||
.cloned() | ||
.collect(); | ||
let first_error = results.into_iter().find_map(Result::err); | ||
|
||
if !responses.is_empty() { | ||
Ok(combine_fanout_responses(req, responses)) | ||
} else if let Some(first_error) = first_error { | ||
// We could return a list of errors, but one should be enough | ||
Err(first_error) | ||
} else { | ||
unreachable!("expected at least one peer result") | ||
} | ||
}) | ||
.boxed() | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@oxarbitrage this is the code I was struggling to get to compile.
@oxarbitrage I'm going to close this PR, because we're not going to merge it :-) |
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.
Motivation
This PR has some example code for ticket #2214.
It should not be merged.