I see the UDP transport cargo feature is disabled.
Right, for the time being you have to enable it and build rmw_zenoh by yourself.
In addition, I don’t see the Z_RELIABILITY_BEST_EFFORT flag used anywhere
By Zenoh publisher and subscribers are best-effort. Hence, only Z_RELIABILITY_RELIABLE
is used to overwrite the default flag when required.
In my application, I would like to make best_effort topics use UDP, and reliable topic use TCP. This seems possible in “vanilla” zenoh if I believe this piece of documentation.
Yes, in addition to enabling the UDP transport feature, you have to configure your Nodes (ZENOH_SESSION_CONFIG_URI
) to listen on both UDP and TCP:
listen: {
endpoints: [ "udp/localhost:0", "tcp/localhost:0" ],
}
If you also want UDP+TCP outside the robot, apply a similar config change to the Router:
listen: {
endpoints: [ "udp/[::]:7447", "tcp/[::]:7447" ],
}
and configure both UDP and TCP for routers interconnectivity via connect.endpoint
config.
Is it planned to enable the UDP transport and enable best effort topics?
I don’t think it is, but feel free to open a PR to trigger the discussion!