A Rust implementation of Celery for producing and consuming asyncronous tasks with a distributed message queue.
We welcome contributions from everyone regardless of your experience level with Rust. For complete beginners, see HACKING_QUICKSTART.md.
If you already know the basics of Rust but are new to Celery, check out the Rusty Celery Book or the original Python Celery Project.
Define tasks by decorating functions with the task
attribute.
```rust use celery::TaskResult;
fn add(x: i32, y: i32) -> TaskResult
Create an app with the app
macro
and register your tasks with it:
rust
let my_app = celery::app!(
broker = AMQP { std::env::var("AMQP_ADDR").unwrap() },
tasks = [add],
task_routes = [
"*" => "celery",
],
);
Then send tasks to a queue with
rust
my_app.send_task(add::new(1, 2)).await?;
And consume tasks as a worker from a queue with
rust
my_app.consume().await?;
The ./examples
directory contains:
If you already have an AMQP broker running you can set the environment variable AMQP_ADDR
to your broker's URL (e.g., amqp://localhost:5672//
, where
the second slash at the end is the name of the default vhost).
Otherwise simply run the helper script:
bash
./scripts/brokers/amqp.sh
This will download and run the official RabbitMQ image (RabbitMQ is a popular AMQP broker).
You can consume tasks with:
bash
cargo run --example celery_app consume
And you can produce tasks with:
bash
cargo run --example celery_app produce
Similarly, you can consume or produce tasks from Python by running
bash
python examples/celery_app.py consume
or
bash
python examples/celery_app.py produce
You'll need to have Python 3 installed, along with the requirements listed in the requirements.txt
file.
You can start the Rust beat with:
bash
cargo run --example beat_app
And then you can consume tasks from Rust or Python as explained above.
✅ = Supported and mostly stable, although there may be a few incomplete features.
⚠️ = Partially implemented and under active development.
🔴 = Not supported yet but on-deck to be implemented soon.
| | Status | Tracking |
| ---------------- |:-------:| --------- |
| Protocol | ⚠️ | |
| Producers | ✅ | |
| Consumers | ✅ | |
| Brokers | ✅ | |
| Beat | ✅ | |
| Backends | 🔴 | |
| Baskets | 🔴 | |
| | Status | Tracking |
| ----- |:------:| -------- |
| AMQP | ✅ | |
| Redis | 🔴 |
|
| | Status | Tracking |
| ----------- |:------:| -------- |
| RPC | 🔴 | |
| Redis | 🔴 |
|