8 releases (4 stable)

1.3.0 Jul 5, 2024
1.2.0 Aug 22, 2022
1.1.0 Jul 17, 2021
1.0.0 Aug 17, 2020
0.1.0 Sep 3, 2018

#37 in Asynchronous

Download history 47957/week @ 2024-04-04 55737/week @ 2024-04-11 53134/week @ 2024-04-18 51205/week @ 2024-04-25 56176/week @ 2024-05-02 56015/week @ 2024-05-09 59506/week @ 2024-05-16 65623/week @ 2024-05-23 76206/week @ 2024-05-30 75392/week @ 2024-06-06 70919/week @ 2024-06-13 61903/week @ 2024-06-20 88883/week @ 2024-06-27 70280/week @ 2024-07-04 76128/week @ 2024-07-11 61431/week @ 2024-07-18

306,389 downloads per month
Used in 8 crates (5 directly)

MIT license

75KB
1.5K SLoC

Failsafe

Сrate Вocumentation CircleCI Appveyor

A circuit breaker implementation which used to detect failures and encapsulates the logic of preventing a failure from constantly recurring, during maintenance, temporary external system failure or unexpected system difficulties.

Features

  • Working with both Fn() -> Result and Future (optional via default futures-support feature).
  • Backoff strategies: constant, exponential, equal_jittered, full_jittered
  • Failure detection policies: consecutive_failures, success_rate_over_time_window
  • Minimum rust version: 1.59

Usage

Add this to your Cargo.toml:

failsafe = "1.3.0"

Example

Using default backoff strategy and failure accrual policy.

use failsafe::{Config, CircuitBreaker, Error};

// A function that sometimes failed.
fn dangerous_call() -> Result<(), ()> {
  if thread_rng().gen_range(0, 2) == 0 {
    return Err(())
  }
  Ok(())
}

// Create a circuit breaker which configured by reasonable default backoff and
// failure accrual policy.
let circuit_breaker = Config::new().build();

// Call the function in a loop, after some iterations the circuit breaker will
// be in a open state and reject next calls.
for n in 0..100 {
  match circuit_breaker.call(|| dangerous_call()) {
    Err(Error::Inner(_)) => {
      eprintln!("{}: fail", n);
    },
    Err(Error::Rejected) => {
       eprintln!("{}: rejected", n);
       break;
    },
    _ => {}
  }
}

Or configure custom backoff and policy:

use std::time::Duration;
use failsafe::{backoff, failure_policy, CircuitBreaker};

// Create an exponential growth backoff which starts from 10s and ends with 60s.
let backoff = backoff::exponential(Duration::from_secs(10), Duration::from_secs(60));

// Create a policy which failed when three consecutive failures were made.
let policy = failure_policy::consecutive_failures(3, backoff);

// Creates a circuit breaker with given policy.
let circuit_breaker = Config::new()
  .failure_policy(policy)
  .build();

Dependencies

~0.6–6MB
~19K SLoC