-
Notifications
You must be signed in to change notification settings - Fork 453
/
watcher.go
179 lines (154 loc) · 4.37 KB
/
watcher.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
// Copyright (c) 2017 Uber Technologies, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
package util
import (
"bytes"
"fmt"
"sort"
"sync"
"time"
m3emnode "github.com/m3db/m3/src/dbnode/x/m3em/node"
xclock "github.com/m3db/m3/src/x/clock"
"go.uber.org/zap"
)
type nodesWatcher struct {
sync.Mutex
pending map[string]m3emnode.Node
logger *zap.Logger
reportingInterval time.Duration
}
// NewNodesWatcher creates a new NodeWatcher
func NewNodesWatcher(
nodes []m3emnode.Node,
logger *zap.Logger,
reportingInterval time.Duration,
) NodesWatcher {
watcher := &nodesWatcher{
pending: make(map[string]m3emnode.Node, len(nodes)),
logger: logger,
reportingInterval: reportingInterval,
}
for _, node := range nodes {
watcher.addInstanceWithLock(node)
}
return watcher
}
func (nw *nodesWatcher) addInstanceWithLock(node m3emnode.Node) {
nw.pending[node.ID()] = node
}
func (nw *nodesWatcher) removeInstance(id string) {
nw.Lock()
defer nw.Unlock()
delete(nw.pending, id)
}
func (nw *nodesWatcher) Close() error {
return nil
}
func (nw *nodesWatcher) Pending() []m3emnode.Node {
nw.Lock()
defer nw.Unlock()
pending := make([]m3emnode.Node, 0, len(nw.pending))
for _, node := range nw.pending {
pending = append(pending, node)
}
sort.Sort(nodesByID(pending))
return pending
}
func (nw *nodesWatcher) pendingStatus() (int, string) {
nw.Lock()
defer nw.Unlock()
numPending := 0
var buffer bytes.Buffer
for _, node := range nw.pending {
numPending++
if numPending == 1 {
buffer.WriteString(node.ID())
} else {
buffer.WriteString(fmt.Sprintf(", %s", node.ID()))
}
}
return numPending, buffer.String()
}
func (nw *nodesWatcher) PendingAsError() error {
numPending, pendingString := nw.pendingStatus()
if numPending == 0 {
return nil
}
return fmt.Errorf("%d nodes not bootstrapped: %s", numPending, pendingString)
}
func (nw *nodesWatcher) WaitUntilAll(p NodePredicate, timeout time.Duration) bool {
// kick of go-routines to check condition for each pending node
pending := nw.Pending()
var wg sync.WaitGroup
wg.Add(len(pending))
for i := range pending {
n := pending[i]
go func(node m3emnode.Node) {
defer wg.Done()
if cond := xclock.WaitUntil(func() bool { return p(node) }, timeout); cond {
nw.logger.Info("finished bootstrapping", zap.String("nodeID", node.ID()))
nw.removeInstance(node.ID())
}
}(n)
}
// kick of a go-routine to log information
doneCh := make(chan struct{})
closeCh := make(chan struct{})
reporter := time.NewTicker(nw.reportingInterval)
defer func() {
reporter.Stop()
close(closeCh)
close(doneCh)
}()
go func() {
for {
select {
case <-closeCh:
doneCh <- struct{}{}
return
case <-reporter.C:
numPending, pendingString := nw.pendingStatus()
nw.logger.Info("numPending", zap.Int("num", numPending), zap.String("instances", pendingString))
if numPending == 0 {
doneCh <- struct{}{}
return
}
}
}
}()
// wait until all nodes complete or timeout
wg.Wait()
// cleanup
closeCh <- struct{}{}
<-doneCh
// report if all nodes completed
numPending, _ := nw.pendingStatus()
return numPending == 0
}
type nodesByID []m3emnode.Node
func (n nodesByID) Len() int {
return len(n)
}
func (n nodesByID) Less(i, j int) bool {
return n[i].ID() < n[j].ID()
}
func (n nodesByID) Swap(i, j int) {
n[i], n[j] = n[j], n[i]
}