Codebase list golang-github-go-kit-kit / d190db7c-82d2-4bba-bfa1-7c00a8b5ef75/main circuitbreaker / doc.go
d190db7c-82d2-4bba-bfa1-7c00a8b5ef75/main

Tree @d190db7c-82d2-4bba-bfa1-7c00a8b5ef75/main (Download .tar.gz)

doc.go @d190db7c-82d2-4bba-bfa1-7c00a8b5ef75/mainraw · history · blame

// Package circuitbreaker implements the circuit breaker pattern.
//
// Circuit breakers prevent thundering herds, and improve resiliency against
// intermittent errors. Every client-side endpoint should be wrapped in a
// circuit breaker.
//
// We provide several implementations in this package, but if you're looking
// for guidance, Gobreaker is probably the best place to start.  It has a
// simple and intuitive API, and is well-tested.
package circuitbreaker