Introduction

Robot Operating System (ROS) is one of the most widely used frameworks for robotics development. However, with evolving needs in real-time processing, multi-robot systems, and security, ROS 2 was introduced as a successor to address the limitations of the original ROS (referred to as ROS 1). This blog post provides an in-depth comparison of the core differences between ROS 1 and ROS 2, focusing on architecture, communication, real-time capabilities, security, and more.

1. Communication Middleware: ROS 1 (XMLRPC) vs. ROS 2 (DDS)

ROS 1: XMLRPC and Custom Messaging

  • ROS 1 uses a custom messaging layer based on TCPROS and UDPROS.
  • It relies on a centralized master node for name resolution, which creates a single point of failure.
  • Communication between nodes is limited in flexibility, especially for multi-robot systems and distributed computing.

ROS 2: Data Distribution Service (DDS)

  • ROS 2 replaces XMLRPC with DDS (Data Distribution Service), a standard middleware protocol.
  • DDS enables decentralized communication, removing the need for a master node, thus improving robustness.
  • Features like QoS (Quality of Service) provide better control over message reliability, latency, and priority.
  • DDS supports different communication paradigms: publish-subscribe, request-reply, and event-driven messaging, improving efficiency and scalability.

2. Real-Time Capabilities

ROS 1: Non-Deterministic Behavior

  • ROS 1 is not designed for real-time execution.
  • Message transport introduces non-deterministic latencies, making it unsuitable for hard real-time applications.

ROS 2: Built-in Real-Time Support

  • ROS 2 supports real-time execution through DDS’s QoS settings.
  • Execution management through rclcpp and rclpy allows for deterministic scheduling.
  • Integration with real-time operating systems (RTOS) like Xenomai and RT-PREEMPT enables high-performance control loops.

3. Multi-Robot and Distributed Systems

ROS 1: Master Node Dependency

  • Multi-robot systems require complex networking setups.
  • Nodes must communicate through the ROS master, which can introduce bottlenecks and failures.

ROS 2: Decentralized Discovery

  • DDS allows nodes to discover each other without a central master.
  • This enables seamless peer-to-peer communication, making ROS 2 more scalable for large robotic fleets.

4. Security Enhancements

ROS 1: No Built-in Security

  • ROS 1 lacks security mechanisms such as encryption and authentication.
  • Data communication is unprotected, making it vulnerable to cyber threats.

ROS 2: Security Extensions

  • DDS provides built-in security features, including encryption, authentication, and access control.
  • Compliance with the Security Enhancement Guidelines ensures safer deployment in industrial and critical applications.
  • Uses Secure DDS profiles, allowing fine-grained security configurations for robotic deployments.

5. IPC (Inter-Process Communication)

ROS 1: Limited IPC

  • ROS 1 heavily relies on inter-node communication, even for processes running on the same machine.
  • No efficient shared memory mechanism is available, leading to increased latency for high-frequency data transfer.

ROS 2: Improved IPC Mechanisms

  • ROS 2 introduces efficient IPC through shared memory transport mechanisms.
  • Intra-process communication is optimized using zero-copy techniques, reducing latency and CPU overhead.
  • Faster message exchange within the same process or between processes on the same host compared to ROS 1.

6. API and Language Support

ROS 1: ROS API (roscpp and rospy)

  • ROS 1 primarily supports C++ (roscpp) and Python (rospy).
  • The API is monolithic, requiring significant modifications for changes in communication infrastructure.

ROS 2: Modular and Modernized API

  • ROS 2 introduces rcl (ROS Client Library), which allows multiple language bindings.
  • Supports C++ (rclcpp), Python (rclpy), and experimental Rust and Java implementations.
  • Improved modularity makes it easier to extend and customize.

7. Launch and Parameter Handling

ROS 1: roslaunch

  • Uses XML-based launch files, which can be cumbersome for complex applications.
  • Parameter handling is centralized with the ROS parameter server.

ROS 2: launch system

  • Uses Python-based launch files for greater flexibility and scripting.
  • Parameters are managed per-node, allowing more efficient distributed configurations.

8. Performance and Scalability

ROS 1: Limited Scalability

  • Best suited for small to medium-sized robotic applications.
  • Struggles with large-scale distributed robotics due to reliance on a centralized master.

ROS 2: Improved Performance and Scalability

  • Scalable for cloud robotics, edge computing, and large robotic fleets.
  • DDS enables high-performance networking and real-time data exchange.

Conclusion

ROS 2 represents a significant evolution over ROS 1, addressing critical limitations in communication, security, IPC, real-time performance, and scalability. As more libraries and packages transition to ROS 2, developers are encouraged to adopt ROS 2 for future-proof robotic solutions.

Reference: https://mediatum.ub.tum.de/doc/1470362/document.pdf
Reference: https://arxiv.org/html/2411.11607v2
Reference: https://dl.acm.org/doi/pdf/10.1145/2968478.2968502
Reference: https://cjme.springeropen.com/articles/10.1186/s10033-023-00976-5#Sec13