Circuitbox is a Ruby circuit breaker gem. It protects your application from failures of it's service dependencies. It wraps calls to external services and monitors for failures in one minute intervals. Once more than 10 requests have been made with a 50% failure rate, Circuitbox stops sending requests to that failing service for one minute. This helps your application gracefully degrade. Resources about the circuit breaker pattern:
- http://martinfowler.com/bliki/CircuitBreaker.html
- https://github.com/Netflix/Hystrix/wiki/How-it-Works#CircuitBreaker
Circuitbox[:your_service] do
Net::HTTP.get URI('http://example.com/api/messages')
end
Circuitbox will return nil for failed requests and open circuits.
If your HTTP client has it's own conditions for failure, you can pass an exceptions
option.
class ExampleServiceClient
def circuit
Circuitbox.circuit(:yammer, exceptions: [Zephyr::FailedRequest])
end
def http_get
circuit.run do
Zephyr.new("http://example.com").get(200, 1000, "/api/messages")
end
end
end
Using the run!
method will throw an exception when the circuit is open or the underlying service fails.
def http_get
circuit.run! do
Zephyr.new("http://example.com").get(200, 1000, "/api/messages")
end
end
class ExampleServiceClient
def circuit
Circuitbox.circuit(:your_service, {
exceptions: [YourCustomException],
# seconds the circuit stays open once it has passed the error threshold
sleep_window: 300,
# number of requests within 1 minute before it calculates error rates
volume_threshold: 10,
# exceeding this rate will open the circuit
error_threshold: 50,
# seconds before the circuit times out
timeout_seconds: 1
})
end
end
You can also pass a Proc as an option value which will evaluate each time the circuit breaker is used. This lets you configure the circuit breaker without having to restart the processes.
Circuitbox.circuit(:yammer, {
sleep_window: Proc.new { Configuration.get(:sleep_window) }
})
You can also run rake circuits:stats SERVICE={service_name}
to see successes, failures and opened circuits.
Add PARTITION={partition_key}
to see the circuit for a particular partition.
The stats are aggregated into 1 minute intervals.
circuitbox use ActiveSupport Notifications.
Usage example:
Log on circuit open/close:
class CircuitOpenException < StandardError ; end
ActiveSupport::Notifications.subscribe('circuit_open') do |name, start, finish, id, payload|
circuit_name = payload[:circuit]
Rails.logger.warn("Open circuit for: #{circuit_name}")
end
ActiveSupport::Notifications.subscribe('circuit_close') do |name, start, finish, id, payload|
circuit_name = payload[:circuit]
Rails.logger.info("Close circuit for: #{circuit_name}")
end
generate metrics:
$statsd = Statsd.new 'localhost', 9125
ActiveSupport::Notifications.subscribe('circuit_gauge') do |name, start, finish, id, payload|
circuit_name = payload[:circuit]
gauge = payload[:gauge]
value = payload[:value]
metrics_key = "circuitbox.circuit.#{circuit_name}.#{gauge}"
$statsd.gauge(metrics_key, value)
end
payload[:gauge]
can be:
failure_count
success_count
error_rate
warnings: in case of misconfiguration, circuitbox will fire a circuitbox_warning notification.
ActiveSupport::Notifications.subscribe('circuit_warning') do |name, start, finish, id, payload|
circuit_name = payload[:circuit]
warning = payload[:message]
Rails.logger.warning("#{circuit_name} - #{warning}")
end
Circuitbox ships with Faraday HTTP client middleware.
require 'faraday'
require 'circuitbox/faraday_middleware'
conn = Faraday.new(:url => "http://example.com") do |c|
c.use Circuitbox::FaradayMiddleware
end
response = conn.get("/api")
if response.success?
# success
else
# failure or open circuit
end
By default the Faraday middleware returns a 503
response when the circuit is
open, but this as many other things can be configured via middleware options
exceptions
pass a list of exceptions for the Circuitbreaker to catch, defaults to Timeout and Request failures
c.use Circuitbox::FaradayMiddleware, exceptions: [Faraday::Error::TimeoutError]
default_value
value to return for open circuits, defaults to 503 response wrapping the original response given by the service and stored asoriginal_response
property of the returned 503, this can be overwritten with either- a static value
- a
lambda
which is passed theoriginal_response
andoriginal_error
.original_response
will be populated if Faraday returne an error response,original_error
will be populated if an error was thrown before Faraday returned a response. (It will also accept a lambda with arity 1 that is only passedoriginal_response
. This use is deprecated and will be removed in the next major version.)
c.use Circuitbox::FaradayMiddleware, default_value: lambda { |response, error| ... }
identifier
circuit id, defaults to request url
c.use Circuitbox::FaradayMiddleware, identifier: "service_name_circuit"
circuit_breaker_run_options
options passed to the circuit run method, see the main circuitbreaker for those.
conn.get("/api", circuit_breaker_run_options: {})
circuit_breaker_options
options to initialize the circuit with defaults to{ volume_threshold: 10, exceptions: Circuitbox::FaradayMiddleware::DEFAULT_EXCEPTIONS }
c.use Circuitbox::FaradayMiddleware, circuit_breaker_options: {}
open_circuit
lambda determining what response is considered a failure, counting towards the opening of the circuit
c.use Circuitbox::FaradayMiddleware, open_circuit: lambda { |response| response.status >= 500 }
- Circuitbox::ServiceFailureError wraps the original exception that was raised. The behaviour for to_s wasn't exposing this information and was returning the name of class "Circuitbox::ServiceFailureError". Change the behaviour for to_s to indicate this exception is a wrapper around the original exception. sherrry
- Faraday middleware passes two arguments to the
default_value
callback, not just one. First argument is still the error response from Faraday if there is one. Second argument is the exception that caused the call to fail if it failed before Faraday returned a response. Old behaviour is preserved if you pass a lambda that takes just one argument, but this is deprecated and will be removed in the next version of Circuitbox. dwaller
- configuration option for faraday middleware for what should be considered to open the circuit enrico-scalavio
- fix for issue 16, support of in_parallel requests in faraday middlware which were opening the circuit.
- deprecate the run_option
:storage_key
- add
run!
method to raise exception on circuit open and service
- Everything prior to keeping the change log
Add this line to your application's Gemfile:
gem 'circuitbox'
And then execute:
$ bundle
Or install it yourself as:
$ gem install circuitbox
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request