Kubernetes Leader Election in Rust
This library provides simple leader election for Kubernetes workloads.
[]
= "0.10.2"
Make sure to use the latest version of the crate.
Example
Acquire leadership on a Kubernetes Lease
called some-operator-lock
, in the default
namespace and promise to renew the lock every 15 seconds:
let leadership = new;
// Run this in a background task every 5 seconds
// Share the result with the rest of your application; for example using Arc<AtomicBool>
// See https://github.com/hendrikmaus/kube-leader-election/blob/master/examples/shared-lease.rs
let lease = leadership.try_acquire_or_renew.await?;
info!;
Please refer to the examples
for runnable usage demonstrations.
Features
- Kubernetes
Lease
locking, similar to client-go's leaderelection
Kubernetes Lease
Locking
A very basic form of leader election without fencing, i.e., only use this if your application can tolerate multiple replicas acting as leader for a short amount of time.
This implementation uses a Kubernetes Lease
resource from the API group coordination.k8s.io
, which is locked and continuously renewed by the leading replica. The leaseholder, as well as all candidates, use timestamps to determine if a lease can be acquired. Therefore, this implementation is volatile to datetime skew within a cluster.
Only use this implementation if you are aware of its downsides, and your workload can tolerate them.
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.