9 stable releases
2.1.4 | Sep 21, 2024 |
---|---|
2.1.3 | Jul 9, 2024 |
1.1.0 | Jul 3, 2024 |
0.1.1 | Jun 25, 2024 |
#263 in Asynchronous
22 downloads per month
41KB
793 lines
Distributed Scheduler
This is a distributed scheduler that can be used to schedule tasks on a cluster of machines. The scheduler is implemented in Rust and uses the tokio library for asynchronous IO. The scheduler is designed to be fault-tolerant and can recover from failures of the scheduler itself or the machines in the cluster.
The current cronjob provider is job_scheduler, but it is no longer maintained, so I may replace it with another crate in the future.
Architecture
The scheduler is composed of a number of components that work together to schedule tasks. The main components are:
- Cron: The main scheduler that schedules tasks on the cluster. It is responsible for maintaining the state of the cluster and scheduling tasks on the machines in the cluster.
- Node Pool: The node pool is responsible for managing the nodes in single machine. It will check if the job should be run on the local machine or not. The scheduling algorithm is based on consistent hashing.
- Driver: We provide multiple drivers to run the job. The driver is responsible for maintain the job state and sync the node list.
Available Drivers
- Redis (Key Scan)
- Redis (Z-SET)
- Etcd (Lease)
- Consul (KV)
Usage
To use the scheduler, you can view the example crate in the examples
directory. Here is an brief example:
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let rdb = redis::Client::open("redis://localhost:6379").unwrap();
let driver = distributed_schedular::driver::redis::RedisDriver::new(rdb).await?;
let np = distributed_schedular::node_pool::NodePool::new(driver);
let cron = distributed_schedular::cron::Cron::new(np).await?;
cron.add_job("test", "* * * * * *".parse().unwrap(), || {
println!("Hello, I run every seconds");
}).await?;
Ok(())
}
License
This project is licensed under the AGPL-3.0 License - see the LICENSE file for details.
Dependencies
~7–17MB
~234K SLoC