-
Notifications
You must be signed in to change notification settings - Fork 0
/
breaker.go
99 lines (83 loc) · 3 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
// Copyright 2016 The Cockroach Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
// implied. See the License for the specific language governing
// permissions and limitations under the License.
package rpc
import (
"time"
"github.com/cenk/backoff"
"github.com/facebookgo/clock"
"github.com/rubyist/circuitbreaker"
"github.com/cockroachdb/cockroach/pkg/util/hlc"
)
const maxBackoff = time.Second
// breakerClock is an implementation of clock.Clock that internally uses an
// hlc.Clock. It is used to bridge the hlc clock 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.Clock
}
func (c *breakerClock) After(d time.Duration) <-chan time.Time {
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.PhysicalTime()
}
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")
}
var _ clock.Clock = &breakerClock{}
// 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: maxBackoff,
MaxElapsedTime: 0,
Clock: clock,
}
b.Reset()
return b
}
func newBreaker(clock clock.Clock) *circuit.Breaker {
return circuit.NewBreakerWithOptions(&circuit.Options{
BackOff: newBackOff(clock),
Clock: clock,
ShouldTrip: circuit.ThresholdTripFunc(1),
})
}