-
Notifications
You must be signed in to change notification settings - Fork 487
/
node.go
381 lines (317 loc) · 9.5 KB
/
node.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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
package cluster
import (
"context"
"fmt"
"hash/fnv"
"net/http"
"sync"
"time"
"github.com/go-kit/log"
"github.com/go-kit/log/level"
"github.com/gorilla/mux"
pb "github.com/grafana/agent/pkg/agentproto"
"github.com/grafana/agent/pkg/metrics/cluster/client"
"github.com/grafana/agent/pkg/util"
"github.com/grafana/dskit/backoff"
"github.com/grafana/dskit/kv"
"github.com/grafana/dskit/ring"
"github.com/grafana/dskit/services"
"github.com/prometheus/client_golang/prometheus"
"github.com/weaveworks/common/user"
)
const (
// agentKey is the key used for storing the hash ring.
agentKey = "agent"
)
var backoffConfig = backoff.Config{
MinBackoff: time.Second,
MaxBackoff: 2 * time.Minute,
MaxRetries: 10,
}
// node manages membership within a ring. when a node joins or leaves the ring,
// it will inform other nodes to reshard their workloads. After a node joins
// the ring, it will inform the local service to reshard.
type node struct {
log log.Logger
reg *util.Unregisterer
srv pb.ScrapingServiceServer
mut sync.RWMutex
cfg Config
ring *ring.Ring
lc *ring.Lifecycler
exited bool
reload chan struct{}
}
// newNode creates a new node and registers it to the ring.
func newNode(reg prometheus.Registerer, log log.Logger, cfg Config, s pb.ScrapingServiceServer) (*node, error) {
n := &node{
reg: util.WrapWithUnregisterer(reg),
srv: s,
log: log,
reload: make(chan struct{}, 1),
}
if err := n.ApplyConfig(cfg); err != nil {
return nil, err
}
go n.run()
return n, nil
}
func (n *node) ApplyConfig(cfg Config) error {
n.mut.Lock()
defer n.mut.Unlock()
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Minute)
defer cancel()
// Detect if the config changed.
if util.CompareYAML(n.cfg, cfg) {
return nil
}
if n.exited {
return fmt.Errorf("node already exited")
}
level.Info(n.log).Log("msg", "applying config")
// Shut down old components before re-creating the updated ones.
n.reg.UnregisterAll()
if n.lc != nil {
// Note that this will call performClusterReshard and will block until it
// completes.
err := services.StopAndAwaitTerminated(ctx, n.lc)
if err != nil {
return fmt.Errorf("failed to stop lifecycler: %w", err)
}
n.lc = nil
}
if n.ring != nil {
err := services.StopAndAwaitTerminated(ctx, n.ring)
if err != nil {
return fmt.Errorf("failed to stop ring: %w", err)
}
n.ring = nil
}
if !cfg.Enabled {
n.cfg = cfg
return nil
}
r, err := newRing(cfg.Lifecycler.RingConfig, "agent_viewer", agentKey, n.reg, n.log)
if err != nil {
return fmt.Errorf("failed to create ring: %w", err)
}
if err := services.StartAndAwaitRunning(context.Background(), r); err != nil {
return fmt.Errorf("failed to start ring: %w", err)
}
n.ring = r
lc, err := ring.NewLifecycler(cfg.Lifecycler.LifecyclerConfig, n, "agent", agentKey, false, n.log, prometheus.WrapRegistererWithPrefix("agent_dskit_", n.reg))
if err != nil {
return fmt.Errorf("failed to create lifecycler: %w", err)
}
if err := services.StartAndAwaitRunning(context.Background(), lc); err != nil {
if err := services.StopAndAwaitTerminated(ctx, r); err != nil {
level.Error(n.log).Log("msg", "failed to stop ring when returning error. next config reload will fail", "err", err)
}
return fmt.Errorf("failed to start lifecycler: %w", err)
}
n.lc = lc
n.cfg = cfg
// Reload and reshard the cluster.
n.reload <- struct{}{}
return nil
}
// newRing creates a new Cortex Ring that ignores unhealthy nodes.
func newRing(cfg ring.Config, name, key string, reg prometheus.Registerer, log log.Logger) (*ring.Ring, error) {
codec := ring.GetCodec()
store, err := kv.NewClient(
cfg.KVStore,
codec,
kv.RegistererWithKVName(reg, name+"-ring"),
log,
)
if err != nil {
return nil, err
}
return ring.NewWithStoreClientAndStrategy(cfg, name, key, store, ring.NewIgnoreUnhealthyInstancesReplicationStrategy(), prometheus.WrapRegistererWithPrefix("agent_dskit_", reg), log)
}
// run waits for connection to the ring and kickstarts the join process.
func (n *node) run() {
for range n.reload {
n.mut.RLock()
if err := n.performClusterReshard(context.Background(), true); err != nil {
level.Warn(n.log).Log("msg", "dynamic cluster reshard did not succeed", "err", err)
}
n.mut.RUnlock()
}
level.Info(n.log).Log("msg", "node run loop exiting")
}
// performClusterReshard informs the cluster to immediately trigger a reshard
// of their workloads. if joining is true, the server provided to newNode will
// also be informed.
func (n *node) performClusterReshard(ctx context.Context, joining bool) error {
if n.ring == nil || n.lc == nil {
level.Info(n.log).Log("msg", "node disabled, not resharding")
return nil
}
if n.cfg.ClusterReshardEventTimeout > 0 {
var cancel context.CancelFunc
ctx, cancel = context.WithTimeout(ctx, n.cfg.ClusterReshardEventTimeout)
defer cancel()
}
var (
rs ring.ReplicationSet
err error
)
backoff := backoff.New(ctx, backoffConfig)
for backoff.Ongoing() {
if ctx.Err() != nil {
return ctx.Err()
}
rs, err = n.ring.GetAllHealthy(ring.Read)
if err == nil {
break
}
backoff.Wait()
}
if len(rs.Instances) > 0 {
level.Info(n.log).Log("msg", "informing remote nodes to reshard")
}
// These are not in the go routine below due to potential race condition with n.lc.addr
_, err = rs.Do(ctx, 500*time.Millisecond, func(c context.Context, id *ring.InstanceDesc) (interface{}, error) {
// Skip over ourselves.
if id.Addr == n.lc.Addr {
return nil, nil
}
notifyCtx := user.InjectOrgID(c, "fake")
return nil, n.notifyReshard(notifyCtx, id)
})
if err != nil {
level.Error(n.log).Log("msg", "notifying other nodes failed", "err", err)
}
if joining {
level.Info(n.log).Log("msg", "running local reshard")
if _, err := n.srv.Reshard(ctx, &pb.ReshardRequest{}); err != nil {
level.Warn(n.log).Log("msg", "dynamic local reshard did not succeed", "err", err)
}
}
return err
}
// notifyReshard informs an individual node to reshard.
func (n *node) notifyReshard(ctx context.Context, id *ring.InstanceDesc) error {
cli, err := client.New(n.cfg.Client, id.Addr)
if err != nil {
return err
}
defer cli.Close()
level.Info(n.log).Log("msg", "attempting to notify remote agent to reshard", "addr", id.Addr)
backoff := backoff.New(ctx, backoffConfig)
for backoff.Ongoing() {
if ctx.Err() != nil {
return ctx.Err()
}
_, err := cli.Reshard(ctx, &pb.ReshardRequest{})
if err == nil {
break
}
level.Warn(n.log).Log("msg", "reshard notification attempt failed", "addr", id.Addr, "err", err, "attempt", backoff.NumRetries())
backoff.Wait()
}
return backoff.Err()
}
// WaitJoined waits for the node the join the cluster and enter the
// ACTIVE state.
func (n *node) WaitJoined(ctx context.Context) error {
n.mut.RLock()
defer n.mut.RUnlock()
level.Info(n.log).Log("msg", "waiting for the node to join the cluster")
defer level.Info(n.log).Log("msg", "node has joined the cluster")
if n.ring == nil || n.lc == nil {
return fmt.Errorf("node disabled")
}
return waitJoined(ctx, agentKey, n.ring.KVClient, n.lc.ID)
}
func waitJoined(ctx context.Context, key string, kvClient kv.Client, id string) error {
kvClient.WatchKey(ctx, key, func(value interface{}) bool {
if value == nil {
return true
}
desc := value.(*ring.Desc)
for ingID, ing := range desc.Ingesters {
if ingID == id && ing.State == ring.ACTIVE {
return false
}
}
return true
})
return ctx.Err()
}
func (n *node) WireAPI(r *mux.Router) {
r.HandleFunc("/debug/ring", func(rw http.ResponseWriter, r *http.Request) {
n.mut.RLock()
defer n.mut.RUnlock()
if n.ring == nil {
http.NotFoundHandler().ServeHTTP(rw, r)
return
}
n.ring.ServeHTTP(rw, r)
})
}
// Stop stops the node and cancels it from running. The node cannot be used
// again once Stop is called.
func (n *node) Stop() error {
n.mut.Lock()
defer n.mut.Unlock()
if n.exited {
return fmt.Errorf("node already exited")
}
n.exited = true
level.Info(n.log).Log("msg", "shutting down node")
// Shut down dependencies. The lifecycler *MUST* be shut down first since n.ring is
// used during the shutdown process to inform other nodes to reshard.
//
// Note that stopping the lifecycler will call performClusterReshard and will block
// until it completes.
var (
firstError error
deps []services.Service
)
if n.lc != nil {
deps = append(deps, n.lc)
}
if n.ring != nil {
deps = append(deps, n.ring)
}
for _, dep := range deps {
err := services.StopAndAwaitTerminated(context.Background(), dep)
if err != nil && firstError == nil {
firstError = err
}
}
close(n.reload)
level.Info(n.log).Log("msg", "node shut down")
return firstError
}
// Flush implements ring.FlushTransferer. It's a no-op.
func (n *node) Flush() {}
// TransferOut implements ring.FlushTransferer. It connects to all other healthy agents and
// tells them to reshard. TransferOut should NOT be called manually unless the mutex is
// held.
func (n *node) TransferOut(ctx context.Context) error {
return n.performClusterReshard(ctx, false)
}
// Owns checks to see if a key is owned by this node. owns will return
// an error if the ring is empty or if there aren't enough healthy nodes.
func (n *node) Owns(key string) (bool, error) {
n.mut.RLock()
defer n.mut.RUnlock()
rs, err := n.ring.Get(keyHash(key), ring.Write, nil, nil, nil)
if err != nil {
return false, err
}
for _, r := range rs.Instances {
if r.Addr == n.lc.Addr {
return true, nil
}
}
return false, nil
}
func keyHash(key string) uint32 {
h := fnv.New32()
_, _ = h.Write([]byte(key))
return h.Sum32()
}