Apalis Build Status

Simple and reliable background processing for Rust using Actix actors. Apalis currently supports Redis as a store, with SQlite, PostgresSQL and MySQL in the pipeline.

Getting Started

To get started, just add to Cargo.toml

toml [dependencies] apalis = { version = "0.2" features = ["redis"] }

Prerequisites

A running redis server is required. You can quickly use docker:

bash docker run --name some-redis -d redis

Usage

```rust use actix::prelude::*; use apalis::{ redis::{RedisConsumer, RedisProducer, RedisStorage} Job, JobContext, JobFuture, JobHandler, Queue, Worker }; use serde::{Deserialize, Serialize}; use std::sync::Arc; use std::sync::Mutex;

[derive(Debug)]

pub enum MathError { InternalError, }

[derive(Serialize, Deserialize)]

pub enum Math { Add(u64, u64), Fibonacci(u64), }

impl Job for Math { type Result = Result; }

impl JobHandler> for Math { type Result = JobFuture>; fn handle( self, ctx: &mut JobContext>, ) -> JobFuture> { let data = ctx.dataopt::>>().unwrap(); let mut data = data.lock().unwrap(); data.counter += 1; match self { Math::Add(first, second) => Box::pin(async move { Ok(first + second) }), Math::Fibonacci(num) => { let addr = ctx.dataopt::>().unwrap().clone(); Box::pin(async move { addr.send(Fibonacci(num)) .await .maperr(|e| MathError::InternalError)? }) } } } }

fn producejobs(queue: &Queue) { let producer = RedisProducer::start(queue); producer.dosend(Math::Add(1, 2).into()); producer.do_send(Math::Fibonacci(9).into()); }

[actix_rt::main]

async fn main() { std::env::setvar("RUSTLOG", "info"); env_logger::init(); let storage = RedisStorage::new("redis://127.0.0.1/").unwrap(); let queue = Queue::::new(&storage);

//This can be in another part of the program
produce_jobs(&queue);

let counter = Arc::new(Mutex::new(MathCounter { counter: 0 }));
let addr = SyncArbiter::start(2, || FibonacciActor); //Get the address of another actor
Worker::new()
    .register_with_threads(2, move || {
        RedisConsumer::new(&queue)
            .data(counter.clone())
            .data(addr.clone())
    })
    .run()
    .await;

} ```

Built On

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

Authors

See also the list of contributors who participated in this project.

It was formally actix-redis-jobs and if you want to use the crate name please contact me.

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Acknowledgments