DORA (Dataflow-Oriented Robotic Architecture) is middleware designed to streamline and simplify the creation of AI-based robotic applications. It offers low latency, composable, and distributed datafl
版权所有:中国计算机学会技术支持:开源发展技术委员会
京ICP备13000930号-9
京公网安备 11010802032778号
#
Website | Python API | Rust API | Guide | Discord
Highlights
ros2.Latency benchmark with Python API for both framework, sending 40M of random bytes.
Latest News 🎉
2025
dora.builder, a new Pythonic API for imperatively definingdoradataflows.llama.cpp.Support Matrix
Rust ✅
C/C++ 🆗
ROS2 >= Foxy 🆗
MacOS: Arm 64 ⭐✅
Windows: x86_64 🆗
WSL: x86_64 🆗
Android: 🛠️ (Blocked by: https://github.com/elast0ny/shared_memory/issues/32)
IOS: 🛠️
Standard Specification 🛠️
Cuda IPC 📐
cargo: Rust Node ✅
Node Hub
The node hub is available in the
dora-rs/dora-hubrepository.Examples
=
Getting Started
Installation
Note for Ubuntu users: If you encounter an ‘externally-managed-environment’ error during installation, try installing inside a virtual environment (python3 -m venv venv).
Additional installation methods
Install dora with our standalone installers, or from crates.io:
With cargo
With Github release for macOS and Linux
To install a specific version:
With Github release for Windows
With Source
Run
To stop your dataflow, you can use ctrl+c
Documentation
The full documentation is available on our website. A lot of guides are available on this section of our website.
What is Dora? And what features does Dora offer?
Dataflow-Oriented Robotic Architecture (
dora-rs) is a framework that makes creation of robotic applications fast and simple.dora-rsimplements a declarative dataflow paradigm where tasks are split between nodes isolated as individual processes.The dataflow paradigm has the advantage of creating an abstraction layer that makes robotic applications modular and easily configurable.
TCP Communication and Shared Memory
Communication between nodes is handled with shared memory on a same machine and TCP on distributed machines. Our shared memory implementation tracks messages across processes and discards them when obsolete. Shared memory slots are cached to avoid new memory allocation.
Arrow Message Format
Nodes communicate with Apache Arrow Data Format.
Apache Arrow is a universal memory format for flat and hierarchical data. The Arrow memory format supports zero-copy reads for lightning-fast data access without serialization overhead. It defines a C data interface without any build-time or link-time dependency requirement, that means that
dora-rshas no compilation step beyond the native compiler of your favourite language.Opentelemetry
dora-rs uses Opentelemetry to record all your logs, metrics and traces. This means that the data and telemetry can be linked using a shared abstraction.
Opentelemetry is an open source observability standard that makes dora-rs telemetry collectable by most backends such as elasticsearch, prometheus, Datadog…
Opentelemetry is language independent, backend agnostic, and easily collect distributed data, making it perfect for dora-rs applications.
ROS2 Bridge
Note: this feature is marked as unstable.
Contributing
We are passionate about supporting contributors of all levels of experience and would love to see you get involved in the project. See the contributing guide to get started.
Discussions
Our main communication channels are:
Feel free to reach out on any topic, issues or ideas.
We also have a contributing guide.
License
This project is licensed under Apache-2.0. Check out NOTICE.md for more information.
Further Resources 📚