-
Notifications
You must be signed in to change notification settings - Fork 56
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
Communication problems (GSO/IO) between lite-rpc and quic-forward-proxy on IPv6 private network #199
Comments
sendmsg is implemented in quinn-udp to allow for large package sizes we suspect that the issue is related to Generic Segmentation Offload (GSO) available in recent OS's |
grooviegermanikus
added a commit
that referenced
this issue
Sep 18, 2023
grooviegermanikus
changed the title
Communication problems between lite-rpc and quic-forward-proxy on IPv6 private network
Communication problems (GSO/IO) between lite-rpc and quic-forward-proxy on IPv6 private network
Sep 22, 2023
Quinn added opt-out to to 0.9 quinn-rs/quinn#1671 will be part of quinn-proto 0.9.6: |
opened PR to allow to completely disable GSO on Quinn-Level |
riordanp
added a commit
that referenced
this issue
Dec 1, 2023
* Deploy QUIC Proxy (#210) * Load listen addr from env * Add deployment config for quic-forward-proxy * ipv6 support * Fix rpc_tester * Read QUIC_PROXY_ADDR from env * Add traces for debugging * Add timeout for writing to SendStream * disable GSO (Generic Segmentation Offload) for all outgoing QUIC-connects should fix #199 * disable GSO (Generic Segmentation Offload) for all outgoing QUIC-connects (#200) should fix #199 Co-authored-by: GroovieGermanikus <groovie@mango.markets> * Add staging config, remove traces * cargo fmt * delete fly.toml - was split+renamed - see cd/ * remove misleading line * comment on quic proxy * revert some files * Deploy dev from main, prod from production --------- Co-authored-by: GroovieGermanikus <groovie@mango.markets> Co-authored-by: Steve <95291500+grooviegermanikus@users.noreply.github.com> * Update job names * Fix launch params --------- Co-authored-by: GroovieGermanikus <groovie@mango.markets> Co-authored-by: Steve <95291500+grooviegermanikus@users.noreply.github.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When deploying lite-rpc and quic-forward-proxy to Fly on separate VMs, we noticed submitted TXs timing out.
After some debugging, it seems this call to write_all on the SendStream can produce this error:
After which the future never returns, blocking any further messages from the broadcast_receiver being processed. After restarting lite-rpc maybe one or two batches are successfully forwarded before this error occurs and no more batches are forwarded.
Adding a timeout to this future allows sending to continue, but produces the following error logs in quic-forward-proxy:
Tests on IPv4 and local IPv6 outside of the Fly network have been successful, pointing to an incompatibility with the Fly IPv6 private network, or kernel network parameters on the VMs.
The text was updated successfully, but these errors were encountered: