niebayes commented on issue #7248: URL: https://github.com/apache/arrow-rs/issues/7248#issuecomment-2705434247
We have tried to put a bounded channel on the server side to disable eager polling to some extent. But this is definitely not a graceful and general solution. Specifically: [Before] server stream -> tonic -> client [After] server stream -> bounded channel -> tonic -> client Since the channel is bounded, the server side cannot poll the stream till exhausted, which emulates a lazy stream. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org