-
Notifications
You must be signed in to change notification settings - Fork 349
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
Add ZC support for Amazon EC2 ENA driver #941
Comments
@tianbaoluo could you describe your use case please? |
@cardigliano one of the scenes, we need to implement cross-zone UDP broadcast on Amazon, and I hope to reduce the latency. I found that PF_RING ZC has best performance and is not expensive, but it does not seem to support the ENA driver (https://github.com/amzn/amzn-drivers/tree/master/kernel/linux/ena). |
@tianbaoluo please note that PF_RING ZC is a kernel-bypass technology, this means you cannot use for standard networking (e.g. sending receiving UDP traffic) unless you implement a small stack in userspace (e.g. you need at least to handle ARP traffic) |
Understood, I have implemented the UDP protocol with raw socket, but it is relatively slow. |
I read the documentation and it seems that PF_RING ZC does not support Amazon's ENA driver. Can you add it?
The text was updated successfully, but these errors were encountered: