Skip to content
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

Improve error messages #2442

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
62 changes: 43 additions & 19 deletions crates/service-client/src/http.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ use restate_types::config::HttpOptions;
use rustls::ClientConfig;
use std::error::Error;
use std::fmt::Debug;
use std::future;
use std::future::Future;
use std::sync::LazyLock;
use std::{fmt, future};

type ProxiedHttpsConnector = ProxyConnector<HttpsConnector<HttpConnector>>;
type ProxiedHttpConnector = ProxyConnector<HttpConnector>;
Expand Down Expand Up @@ -182,34 +182,22 @@ impl HttpClient {
Either::Left(async move {
match fut.await {
Ok(res) => Ok(res),
Err(err) if is_possible_h11_only_error(&err) => {
Err(HttpError::PossibleHTTP11Only(err))
}
Err(err) => Err(HttpError::Hyper(err)),
Err(err) => Err(err.into()),
}
})
}
}

fn is_possible_h11_only_error(err: &hyper_util::client::legacy::Error) -> bool {
// this is the error we see from the h2 lib when the server sends back an http1.1 response
// to an http2 request. http2 is designed to start requests with what looks like an invalid
// HTTP1.1 method, so typically 1.1 servers respond with a 40x, and the h2 client sees
// this as an invalid frame.
err.source()
.and_then(|err| err.downcast_ref::<h2::Error>())
.and_then(|err| err.reason())
== Some(h2::Reason::FRAME_SIZE_ERROR)
}

#[derive(Debug, thiserror::Error)]
pub enum HttpError {
#[error(transparent)]
Hyper(#[from] hyper_util::client::legacy::Error),
#[error(transparent)]
Http(#[from] http::Error),
#[error("server possibly only supports HTTP1.1, consider discovery with --use-http1.1: {0}")]
#[error("server possibly only supports HTTP1.1, consider discovery with --use-http1.1.\nReason: {}", FormatHyperError(.0))]
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure about \n in those messages, but let's give this a try and see how what comes out of it.

PossibleHTTP11Only(#[source] hyper_util::client::legacy::Error),
#[error("unable to reach the remote endpoint.\nReason: {}", FormatHyperError(.0))]
Connect(#[source] hyper_util::client::legacy::Error),
#[error("{}", FormatHyperError(.0))]
Hyper(#[source] hyper_util::client::legacy::Error),
}

impl HttpError {
Expand All @@ -220,6 +208,42 @@ impl HttpError {
HttpError::Hyper(err) => err.is_retryable(),
HttpError::Http(err) => err.is_retryable(),
HttpError::PossibleHTTP11Only(_) => false,
HttpError::Connect(_) => true,
}
}

fn is_possible_h11_only_error(err: &hyper_util::client::legacy::Error) -> bool {
// this is the error we see from the h2 lib when the server sends back an http1.1 response
// to an http2 request. http2 is designed to start requests with what looks like an invalid
// HTTP1.1 method, so typically 1.1 servers respond with a 40x, and the h2 client sees
// this as an invalid frame.
err.source()
.and_then(|err| err.downcast_ref::<h2::Error>())
.and_then(|err| err.reason())
== Some(h2::Reason::FRAME_SIZE_ERROR)
}
}

impl From<hyper_util::client::legacy::Error> for HttpError {
fn from(err: hyper_util::client::legacy::Error) -> Self {
if Self::is_possible_h11_only_error(&err) {
Self::PossibleHTTP11Only(err)
} else if err.is_connect() {
Self::Connect(err)
} else {
Self::Hyper(err)
}
}
}

struct FormatHyperError<'a>(&'a hyper_util::client::legacy::Error);

impl<'a> fmt::Display for FormatHyperError<'a> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
if let Some(source) = self.0.source() {
write!(f, "{}, {}", self.0, source)
} else {
write!(f, "{}", self.0)
}
}
}
4 changes: 2 additions & 2 deletions crates/service-client/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -152,9 +152,9 @@ impl ServiceClient {

#[derive(Debug, thiserror::Error)]
pub enum ServiceClientError {
#[error(transparent)]
#[error("HTTP client error: {0}")]
Http(#[from] http::HttpError),
#[error(transparent)]
#[error("Lambda client error: {0}")]
Lambda(#[from] lambda::LambdaError),
#[error(transparent)]
IdentityV1(#[from] <request_identity::v1::Signer<'static, 'static> as SignRequest>::Error),
Expand Down
12 changes: 6 additions & 6 deletions crates/service-protocol/src/discovery.rs
Original file line number Diff line number Diff line change
Expand Up @@ -145,9 +145,9 @@ pub enum DiscoveryError {
Decode(#[source] serde_json::Error, Bytes),

// Network related retryable errors
#[error("bad status code: {0}")]
BadStatusCode(u16),
#[error("client error: {0}")]
#[error("bad status code '{}'. Response headers: {:?}", .0.status, .0.headers)]
BadStatusCode(http::response::Parts),
#[error(transparent)]
Client(#[from] ServiceClientError),
#[error("cannot read body: {0}")]
BodyError(GenericError),
Expand Down Expand Up @@ -180,8 +180,8 @@ impl DiscoveryError {
/// retrying can succeed.
pub fn is_retryable(&self) -> bool {
match self {
DiscoveryError::BadStatusCode(status) => matches!(
StatusCode::from_u16(*status).expect("should be valid status code"),
DiscoveryError::BadStatusCode(parts) => matches!(
parts.status,
StatusCode::REQUEST_TIMEOUT
| StatusCode::TOO_MANY_REQUESTS
| StatusCode::INTERNAL_SERVER_ERROR
Expand Down Expand Up @@ -410,7 +410,7 @@ impl ServiceDiscovery {
.into_parts();

if !parts.status.is_success() {
return Err(DiscoveryError::BadStatusCode(parts.status.as_u16()));
return Err(DiscoveryError::BadStatusCode(parts));
}

Ok((
Expand Down
Loading