docs.rs failed to build later-0.0.8
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
later-0.0.10
later
A distributed background job manager and runner for Rust. This is currently in PoC stage.
Set up
Look at the documentations for details. In general the one time setup involves:
- Import
laterand required dependencies - Define some types to use as a payload to the background jobs
- Generate the stub
- Use the generated code to bootstrap the background job server
Features
Fire and forget jobs
Fire and forget jobs are executed only once and executed by an available worker almost immediately.
Continuations
One or many jobs are chained together to create an workflow. Child jobs are executed only when parent job has been finished.
Delayed jobs
Just like fire and forget jobs that starts after a certain interval.
Recurring jobs
(wip)
Run recurring jobs based on cron schedule.
- To fix: to delete recurring job.
Project status
This is PoC at this moment. Upcoming features are
- Multiple storage backend (redis, postgres)
- Continuation
- Delayed Jobs
- Recurring jobs
- Dashboard
- Use storage backend for scheduling (to remove dependency to RabbitMQ)
- Ergonomic API