go-pattern-examples/resiliency/06_circuit_breaker/circuit_func_closure.go

72 lines
2.1 KiB
Go
Raw Normal View History

2020-05-22 08:21:54 +03:00
/*
* @Description: https://github.com/crazybber
* @Author: Edward
* @Date: 2020-05-22 12:42:34
* @Last Modified by: Edward
2020-05-22 10:31:28 +03:00
* @Last Modified time: 2020-05-22 14:35:00
2020-05-22 08:21:54 +03:00
*/
package circuit
import (
"context"
"time"
)
////////////////////////////////
//way 2 简单的函数式断路器
// 一个func实例作为一个Breaker 允许多个worker(即goroutine)同时访问
// 理论上讲也需要考虑同步问题
2020-05-22 10:31:28 +03:00
// 当前的设计思路,非常简单:
// 1、不考虑三种状态之间的转换只靠两种状态电路打开与电路关闭
// 2、当累计失败到达一定失败次数就端开请求(打开电路),并延迟一定的时间再允许请求
2020-05-22 08:21:54 +03:00
////////////////////////////////
2020-05-22 10:31:28 +03:00
//states of CircuitBreaker
//states: closed --->open ---> half open --> closed
const (
UnknownState OperationState = iota
FailureState
SuccessState
)
2020-05-22 08:21:54 +03:00
//Circuit of action stream,this is actually to do something.
//Circuit hold the really action
type Circuit func(context.Context) error
2020-05-22 10:31:28 +03:00
var canRetry = func(cnt counters, failureThreshold uint32) bool {
backoffLevel := cnt.ConsecutiveFailures - failureThreshold
// Calculates when should the circuit breaker resume propagating requests
// to the service
shouldRetryAt := cnt.LastActivity().Add(time.Second << backoffLevel)
return time.Now().After(shouldRetryAt)
}
//Breaker return a closure wrapper to hold request
2020-05-22 08:21:54 +03:00
func Breaker(c Circuit, failureThreshold uint32) Circuit {
2020-05-22 10:31:28 +03:00
//闭包内部的全局计数器 和状态标志
2020-05-22 08:21:54 +03:00
cnt := counters{}
//ctx can be used hold parameters
return func(ctx context.Context) error {
if cnt.ConsecutiveFailures >= failureThreshold {
2020-05-22 10:31:28 +03:00
if !canRetry(cnt, failureThreshold) {
2020-05-22 08:21:54 +03:00
// Fails fast instead of propagating requests to the circuit since
// not enough time has passed since the last failure to retry
return ErrServiceUnavailable
}
}
// Unless the failure threshold is exceeded the wrapped service mimics the
// old behavior and the difference in behavior is seen after consecutive failures
2020-05-22 10:31:28 +03:00
if err := c(ctx); err != nil {
cnt.Count(FailureState)
return err
2020-05-22 08:21:54 +03:00
}
2020-05-22 10:31:28 +03:00
cnt.Count(SuccessState)
2020-05-22 08:21:54 +03:00
return nil
}
}