-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Client must not expect to hear back from server when establishing bidirectional stream #515
Comments
This issue also affects one of my crates and causes tests to get stuck and fail. Would love to see this get fixed soon. I would like to take a look at this but I'm not sure where to start. |
Do either of you know if this only happens with |
Not sure, as our server is only implemented with Go currently. I will try testing it with the Python examples on https://github.com/grpc/grpc/tree/master/examples/python today. |
I have made a repo showcasing the bug happening with the Python examples I linked: |
Thanks, I do not have time this week to dig into it but will get to this ASAP. |
I've done some digging but unsure about the best way to fix this. The hang is initiated from I suppose we could change @LucioFranco Do you think makes sense? If so I would like to take a stab at implementing it 😊 |
The Java gRPC server implementation also appears to behave this way. |
Is there a workaround for this? What does the tonic server send back to the client which makes it work for rust and not for other implementations? |
.NET server implementation also triggers this issue. I can workaround the issue, as I control both ends, by issuing a |
+1 seeing this issue and unable to use a streaming client as the server is not in my control (seems same issue #1233) tried comparing python/c++ implementations, my hunch was that the other clients send an 'initial metadata' payload which triggers the server side to always respond, couldn't find similar thing within tonic implementation. |
@jordy25519 do you have a reproduction I can look at? |
I don't have one on hand. the relevant generated client code is: pub async fn stream_foo(
&mut self,
request: impl tonic::IntoRequest<super::StreamFooRequest>,
) -> std::result::Result<
tonic::Response<tonic::codec::Streaming<super::StreamFooResponse>>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/crate_foo_rpc.CrateFooRpc/StreamFoo",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"crate_foo_rpc.CrateFooRpc",
"StreamFoo",
),
);
/// ---HANGS HERE---
self.inner.server_streaming(req, path, codec).await
} Additionally, I observe the hang resolves after ~2-5minutes I assume due to a close/timeout message from the server which unblocks the client. like #515 (comment) I traced the hang to the Reconnect code but didn't dig much further |
had another go at debugging this and in my particular case the server never responds with a http2 http2 handshake/connection is ok but blocks after sending streaming request and waiting for response in zooming out, as a user I'd expect to get the possibly better to solve on server side but also feel like this should be a 'it just works' thing |
Also facing this issue. Not sure how to resolve this. Strangely, it doesn't happen with a Rust server when attempting to create a reproducible example, in my case only with a Python server. |
@declark1 as far as I know, you can only solve this by making your server speak first, for example by sending headers server side. |
I'm reliably running into this as well with a Go server. I built a simple Go server with the protos from Tonic's streaming example to test. Eyeballing some wireshark dumps it seems jordy25519 is correct and the Go server isn't send an http2/ headers frame until it has data to respond with, even though an equivalent Tonic server does. It looks like this is only an issue if the client-side code waits for the RPC method to complete to start sending messages on the outgoing stream. Changing the streaming example to the following hung on connect and and never printed #[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let mut client = EchoClient::connect("http://127.0.0.1:50051").await.unwrap();
let (tx, rx) = tokio::sync::mpsc::channel(10);
println!("connecting");
let response = client
.bidirectional_streaming_echo(tokio_stream::wrappers::ReceiverStream::new(rx))
.await
.unwrap();
println!("connected");
for i in 0..10 {
tx.send(EchoRequest {
message: format!("msg {:02}", i),
})
.await
.unwrap();
}
let mut resp_stream = response.into_inner();
while let Some(received) = resp_stream.next().await {
let received = received.unwrap();
println!("\treceived message: `{}`", received.message);
}
} Changing the outgoing stream to #[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let mut client = EchoClient::connect("http://127.0.0.1:50051").await.unwrap();
println!("connecting");
let response = client
.bidirectional_streaming_echo(tokio_stream::pending())
.await
.unwrap();
println!("connected");
} I haven't dug deep enough yet to understand if this is an expectation mismatch between Tonic and Hyper, or Hyper and other http/2 implementations. Given the number of folks in this thread reporting issues with Java, Python, etc. servers, it seems like it's at least worth some documentation to point out that you MUST have a ready outgoing message on the request stream before the RPC call returns. |
Looking quickly at the Go grpc implementation, it seems like maybe this is a mismatch between Tonic and other GRPC APIs. Generated streaming clients in Go seem to return a BidiStreamingClient which wraps a ClientStream interface and doesn't guarantee Headers are available or that a stream is connected when calling SendMsg. Compare that to Tonic, where generated streaming clients still return a |
Faced the same issue with Rust client & C++ server (bidirectional gRPC streaming). The Rust client used to hang-up and not get a stream back. I had to apply the hack mentioned by @blinsay: on the client-side, add an empty message ready to be sent in the outgoing stream before making gRPC streaming method call. I consider this as a Tonic bug as the Tonic generated gRPC client doesn't work with other language based servers. It should not be expected for the client to have an outgoing message ready while establishing the stream. |
@LucioFranco is there any work planned on fixing this? This issue is making the code using |
Same issue here - we had to make the work around of sending a dummy message first on a normal request and then create the bidirectional stream which took us hours to figure out and is making the code clunky. Thank you for your work 🙏 |
Currently it does expect server to write something back. This causes a hang.
Illustrated example:
https://github.com/hyperium/tonic/blob/master/interop/src/client.rs#L155
Move this line after
full_duplex_call
and observe the test fail with timeout.The text was updated successfully, but these errors were encountered: