#worker #message-queue #amqp #message #system #tower-layer

apalis-amqp

Message queuing utilities for Rust using apalis and Amqp

10 unstable releases (3 breaking)

0.4.0-rc.1 Jul 25, 2024
0.3.0 Mar 1, 2024
0.2.2 May 25, 2023
0.2.0-alpha.2 Apr 12, 2023
0.1.1 Apr 9, 2023

#665 in Database interfaces

Apache-2.0

19KB
310 lines

apalis-amqp

Message queuing for Rust using apalis and AMQP.


Overview

apalis-amqp is a Rust crate that provides utilities for integrating apalis with AMQP message queuing systems. It includes an AmqpBackend implementation for use with the pushing and popping messages, as well as a MessageQueue<M> implementation for consuming messages from an AMQP queue.

Features

  • Integration between apalis and AMQP message queuing systems.
  • Easy creation of AMQP-backed message queues.
  • Simple consumption of AMQP messages as apalis messages.
  • Supports message acknowledgement and rejection via tower layers.
  • Supports all apalis middleware such as rate-limiting, timeouts, filtering, sentry, prometheus etc.
  • Supports ack messages and allows custom saving results to other backends

Getting started

Before attempting to connect, you need a working amqp backend. We can easily setup using Docker:

Setup RabbitMq

docker run -p 15672:15672 -p 5672:5672 -e RABBITMQ_DEFAULT_USER=apalis -e RABBITMQ_DEFAULT_PASS=apalis  rabbitmq:3.8.4-management

Setup the rust code

Add apalis-amqp to your Cargo.toml

[dependencies]
apalis = "0.6"
apalis-amqp = "0.4"
serde = "1"

Then add to your main.rs

 use apalis::prelude::*;
 use apalis_amqp::AmqpBackend;
 use serde::{Deserialize, Serialize};

 #[derive(Debug, Serialize, Deserialize)]
 struct TestMessage(usize);

 async fn test_message(message: TestMessage) {
     dbg!(message);
 }

 #[tokio::main]
 async fn main() {
     let env = std::env::var("AMQP_ADDR").unwrap();
     let mq = AmqpBackend::<TestMessage>::new_from_addr(&env).await.unwrap();
     // This can be in another place in the program
     mq.enqueue(TestMessage(42)).await.unwrap();
     Monitor::<TokioExecutor>::new()
         .register(
             WorkerBuilder::new("rango-amigo")
                 .backend(mq)
                 .build_fn(test_message),
         )
         .run()
         .await
         .unwrap();
 }

Run your code and profit!

License

apalis-amqp is licensed under the Apache license. See the LICENSE file for details.

Dependencies

~11–23MB
~350K SLoC