-
Notifications
You must be signed in to change notification settings - Fork 785
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
Multiple subscribers are subscribed. Killing one with 'kill -9' affects the other subscribers. Even after restarting the subscriber, data is still not subscribed to. #5469
Comments
Within a Participant, one publisher, create three writer. Two of them publish sensor_msgs::msg::Image messages at 30Hz each to the topics /sensor/camera/head_front_rgbd/color/raw and /sensor/camera/head_front_rgbd/depth/raw respectively. The third publisher publishes std_msgs::msg::String messages at 100Hz to the topic /simple_topic, with a QoS of best-effort and a depth of 10. Five subscribers are then started: two subscribe to /sensor/camera/head_front_rgbd/color/raw, two subscribe to /sensor/camera/head_front_rgbd/depth/raw, and one subscribes to /simple_topic. At this point, everything functions as expected. However, if one or more subscribers are killed using a kill -9 command and then restarted, the remaining subscribers stop receiving data. The on_lost callback keeps printing, and in some cases, the program freezes without any progress. |
fastdds_ws.zip |
@jwillemsen Could you help me with this issue? Is it because it's too simple? But I think this scenario is very common. Why would there be this issue? Fast DDS should be able to support distributed systems and one-to-many scenarios well, shouldn't it?🙌🙌🙌👏 |
Hi @Eternity1987, Is there any specific reason for using Could you also try using the Fast DDS CLI tool to clean the shared memory files before restarting the subscribers? This might help resolve the problem. You can find more details about the CLI tool and its usage here and it is very easy to test, just make sure you compile it and run: Hope this works for you! |
Thank you for your reply! I just want to simulate that when there are multiple subscribers, a program crashes abnormally and a daemon will pull it up again. Why does this sub affect other sub? And when the program starts, it will call fastdds shm clean to clean the zombie files first, but there is still this problem, and I think it should not affect my subscription to other programs. |
Is there an already existing issue for this?
Expected behavior
The publisher is publishing RGB data of around 3MB at a frame rate of 30Hz. The subscriber should receive the data at a frequency of 30Hz.
Current behavior
Receiving data works correctly using shared memory, but not with UDP. However, the shared memory issue where the shared memory file sometimes gets deleted or not deleted after running for a while and data is not received could be due to various reasons. but fastdds write api return ok.
Steps to reproduce
ENV: ubuntu 22.04
fastdds@test:~/home/fastdds$ stress-ng --cpu 0 --io 4 --vm 2 --vm-bytes 128M --fork 4 --timeout 604800s
stress-ng: info: [1409220] dispatching hogs: 12 cpu, 4 io, 2 vm, 4 fork
sudo sysctl -w net.core.rmem_max=2147483647
sudo sysctl -w net.core.rmem_default=2147483647
sudo sysctl -w net.core.wmem_max=2147483647
sudo sysctl -w net.core.wmem_default=2147483647
then , normal publish and sub.
Fast DDS version/commit
2.14.3
Platform/Architecture
Other. Please specify in Additional context section.
Transport layer
UDPv4,SHM
Additional context
No response
XML configuration file
No response
Relevant log output
No response
Network traffic capture
No response
The text was updated successfully, but these errors were encountered: