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

Revision history [back]

click to hide/show revision 1
initial version

Since these are socket file descriptors, it looks like rosout has a lot of open sockets. ROS creates a socket for each connection between a publisher and a subscriber, so there can be a lot of file descriptors involved, but even on robots with hundreds of nodes this isn't usually a problem.

You may be able to tell what these open sockets are connected to and what state they're in with netstat -lp. The -l option lists open sockets, and the -p option lists the process that owns that socket.