question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Implement client to server streaming

See original GitHub issue

Hi,

I know client to server streaming is not supported but the other way is according to the readme.

Do you have any plan to add it? It would be really helpful for us as we have to file upload endpoint using streaming.

service FileService {
    // Upload a user submitted file
    rpc UploadFile (stream UploadFileRequest) returns (UploadFileResponse);
}

Thanks

Issue Analytics

  • State:open
  • Created 3 years ago
  • Reactions:16
  • Comments:8 (4 by maintainers)

github_iconTop GitHub Comments

5reactions
ydesgagncommented, May 20, 2020

I would be willing to allocate 1-2 engineers on this to create a PR. Any guidelines we should follow so the PR can be accepted smoothly?

2reactions
wenbozhucommented, May 20, 2020

What Web API do you plan to use to implement the client side support?

Fetch/stream doesn’t yet support streamed upload. We will be doing some origin trial in chrome to decide if streamed upload will work reliably on Internet.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Streaming with gRPC in Java - Baeldung
In this tutorial, we'll focus on gRPC streams. Streaming allows multiplex messages between servers and clients, creating very efficient and ...
Read more >
Streaming messages between client and server services ...
Learn how to use gRPC unary calls, server streaming, client streaming, and bidirectional streaming to communicate between Java client and server services ...
Read more >
Core concepts, architecture and lifecycle - gRPC
Server streaming RPCs where the client sends a request to the server and gets a stream to read a sequence of messages back....
Read more >
gRPC - Server Streaming RPC - Tutorialspoint
Let us now discuss how server streaming works while using gRPC communication. In this case, the client will search for books with a...
Read more >
How to Set Up gRPC Server-Side Streaming with Go
This mechanism is implemented in gRPC and it is called streaming. ... Bidirectional streaming: Where both client and server can have ...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found