All Projects → sony → Gobreaker

sony / Gobreaker

Licence: mit
Circuit Breaker implemented in Go

Programming Languages

go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to Gobreaker

Manba
HTTP API Gateway
Stars: ✭ 3,000 (+60.69%)
Mutual labels:  microservice, circuit-breaker
Tree Gateway
This is a full featured and free API Gateway
Stars: ✭ 160 (-91.43%)
Mutual labels:  microservice, circuit-breaker
Samples
Steeltoe samples and reference application collection
Stars: ✭ 586 (-68.61%)
Mutual labels:  microservice, circuit-breaker
Go Chassis
a microservice framework for rapid development of micro services in Go with rich eco-system
Stars: ✭ 2,428 (+30.05%)
Mutual labels:  microservice, circuit-breaker
Sentinel
A powerful flow control component enabling reliability, resilience and monitoring for microservices. (面向云原生微服务的高可用流控防护组件)
Stars: ✭ 18,071 (+867.92%)
Mutual labels:  microservice, circuit-breaker
Ganesha
🐘 A Circuit Breaker pattern implementation for PHP applications.
Stars: ✭ 384 (-79.43%)
Mutual labels:  microservice, circuit-breaker
Istio
Connect, secure, control, and observe services.
Stars: ✭ 28,970 (+1451.69%)
Mutual labels:  microservice, circuit-breaker
Spinal
A node.js microservices framework that designs for scalability, simple to code and easy to maintenance
Stars: ✭ 104 (-94.43%)
Mutual labels:  microservice
Vaadin Microservices Demo
A microservices example developed with Spring Cloud and Vaadin
Stars: ✭ 108 (-94.22%)
Mutual labels:  microservice
Loafer
Asynchronous message dispatcher - Currently using asyncio and amazon SQS
Stars: ✭ 104 (-94.43%)
Mutual labels:  microservice
Orion
Orion is a small lightweight framework written around grpc/protobuf with the aim to shorten time to build microservices at Carousell.
Stars: ✭ 101 (-94.59%)
Mutual labels:  microservice
Surging.hero
基于Surging框架实现的权限管理系统
Stars: ✭ 105 (-94.38%)
Mutual labels:  microservice
Swagger Combined
Combines all swagger documents in microservices
Stars: ✭ 108 (-94.22%)
Mutual labels:  microservice
Electron Render Service
Microservice for rendering PDF/PNG/JPEG from HTML with Electron
Stars: ✭ 104 (-94.43%)
Mutual labels:  microservice
Python
📃 A template for creating Open Microservices with Python
Stars: ✭ 111 (-94.05%)
Mutual labels:  microservice
Staffjoy
微服务(Microservices)和云原生架构教学案例项目,基于Spring Boot和Kubernetes技术栈
Stars: ✭ 1,391 (-25.5%)
Mutual labels:  microservice
Netpro
🌈An enhanced version of asp.netcore,Support for netcore3.1
Stars: ✭ 112 (-94%)
Mutual labels:  microservice
Health Go
Library to provide basic healthcheck functionality to Go applications.
Stars: ✭ 109 (-94.16%)
Mutual labels:  microservice
Micro
Asynchronous HTTP microservices
Stars: ✭ 9,987 (+434.92%)
Mutual labels:  microservice
Pdf
Simple http microservice that converts Word documents to PDF
Stars: ✭ 107 (-94.27%)
Mutual labels:  microservice

gobreaker

GoDoc

gobreaker implements the Circuit Breaker pattern in Go.

Installation

go get github.com/sony/gobreaker

Usage

The struct CircuitBreaker is a state machine to prevent sending requests that are likely to fail. The function NewCircuitBreaker creates a new CircuitBreaker.

func NewCircuitBreaker(st Settings) *CircuitBreaker

You can configure CircuitBreaker by the struct Settings:

type Settings struct {
	Name          string
	MaxRequests   uint32
	Interval      time.Duration
	Timeout       time.Duration
	ReadyToTrip   func(counts Counts) bool
	OnStateChange func(name string, from State, to State)
	IsSuccessful  func(err error) bool
}
  • Name is the name of the CircuitBreaker.

  • MaxRequests is the maximum number of requests allowed to pass through when the CircuitBreaker is half-open. If MaxRequests is 0, CircuitBreaker allows only 1 request.

  • Interval is the cyclic period of the closed state for CircuitBreaker to clear the internal Counts, described later in this section. If Interval is 0, CircuitBreaker doesn't clear the internal Counts during the closed state.

  • Timeout is the period of the open state, after which the state of CircuitBreaker becomes half-open. If Timeout is 0, the timeout value of CircuitBreaker is set to 60 seconds.

  • ReadyToTrip is called with a copy of Counts whenever a request fails in the closed state. If ReadyToTrip returns true, CircuitBreaker will be placed into the open state. If ReadyToTrip is nil, default ReadyToTrip is used. Default ReadyToTrip returns true when the number of consecutive failures is more than 5.

  • OnStateChange is called whenever the state of CircuitBreaker changes.

  • IsSuccessful is called with the error returned from a request. If IsSuccessful returns true, the error is counted as a success. Otherwise the error is counted as a failure. If IsSuccessful is nil, default IsSuccessful is used, which returns false for all non-nil errors.

The struct Counts holds the numbers of requests and their successes/failures:

type Counts struct {
	Requests             uint32
	TotalSuccesses       uint32
	TotalFailures        uint32
	ConsecutiveSuccesses uint32
	ConsecutiveFailures  uint32
}

CircuitBreaker clears the internal Counts either on the change of the state or at the closed-state intervals. Counts ignores the results of the requests sent before clearing.

CircuitBreaker can wrap any function to send a request:

func (cb *CircuitBreaker) Execute(req func() (interface{}, error)) (interface{}, error)

The method Execute runs the given request if CircuitBreaker accepts it. Execute returns an error instantly if CircuitBreaker rejects the request. Otherwise, Execute returns the result of the request. If a panic occurs in the request, CircuitBreaker handles it as an error and causes the same panic again.

Example

var cb *breaker.CircuitBreaker

func Get(url string) ([]byte, error) {
	body, err := cb.Execute(func() (interface{}, error) {
		resp, err := http.Get(url)
		if err != nil {
			return nil, err
		}

		defer resp.Body.Close()
		body, err := ioutil.ReadAll(resp.Body)
		if err != nil {
			return nil, err
		}

		return body, nil
	})
	if err != nil {
		return nil, err
	}

	return body.([]byte), nil
}

See example for details.

License

The MIT License (MIT)

See LICENSE for details.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].