-
Notifications
You must be signed in to change notification settings - Fork 1
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
Worker threads crash while connecting two different machines. #1
Comments
There's a configuration example for a simple two peer network in As for integration with MP-QUIC, I'm not sure what you have in mind exactly. Centipede operates over message-oriented protocols like raw UDP rather than stream-oriented protocols like QUIC. |
I used two Ubuntu 22.04.3 LTS machines to build and conduct ping tests successfully. When using iperf3 for network speed testing, I encountered the following error upon starting iperf -c centipede../target/debug/centipede peer2.toml 2024-04-24T16:04:09.207Z INFO centipede > shutting down due to error |
I used two VPS instances, and direct iperf speed tests were successful. Further testing revealed that when running "iperf3 -c 10.0.10.1 -u -b 500M", an error occurred, while "iperf3 -c 10.0.10.1 -u -b 300M" resulted in a successful connection to centipede. There were no significant abnormalities observed in CPU usage. |
Hmm, this is very weird. I've beenable to reproduce the same error on some local machines. It doesn't seem to happen between two netnses on the same machine, which is how I've been testing so far. I'll keep looking into it. I suspect this could have something to do with device queues filling up. |
Should be fixed in the latest commit. @kaowul would you mind testing this to verify? |
iperf3 -c 10.0.10.1 This was my recent test, which confirms that the link speed between my two VPNs is around 350Mbits/sec. However, if I conduct a test using iperf3 -c 10.0.10.1 -u -b 400M, after a few seconds, the following error occurs: ./target/debug/centipede /root/peer2.toml 2024-04-25T06:59:49.876Z INFO centipede > shutting down due to error |
Is it possible for this project to consider integration with mp-quic?
The text was updated successfully, but these errors were encountered: