-
Notifications
You must be signed in to change notification settings - Fork 3.8k
/
breaker.go
119 lines (101 loc) · 3.69 KB
/
breaker.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
// Copyright 2016 The Cockroach Authors.
//
// Use of this software is governed by the Business Source License
// included in the file licenses/BSL.txt.
//
// As of the Change Date specified in that file, in accordance with
// the Business Source License, use of this software will be governed
// by the Apache License, Version 2.0, included in the file
// licenses/APL.txt.
package rpc
import (
"context"
"time"
"github.com/cenkalti/backoff"
circuit "github.com/cockroachdb/circuitbreaker"
"github.com/cockroachdb/cockroach/pkg/util/hlc"
"github.com/cockroachdb/cockroach/pkg/util/log"
"github.com/facebookgo/clock"
)
const rpcBreakerMaxBackoff = time.Second
// breakerClock is an implementation of clock.Clock that internally uses an
// hlc.WallClock. It is used to adapt the WallClock to the circuit breaker
// clocks. Note that it only implements the After() and Now() methods needed by
// circuit breakers and backoffs.
type breakerClock struct {
clock hlc.WallClock
}
var _ clock.Clock = &breakerClock{}
func (c *breakerClock) After(d time.Duration) <-chan time.Time {
// TODO(andrei): This is broken, in that the returned timer has nothing to do
// with c.clock. Fix this once hlc.HybridManualClock implements
// timeutil.TimeSource, which will allow the breakerClock to wrap a
// timeutil.TimeSource, and not a
return time.After(d)
}
func (c *breakerClock) AfterFunc(d time.Duration, f func()) *clock.Timer {
panic("unimplemented")
}
func (c *breakerClock) Now() time.Time {
return c.clock.Now()
}
func (c *breakerClock) Sleep(d time.Duration) {
panic("unimplemented")
}
func (c *breakerClock) Tick(d time.Duration) <-chan time.Time {
panic("unimplemented")
}
func (c *breakerClock) Ticker(d time.Duration) *clock.Ticker {
panic("unimplemented")
}
func (c *breakerClock) Timer(d time.Duration) *clock.Timer {
panic("unimplemented")
}
// newBackOff creates a new exponential backoff properly configured for RPC
// connection backoff.
func newBackOff(clock backoff.Clock) backoff.BackOff {
// This exponential backoff limits the circuit breaker to 1 second
// intervals between successive attempts to resolve a node address
// and connect via GRPC.
//
// NB (nota Ben): MaxInterval should be less than the Raft election timeout
// (1.5s) to avoid disruptions. A newly restarted node will be in follower
// mode with no knowledge of the Raft leader. If it doesn't hear from a
// leader before the election timeout expires, it will start to campaign,
// which can be disruptive. Therefore the leader needs to get in touch (via
// Raft heartbeats) with such nodes within one election timeout of their
// restart, which won't happen if their backoff is too high.
b := &backoff.ExponentialBackOff{
InitialInterval: 500 * time.Millisecond,
RandomizationFactor: 0.5,
Multiplier: 1.5,
MaxInterval: rpcBreakerMaxBackoff,
MaxElapsedTime: 0,
Clock: clock,
}
b.Reset()
return b
}
func newBreaker(ctx context.Context, name string, clock clock.Clock) *circuit.Breaker {
return circuit.NewBreakerWithOptions(&circuit.Options{
Name: name,
BackOff: newBackOff(clock),
Clock: clock,
ShouldTrip: circuit.ThresholdTripFunc(1),
Logger: breakerLogger{ctx},
})
}
// breakerLogger implements circuit.Logger to expose logging from the
// circuitbreaker package. Debugf is logged with a vmodule level of 2 so to see
// the circuitbreaker debug messages set --vmodule=breaker=2
type breakerLogger struct {
ctx context.Context
}
func (r breakerLogger) Debugf(format string, v ...interface{}) {
if log.V(2) {
log.Dev.InfofDepth(r.ctx, 1, format, v...)
}
}
func (r breakerLogger) Infof(format string, v ...interface{}) {
log.Ops.InfofDepth(r.ctx, 1, format, v...)
}