diehard.core

*elapsed-time-ms*

dynamic

Available in retry block. Contexual value represents time elasped since first attempt

*executions*

dynamic

Available in retry block. Contexual value represents execution times

*start-time-ms*

dynamic

Available in retry block. Contexual value represents first attempt time

defcircuitbreaker

macro

(defcircuitbreaker name opts)

Define a circuit breaker with option.

Available options

There options are available when creating circuit breaker in defcircuitbreaker.

Failure criteria

All the three fail options share same meaning with similar option in retry block.

  • :fail-if
  • :fail-on
  • :fail-when
  • :timeout-ms while give all you code a timeout is best practice in application level, circuit breaker also provides a timeout for marking a long running block as failure
Delay and threshold
  • :delay-ms required. the delay for :open circuit breaker to turn into :half-open.
  • :failure-threshold
  • :failure-threshold-ratio
  • :success-threshold
  • :success-threshold-ratio All these four option is to determine at what condition the circuit breaker is open.
Listeners
  • :on-open a function to be called when state goes :open
  • :on-close a function to be called when state goes :closed
  • :on-half-open a function to be called when state goes :half-open

deflistener

macro

(deflistener name opts)

Predefined listener.

Retry Listeners
  • :on-abort accepts a function which takes result, exception as arguments, called when retry aborted
  • :on-complete accepts a function which takes result, exception as arguments, called when exiting retry block
  • :on-failed-attempt accepts a function which takes result, exception as arguments, called when execution failed (matches retry criteria)
  • :on-failure accepts a function which takes result, exception as arguments, called when existing retry block with failure (matches retry criteria)
  • :on-success accepts a function which takes result as arguments, called when existing retry block with success (mismatches retry criteria)
  • :on-retry accepts a function which takes result as arguments, called when a retry attempted.
Use predefined listeners
(diehard/deflistener listener
  {:on-retry (fn [return-value exception-thrown] (println "retried"))})

(diehard/with-retry {:policy policy :listener listener}
  ;; your code here
  )

defratelimiter

macro

(defratelimiter name opts)

Create a rate limiter with options.

  • :rate execution permits per second.
  • :max-cached-tokens the max size of permits we can cache when idle

defretrypolicy

macro

(defretrypolicy name opts)

Predefined retry policy.

Available options

Retry criteria
  • :retry-when retry when return value is given value
  • :retry-on retry on given exception / exceptions(vector) were thrown
  • :retry-if specify a function (fn [return-value exception-thrown]), retry if the function returns true
Retry abortion criteria
  • :abort-when abort retry when return value is given value
  • :abort-on abort retry on given exception / exceptions(vector) were thrown
  • :abort-if specify a function (fn [return-value exception-thrown]), abort retry if the function returns true
  • :max-retries abort retry when max attempts reached
  • :max-duration abort retry when duration reached
Delay
  • :backoff-ms specify a vector [initial-delay-ms max-delay-ms multiplier] to control the delay between each retry, the delay for nth retry will be (max (* initial-delay-ms n) max-delay-ms)
  • :delay-ms use constant delay between each retry
  • :jitter-factor random factor for each delay
  • :jitter-ms random time (-jitter-ms, jitter-ms) adds to each delay
Use pre-defined policy

You can put together all those retry policies in a defretrypolicy. And use :policy option in option map.

(diehard/defretrypolicy policy
  {:max-retries 5
   :backoff-ms [1000 10000]})

(diehard/with-retry {:policy policy}
  ;; your code here
  )

with-circuit-breaker

macro

(with-circuit-breaker cb & body)

Circuit breaker protected block.

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

(diehard/defcircuitbreaker test-cb {:failure-threshold-ratio [35 50]
                                    :delay-ms 1000})

(diehard/with-circuit-breaker test-cb
  ;; your protected code here
  )

In this scenario, if the circuit breaker protected code block fails 35 times in 50 executions, as defined in :failure-threshold-ratio, the test-cb is entering into :open state. When circuit breaker is open, all execution requests will be rejected immediately.

After :delay-ms, the circuit breaker will be :half-open. At the moment, 50 execution will be allowed, to test the state to see if it’s recovered. If success, the circuit breaker is back to :closed state. Otherwise, it will be :open again.

The block will throw CircuitBreakerOpenException when the circuit breaker is open and skip execution of inner forms. Otherwise it will return the value or throw the exception raised from inner.

You can always check circuit breaker state with diehard.circuitbreaker/state.

with-rate-limiter

macro

(with-rate-limiter opts & body)

Rate Limiter protected block. Code execution in this block is throttled to given rate. Use defratelimiter to define a ratelimiter and use it as option:

;; create a rate limiter for 100 executions for second
(defratelimiter myfl {:rate 100})

(with-rate-limiter {:ratelimiter myfl}
  ;; your task here
  )

By default it will wait forever until there is permits available. You can also specify a max-wait-ms to wait for a given time. If there’s no permits in this period, this block will throw a Clojure ex-info, with ex-data as


(try (with-rate-limiter {:ratelimiter myfl :max-wait-ms 1000} ;; your task here ) (catch Exception e (is (:throttled (ex-data e)))))

If your execution has a greater graininess, you can customize the permits for this execution by setting :permits option.

(with-rate-limiter {:ratelimiter myfl
                    :permits (size-of-the-task)}
  ;; your task here
  )

with-retry

macro

(with-retry opt & body)

Retry policy protected block. If the return value of or exception thrown from the code block matches the criteria of your retry policy, the code block will be executed again, until it mismatch the retry policy or matches the abort criteria. The block will return the value or throw exception from the last execution. If :circuit-breaker is set, it will throw CircuitBreakerOpenException when the breaker becomes open.

Available options

Retry criteria
  • :retry-when retry when return value is given value
  • :retry-on retry on given exception / exceptions(vector) were thrown
  • :retry-if specify a function (fn [return-value exception-thrown]), retry if the function returns true
Retry abortion criteria
  • :abort-when abort retry when return value is given value
  • :abort-on abort retry on given exception / exceptions(vector) were thrown
  • :abort-if specify a function (fn [return-value exception-thrown]), abort retry if the function returns true
  • :max-retries abort retry when max attempts reached
  • :max-duration abort retry when duration reached
Delay
  • :backoff-ms specify a vector [initial-delay-ms max-delay-ms multiplier] to control the delay between each retry, the delay for nth retry will be (max (* initial-delay-ms n) max-delay-ms)
  • :delay-ms use constant delay between each retry
  • :jitter-factor random factor for each delay
  • :jitter-ms random time (-jitter-ms, jitter-ms) adds to each delay
Use pre-defined policy

You can put together all those retry policies in a defretrypolicy. And use :policy option in option map.

(diehard/defretrypolicy policy
  {:max-retries 5
   :backoff-ms [1000 10000]})

(diehard/with-retry {:policy policy}
  ;; your code here
  )
Retry Listeners
  • :on-abort accepts a function which takes result, exception as arguments, called when retry aborted
  • :on-complete accepts a function which takes result, exception as arguments, called when exiting retry block
  • :on-failed-attempt accepts a function which takes result, exception as arguments, called when execution failed (matches retry criteria)
  • :on-failure accepts a function which takes result, exception as arguments, called when existing retry block with failure (matches retry criteria)
  • :on-success accepts a function which takes result as arguments, called when existing retry block with success (mismatches retry criteria)
  • :on-retry accepts a function which takes result as arguments, called when a retry attempted.
Use predefined listeners
(diehard/deflistener listener
  {:on-retry (fn [return-value exception-thrown] (println "retried"))})

(diehard/with-retry {:policy policy :listener listener}
  ;; your code here
  )

Fallback
  • :fallback fallback value or handler function when retry blocks exists with failure.
;; return 5 when attempts failure
(with-retry {:fallback 5}
  ;; ...
  )

;; return fallback handler function result when failed
(with-retry {:fallback (fn [value exception]
                         ;; value: value returned from last attempt
                         ;; exp: exception thrown from last attempt
                         )}
  ;; ...
  )

Circuit breaker
  • :circuit-breaker a circuit breaker created from defcircuitbreaker. It will work together with retry policy as quit criteria.