API bindings for Faktory workers and job producers.
This crate provides API bindings for the language-agnostic Faktory work server. For a more detailed system overview of the work server, what jobs are, and how they are scheduled, see the Faktory docs.
At a high level, Faktory has two primary concepts: jobs and workers. Jobs are pieces of work that clients want to have executed, and workers are the things that eventually execute those jobs. A client enqueues a job, Faktory sends the job to an available worker (and waits if they're all busy), the worker executes the job, and eventually reports back to Faktory that the job has completed.
Jobs are self-contained, and consist of a job type (a string), arguments for the job, and bits and pieces of metadata. When a job is scheduled for execution, the worker is given this information, and uses the job type to figure out how to execute the job. You can think of job execution as a remote function call (or RPC) where the job type is the name of the function, and the job arguments are, perhaps unsuprisingly, the arguments to the function.
In this crate, you will find bindings both for submitting jobs (clients that produce jobs)
and for executing jobs (workers that consume jobs). The former can be done by making a
Client
, whereas the latter is done with a Worker
. See the documentation for each for
more details on how to use them.
To connect to a Faktory server hosted over TLS, add the tls
feature, and see the
documentation for TlsStream
, which can be supplied to Client::connect_with
and
WorkerBuilder::connect_with
.
If you want to submit jobs to Faktory, use Client
.
use faktory::{Client, Job};
let mut c = Client::connect().await.unwrap();
c.enqueue(Job::new("foobar", vec!["z"])).await.unwrap();
If you want to accept jobs from Faktory, use Worker
.
use async_trait::async_trait;
use faktory::{JobRunner, Worker};
use std::io;
struct DomainEntity(i32);
impl DomainEntity {
fn new(buzz: i32) -> Self {
DomainEntity(buzz)
}
}
#[async_trait]
impl JobRunner for DomainEntity {
type Error = io::Error;
async fn run(&self, job: Job) -> Result<(), Self::Error> {
println!("{:?}, buzz={}", job, self.0);
Ok(())
}
}
let mut w = Worker::builder()
.register("fizz", DomainEntity::new(1))
.register("jobtype", DomainEntity::new(100))
.register_fn("foobar", |job| async move {
println!("{:?}", job);
Ok::<(), io::Error>(())
})
.register_blocking_fn("fibo", |job| {
std::thread::sleep(Duration::from_millis(1000));
println!("{:?}", job);
Ok::<(), io::Error>(())
})
.with_rustls() // available on `rustls` feature only
.connect()
.await
.unwrap();
match w.run(&["default"]).await {
Err(e) => println!("worker failed: {}", e),
Ok(stop_details) => {
println!(
"Stop reason: {}, number of workers that were running: {}",
stop_details.reason,
stop_details.workers_still_running
);
}
}
Also see some usage examples in examples
directory in the project's root. You can run an example with:
cargo run --example example_name
For instance, to run a run_to_completion
example in release mode, hit:
cargo run --example run_to_completion --release
Make sure you've got Faktory server up-and-running. See instructions on how to spin up Faktory locally.
First ensure the "Factory" service is running and accepting connections on your machine. To launch it a Factory container with docker, run:
docker run --rm -it -v faktory-data:/var/lib/faktory -p 127.0.0.1:7419:7419 -p 127.0.0.1:7420:7420 contribsys/faktory:latest /faktory -b :7419 -w :7420
After that run the tests:
FAKTORY_URL=tcp://127.0.0.1:7419 cargo test --all-features --locked --all-targets
Please note that setting "FAKTORY_URL" environment variable is required for e2e tests to not be skipped.
Provided you have make installed and docker
daemon running,
you can launch a Faktory
container with make faktory
command. After that, hit make test/e2e
to run the end-to-end test suite.
Remove the container with make faktory/kill
, if it's no longer needed.
To run end-to-end tests for the crate's tls
feature, ensure you've got the compose
docker plugin installed.
Run make faktory/tls
to spin up Faktory
behind NGINX
with ssl termination, then run make test/e2e/tls
. To remove the containers, hit make faktory/tls/kill
.