lbradstreet / diehard

Clojure library of flexible retry, circuit breaker and rate limiter

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

diehard

Build Status Clojars license

Clojure library to provide safety guard to your application. Some of the functionality is wrapper over Failsafe.

Usage

A quick example for diehard usage.

Retry block

A retry block will re-execute inner forms when retry criteria matches.

(require '[diehard.core :as dh])
(dh/with-retry {:retry-on TimeoutException
                :max-retries 3}
  (fetch-data-from-the-moon))

Circuit breaker

A circuit breaker will track the execution of inner block and skip execution if the open condition triggered.

(require '[diehard.core :as dh])

(defcircuitbreaker my-cb {:failure-threshold-ratio [8 10]
                          :delay-ms 1000})

(dh/with-circuit-breaker my-cb
  (fetch-data-from-the-moon))

Rate limiter

A rate limiter protects your code block to run limited times per second. It will block or throw exception depends on your configuration.

(require '[diehard.core :as dh])

(defratelimiter my-rl {:rate 100})

(dh/with-rate-limiter my-rl
  (send-people-to-the-moon))

Docs

More options can be found in the documentation here.

License

Copyright © 2016-2017 Ning Sun

Distributed under the Eclipse Public License either version 1.0 or (at your option) any later version.

About

Clojure library of flexible retry, circuit breaker and rate limiter

License:Eclipse Public License 1.0


Languages

Language:Clojure 100.0%