ReqFuse

ReqFuse fuses

ReqFuse on Github https://github.com/carsdotcom/req_fuse

ReqFuse on Hex https://hex.pm/packages/req_fuse

ReqFuse on HexDocs https://hexdocs.pm/req_fuse

CI

Req plugin for :fuse

ReqFuse provides circuit-breaker (or load-shedding) functionality for HTTP requests that use the Req library.

Usage

After adding the dependencies, simply attach the ReqFuse step to your request ensuring you are passing in the required and any optional fuse configuration.

Mix.install([
  {:req, "~> 0.3"},
  {:req_fuse, "~> 0.2"}
])

req_fuse_opts = [fuse_name: My.Example.Fuse]
req = [url: "https://httpstat.us/500", retry: :never]
|> Req.new()
|> ReqFuse.attach(req_fuse_opts)

# Fire the request enough times to melt the fuse
Enum.each(0..10, fn _ -> Req.request(req) end)
  => :ok
Req.request(req)
  => 08:45:42.518 [warning] :fuse circuit breaker is open; fuse = Elixir.My.Example.Fuse
  => {:error, %RuntimeError{message: "circuit breaker is open"}}

Installation

If available in Hex, the package can be installed by adding req_fuse to your list of dependencies in mix.exs:

def deps do
  [
    {:req_fuse, ">= 0.2.0"}
  ]
end

Twiddling the Knobs

Attach the circuit-breaker :fuse step and configure the available options

Fuse Options

See https://github.com/jlouis/fuse#tutorial for more information about the supported fuse strategies and their options.

See also the additional discussion on options in ReqFuse.Steps.Fuse

License

See LICENSE

Updates

See CHANGELOG.md

Updating the changelog. (Uses auto-changelog) https://github.com/cookpete/auto-changelog

auto-changelog --breaking-pattern "BREAKING CHANGE" --template keepachangelog --commit-limit false --unreleased

Tagging by version in mix.exs

    git tag `grep -e '@version \"\d\.\d\.\d\".*' mix.exs | awk '{gsub(/"/, "", $2); print $2}'`