ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question
0

Why is Pub/Sub the ideal communication pattern for ROS or robots in general instead of Request/Response?

asked 2018-06-26 18:55:32 -0500

apache8080 gravatar image

I am curious about this because I am working on a ROS replacement as a fun side project.

edit retag flag offensive close merge delete

Comments

This is an interesting question, but also one which I believe is still being answered by the software engineering community. I'm not sure there has been any decision about which interaction patterns are "best" for robotics. Have you found anyone claiming that?

gvdhoorn gravatar image gvdhoorn  ( 2018-06-27 01:30:43 -0500 )edit

2 Answers

Sort by ยป oldest newest most voted
0

answered 2018-06-26 19:40:15 -0500

ROS tries to provide a framework for the most common/useful communication patterns. It just happens that the most common pattern of communication in robot applications is best represented by Publisher/Subscriber kind of communication.

Usually the sensors in a robot produce a stream of data at a regular interval (laser readings, images from a camera, ticks from wheel encoders, etc...) and you want the robot to react in some way to the information coming from the sensors whenever new information is available. In that sense, a publisher/subscriber communication pattern comes quite handy. A node publishes the information from a sensor whenever a new reading is available and any node interested in those updates can subscribe to the sensor topic.

Request/Response is more suited for short, unscheduled communications like "enable/disable" operations, setting parameters and things like that.

Anyway, ROS just aims at providing the tools and maybe some good practices, but the way you use the tools is entirely up to you. You can use Request/Response pattern of communication to get the latest information from a sensor without any problem if that makes more sense for your application, no one is holding a gun to your head to use publisher/subscriber communication pattern :P

edit flag offensive delete link more
0

answered 2018-06-27 00:07:54 -0500

NEngelhard gravatar image

Pub/Sub is NOT the ideal communication method for all scenarios and this is also the reason ROS is implementing several other methods, namely Services (via XMLRPC) and Actions (which are implemented with several Pub/Sub-connections).

Services are most often used for small computations or configurations which can't be aborted by the caller.

Actions are used to control longer tasks, for example moving the robot somewhere. One node decides where to go next and sends this pose to the navigation node through an action-goal. The navigation node then starts to move the robot and will regularly send the current position back to the calling node until it reaches its goal, gets blocked or the calling nodes decides to go somewhere else and cancels the action. The navigation node itself could have a subscriber to the current pose that is published/streamed from the localization node (which in turn subscribes to laserscan messages (and maybe uses a service to configure/activate other sensors)).

edit flag offensive delete link more

Question Tools

2 followers

Stats

Asked: 2018-06-26 18:55:32 -0500

Seen: 1,360 times

Last updated: Jun 27 '18