You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kratos/pkg/net/netutil/breaker/sre_breaker.go

103 lines
2.1 KiB

package breaker
import (
"math"
"math/rand"
"sync"
"sync/atomic"
"time"
"github.com/bilibili/kratos/pkg/ecode"
"github.com/bilibili/kratos/pkg/log"
6 years ago
"github.com/bilibili/kratos/pkg/stat/metric"
)
var (
// rand.New(...) returns a non thread safe object
random = rand.New(rand.NewSource(time.Now().UnixNano()))
lock sync.Mutex
)
// sreBreaker is a sre CircuitBreaker pattern.
type sreBreaker struct {
6 years ago
stat metric.RollingCounter
k float64
request int64
state int32
}
func newSRE(c *Config) Breaker {
6 years ago
counterOpts := metric.RollingCounterOpts{
Size: c.Bucket,
BucketDuration: time.Duration(int64(c.Window) / int64(c.Bucket)),
}
stat := metric.NewRollingCounter(counterOpts)
return &sreBreaker{
6 years ago
stat: stat,
request: c.Request,
k: c.K,
state: StateClosed,
}
}
6 years ago
func (b *sreBreaker) summary() (success int64, total int64) {
b.stat.Reduce(func(iterator metric.Iterator) float64 {
for iterator.Next() {
bucket := iterator.Bucket()
total += bucket.Count
for _, p := range bucket.Points {
success += int64(p)
}
}
return 0
})
return
}
func (b *sreBreaker) Allow() error {
6 years ago
success, total := b.summary()
k := b.k * float64(success)
if log.V(5) {
log.Info("breaker: request: %d, succee: %d, fail: %d", total, success, total-success)
}
// check overflow requests = K * success
if total < b.request || float64(total) < k {
if atomic.LoadInt32(&b.state) == StateOpen {
atomic.CompareAndSwapInt32(&b.state, StateOpen, StateClosed)
}
return nil
}
if atomic.LoadInt32(&b.state) == StateClosed {
atomic.CompareAndSwapInt32(&b.state, StateClosed, StateOpen)
}
dr := math.Max(0, (float64(total)-k)/float64(total+1))
drop := trueOnProba(dr)
if log.V(5) {
log.Info("breaker: drop ratio: %f, drop: %t", dr, drop)
}
if drop {
return ecode.ServiceUnavailable
}
return nil
}
func (b *sreBreaker) MarkSuccess() {
b.stat.Add(1)
}
func (b *sreBreaker) MarkFailed() {
// NOTE: when client reject requets locally, continue add counter let the
// drop ratio higher.
b.stat.Add(0)
}
func trueOnProba(proba float64) (truth bool) {
lock.Lock()
truth = random.Float64() < proba
lock.Unlock()
return
}