An open API service indexing awesome lists of open source software.

https://github.com/wiremind/remoulade

A fast and reliable distributed task processing library for Python 3.
https://github.com/wiremind/remoulade

python python3

Last synced: 5 months ago
JSON representation

A fast and reliable distributed task processing library for Python 3.

Awesome Lists containing this project

README

          

# remoulade

[![CircleCI](https://circleci.com/gh/wiremind/remoulade.svg?style=svg)](https://circleci.com/gh/wiremind/remoulade)
[![PyPI version](https://badge.fury.io/py/remoulade.svg)](https://badge.fury.io/py/remoulade)
[![Documentation](https://img.shields.io/badge/doc-latest-brightgreen.svg)](http://remoulade.readthedocs.io)

*A fast and reliable distributed task processing library for Python 3.* Fork of dramatiq.io


**Changelog**:

**Documentation**:


## Installation

If you want to use it with [RabbitMQ]

```console
uv pip install 'remoulade[rabbitmq]'
```

or if you want to use it with [Redis]

```console
uv pip install 'remoulade[redis]'
```

## Quickstart

1. Make sure you've got [RabbitMQ] running, then create a new file called
`example.py`:

``` python
from remoulade.brokers.rabbitmq import RabbitmqBroker
import remoulade
import requests
import sys

broker = RabbitmqBroker()
remoulade.set_broker(broker)

@remoulade.actor
def count_words(url):
response = requests.get(url)
count = len(response.text.split(" "))
print(f"There are {count} words at {url!r}.")

broker.declare_actor(count_words)

if __name__ == "__main__":
count_words.send(sys.argv[1])
```

2. In one terminal, run your workers:

```console
remoulade example
```

3. In another, start enqueueing messages:

```console
python3 example.py http://example.com
python3 example.py https://github.com
python3 example.py https://news.ycombinator.com
```

Visit the [user guide] to see more features!.

## Releasing

If you want to contribute to the project. First make a Pull request and get approval from a Maintainer and then:

1. Merge your pull request
2. Push a tag (must start with a `v`) from the commit you want (usually, the `master` branch)
a. You can create a new release on Github (recommended). This will create and push the tag for you.
b. Update your local clone, checkout `master`, `git tag` and then `git push --tags`

This will trigger a CI/CD pipeline that publish the package

## Dashboard

Check out [SuperBowl](https://github.com/wiremind/super-bowl) a dashboard for real-time monitoring and administrating all your Remoulade tasks.
***See the current progress, enqueue, requeue, cancel and more ...***
Super easy to use !.

## Kubernetes

Remoulade is tailored to run transparently in containers on [Kubernetes](https://kubernetes.io/) and to make the most of their features. This does not mean it cannot run outside of Kubernetes ;)

## Monitoring/Prometheus

Remoulade provides a `Prometheus` Middleware that exposes various metrics (processed messages, retries, fails etc.), [Check it out](https://github.com/wiremind/remoulade/blob/master/remoulade/middleware/prometheus.py).

## Tracing/OpenTelemtry

Take a look at [opentelemetry-instrumentation-remoulade](https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-remoulade) if you want to enable tracing for Remoulade operations (enqueue, message processing, retries etc.). See [here](https://github.com/open-telemetry/opentelemetry-python-contrib/blob/main/instrumentation/opentelemetry-instrumentation-remoulade/src/opentelemetry/instrumentation/remoulade/__init__.py) for an example.
The library follows [OpenTelemetry](https://opentelemetry.io/) standards.

## License

remoulade is licensed under the LGPL. Please see [COPYING] and
[COPYING.LESSER] for licensing details.

[COPYING.LESSER]: https://github.com/wiremind/remoulade/blob/master/COPYING.LESSER
[COPYING]: https://github.com/wiremind/remoulade/blob/master/COPYING
[RabbitMQ]: https://www.rabbitmq.com/
[Redis]: https://redis.io
[user guide]: https://remoulade.readthedocs.io/en/latest/guide.html