-
Notifications
You must be signed in to change notification settings - Fork 3.8k
/
node_liveness.go
989 lines (905 loc) · 32 KB
/
node_liveness.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
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
// 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 storage
import (
"context"
"fmt"
"sync/atomic"
"time"
"github.com/cockroachdb/cockroach/pkg/base"
"github.com/cockroachdb/cockroach/pkg/gossip"
"github.com/cockroachdb/cockroach/pkg/internal/client"
"github.com/cockroachdb/cockroach/pkg/keys"
"github.com/cockroachdb/cockroach/pkg/roachpb"
"github.com/cockroachdb/cockroach/pkg/settings/cluster"
"github.com/cockroachdb/cockroach/pkg/storage/closedts"
"github.com/cockroachdb/cockroach/pkg/storage/closedts/ctpb"
"github.com/cockroachdb/cockroach/pkg/storage/engine"
"github.com/cockroachdb/cockroach/pkg/storage/storagepb"
"github.com/cockroachdb/cockroach/pkg/util/contextutil"
"github.com/cockroachdb/cockroach/pkg/util/hlc"
"github.com/cockroachdb/cockroach/pkg/util/log"
"github.com/cockroachdb/cockroach/pkg/util/metric"
"github.com/cockroachdb/cockroach/pkg/util/retry"
"github.com/cockroachdb/cockroach/pkg/util/stop"
"github.com/cockroachdb/cockroach/pkg/util/syncutil"
"github.com/cockroachdb/cockroach/pkg/util/timeutil"
"github.com/cockroachdb/cockroach/pkg/util/tracing"
"github.com/pkg/errors"
)
var (
// ErrNoLivenessRecord is returned when asking for liveness information
// about a node for which nothing is known.
ErrNoLivenessRecord = errors.New("node not in the liveness table")
errChangeDecommissioningFailed = errors.New("failed to change the decommissioning status")
// ErrEpochIncremented is returned when a heartbeat request fails because
// the underlying liveness record has had its epoch incremented.
ErrEpochIncremented = errors.New("heartbeat failed on epoch increment")
errLiveClockNotLive = errors.New("not live")
)
type errRetryLiveness struct {
error
}
func (e *errRetryLiveness) Cause() error {
return e.error
}
func (e *errRetryLiveness) Error() string {
return fmt.Sprintf("%T: %s", *e, e.error)
}
// Node liveness metrics counter names.
var (
metaLiveNodes = metric.Metadata{
Name: "liveness.livenodes",
Help: "Number of live nodes in the cluster (will be 0 if this node is not itself live)",
Measurement: "Nodes",
Unit: metric.Unit_COUNT,
}
metaHeartbeatSuccesses = metric.Metadata{
Name: "liveness.heartbeatsuccesses",
Help: "Number of successful node liveness heartbeats from this node",
Measurement: "Messages",
Unit: metric.Unit_COUNT,
}
metaHeartbeatFailures = metric.Metadata{
Name: "liveness.heartbeatfailures",
Help: "Number of failed node liveness heartbeats from this node",
Measurement: "Messages",
Unit: metric.Unit_COUNT,
}
metaEpochIncrements = metric.Metadata{
Name: "liveness.epochincrements",
Help: "Number of times this node has incremented its liveness epoch",
Measurement: "Epochs",
Unit: metric.Unit_COUNT,
}
metaHeartbeatLatency = metric.Metadata{
Name: "liveness.heartbeatlatency",
Help: "Node liveness heartbeat latency",
Measurement: "Latency",
Unit: metric.Unit_NANOSECONDS,
}
)
// LivenessMetrics holds metrics for use with node liveness activity.
type LivenessMetrics struct {
LiveNodes *metric.Gauge
HeartbeatSuccesses *metric.Counter
HeartbeatFailures *metric.Counter
EpochIncrements *metric.Counter
HeartbeatLatency *metric.Histogram
}
// IsLiveCallback is invoked when a node's IsLive state changes to true.
// Callbacks can be registered via NodeLiveness.RegisterCallback().
type IsLiveCallback func(nodeID roachpb.NodeID)
// HeartbeatCallback is invoked whenever this node updates its own liveness status,
// indicating that it is alive.
type HeartbeatCallback func(context.Context)
// NodeLiveness encapsulates information on node liveness and provides
// an API for querying, updating, and invalidating node
// liveness. Nodes periodically "heartbeat" the range holding the node
// liveness system table to indicate that they're available. The
// resulting liveness information is used to ignore unresponsive nodes
// while making range quiescence decisions, as well as for efficient,
// node liveness epoch-based range leases.
type NodeLiveness struct {
ambientCtx log.AmbientContext
clock *hlc.Clock
db *client.DB
engines []engine.Engine
gossip *gossip.Gossip
livenessThreshold time.Duration
heartbeatInterval time.Duration
selfSem chan struct{}
st *cluster.Settings
otherSem chan struct{}
// heartbeatPaused contains an atomically-swapped number representing a bool
// (1 or 0). heartbeatToken is a channel containing a token which is taken
// when heartbeating or when pausing the heartbeat. Used for testing.
heartbeatPaused uint32
heartbeatToken chan struct{}
metrics LivenessMetrics
mu struct {
syncutil.RWMutex
callbacks []IsLiveCallback
nodes map[roachpb.NodeID]storagepb.Liveness
heartbeatCallback HeartbeatCallback
}
}
// NewNodeLiveness returns a new instance of NodeLiveness configured
// with the specified gossip instance.
func NewNodeLiveness(
ambient log.AmbientContext,
clock *hlc.Clock,
db *client.DB,
engines []engine.Engine,
g *gossip.Gossip,
livenessThreshold time.Duration,
renewalDuration time.Duration,
st *cluster.Settings,
histogramWindow time.Duration,
) *NodeLiveness {
nl := &NodeLiveness{
ambientCtx: ambient,
clock: clock,
db: db,
engines: engines,
gossip: g,
livenessThreshold: livenessThreshold,
heartbeatInterval: livenessThreshold - renewalDuration,
selfSem: make(chan struct{}, 1),
st: st,
otherSem: make(chan struct{}, 1),
heartbeatToken: make(chan struct{}, 1),
}
nl.metrics = LivenessMetrics{
LiveNodes: metric.NewFunctionalGauge(metaLiveNodes, nl.numLiveNodes),
HeartbeatSuccesses: metric.NewCounter(metaHeartbeatSuccesses),
HeartbeatFailures: metric.NewCounter(metaHeartbeatFailures),
EpochIncrements: metric.NewCounter(metaEpochIncrements),
HeartbeatLatency: metric.NewLatency(metaHeartbeatLatency, histogramWindow),
}
nl.mu.nodes = map[roachpb.NodeID]storagepb.Liveness{}
nl.heartbeatToken <- struct{}{}
livenessRegex := gossip.MakePrefixPattern(gossip.KeyNodeLivenessPrefix)
nl.gossip.RegisterCallback(livenessRegex, nl.livenessGossipUpdate)
return nl
}
var errNodeDrainingSet = errors.New("node is already draining")
func (nl *NodeLiveness) sem(nodeID roachpb.NodeID) chan struct{} {
if nodeID == nl.gossip.NodeID.Get() {
return nl.selfSem
}
return nl.otherSem
}
// SetDraining attempts to update this node's liveness record to put itself
// into the draining state.
func (nl *NodeLiveness) SetDraining(ctx context.Context, drain bool) {
ctx = nl.ambientCtx.AnnotateCtx(ctx)
for r := retry.StartWithCtx(ctx, base.DefaultRetryOptions()); r.Next(); {
liveness, err := nl.Self()
if err != nil && err != ErrNoLivenessRecord {
log.Errorf(ctx, "unexpected error getting liveness: %s", err)
}
if err := nl.setDrainingInternal(ctx, liveness, drain); err == nil {
return
}
}
}
// SetDecommissioning runs a best-effort attempt of marking the the liveness
// record as decommissioning. It returns whether the function committed a
// transaction that updated the liveness record.
func (nl *NodeLiveness) SetDecommissioning(
ctx context.Context, nodeID roachpb.NodeID, decommission bool,
) (changeCommitted bool, err error) {
ctx = nl.ambientCtx.AnnotateCtx(ctx)
attempt := func() (bool, error) {
// Allow only one decommissioning attempt in flight per node at a time.
// This is required for correct results since we may otherwise race with
// concurrent `IncrementEpoch` calls and get stuck in a situation in
// which the cached liveness is has decommissioning=false while it's
// really true, and that means that SetDecommissioning becomes a no-op
// (which is correct) but that our cached liveness never updates to
// reflect that.
//
// See https://github.com/cockroachdb/cockroach/issues/17995.
sem := nl.sem(nodeID)
select {
case sem <- struct{}{}:
case <-ctx.Done():
return false, ctx.Err()
}
defer func() {
<-sem
}()
// We need the current liveness in each iteration.
//
// We ignore any liveness record in Gossip because we may have to fall back
// to the KV store anyway. The scenario in which this is needed is:
// - kill node 2 and stop node 1
// - wait for node 2's liveness record's Gossip entry to expire on all surviving nodes
// - restart node 1; it'll never see node 2 in `GetLiveness` unless the whole
// node liveness span gets regossiped (unlikely if it wasn't the lease holder
// for that span)
// - can't decommission node 2 from node 1 without KV fallback.
//
// See #20863.
//
// NB: this also de-flakes TestNodeLivenessDecommissionAbsent; running
// decommissioning commands in a tight loop on different nodes sometimes
// results in unintentional no-ops (due to the Gossip lag); this could be
// observed by users in principle, too.
var oldLiveness storagepb.Liveness
if err := nl.db.GetProto(ctx, keys.NodeLivenessKey(nodeID), &oldLiveness); err != nil {
return false, errors.Wrap(err, "unable to get liveness")
}
if (oldLiveness == storagepb.Liveness{}) {
return false, ErrNoLivenessRecord
}
// We may have discovered a Liveness not yet received via Gossip. Offer it
// to make sure that when we actually try to update the liveness, the
// previous view is correct. This, too, is required to de-flake
// TestNodeLivenessDecommissionAbsent.
nl.maybeUpdate(oldLiveness)
return nl.setDecommissioningInternal(ctx, nodeID, &oldLiveness, decommission)
}
for {
changeCommitted, err := attempt()
if errors.Cause(err) == errChangeDecommissioningFailed {
continue // expected when epoch incremented
}
return changeCommitted, err
}
}
func (nl *NodeLiveness) setDrainingInternal(
ctx context.Context, liveness *storagepb.Liveness, drain bool,
) error {
nodeID := nl.gossip.NodeID.Get()
sem := nl.sem(nodeID)
// Allow only one attempt to set the draining field at a time.
select {
case sem <- struct{}{}:
case <-ctx.Done():
return ctx.Err()
}
defer func() {
<-sem
}()
update := livenessUpdate{
Liveness: storagepb.Liveness{
NodeID: nodeID,
Epoch: 1,
},
}
if liveness != nil {
update.Liveness = *liveness
}
update.Draining = drain
update.ignoreCache = true
if err := nl.updateLiveness(ctx, update, liveness, func(actual storagepb.Liveness) error {
nl.maybeUpdate(actual)
if actual.Draining == update.Draining {
return errNodeDrainingSet
}
return errors.New("failed to update liveness record")
}); err != nil {
if err == errNodeDrainingSet {
return nil
}
return err
}
nl.maybeUpdate(update.Liveness)
return nil
}
type livenessUpdate struct {
storagepb.Liveness
// When ignoreCache is set, we won't assume that our in-memory cached version
// of the liveness record is accurate and will use a CPut on the liveness
// table with whatever the client supplied. This is used for operations that
// don't want to deal with the inconsistencies of using the cache.
ignoreCache bool
}
func (nl *NodeLiveness) setDecommissioningInternal(
ctx context.Context, nodeID roachpb.NodeID, liveness *storagepb.Liveness, decommission bool,
) (changeCommitted bool, err error) {
update := livenessUpdate{
Liveness: storagepb.Liveness{
NodeID: nodeID,
Epoch: 1,
},
}
if liveness != nil {
update.Liveness = *liveness
}
update.Decommissioning = decommission
update.ignoreCache = true
var conditionFailed bool
if err := nl.updateLiveness(ctx, update, liveness, func(actual storagepb.Liveness) error {
conditionFailed = true
if actual.Decommissioning == update.Decommissioning {
return nil
}
return errChangeDecommissioningFailed
}); err != nil {
return false, err
}
committed := !conditionFailed && liveness.Decommissioning != decommission
return committed, nil
}
// GetLivenessThreshold returns the maximum duration between heartbeats
// before a node is considered not-live.
func (nl *NodeLiveness) GetLivenessThreshold() time.Duration {
return nl.livenessThreshold
}
// IsLive returns whether or not the specified node is considered live based on
// whether or not its liveness has expired regardless of the liveness status. It
// is an error if the specified node is not in the local liveness table.
func (nl *NodeLiveness) IsLive(nodeID roachpb.NodeID) (bool, error) {
liveness, err := nl.GetLiveness(nodeID)
if err != nil {
return false, err
}
return liveness.IsLive(nl.clock.Now(), nl.clock.MaxOffset()), nil
}
// IsHealthy returns whether or not the specified node IsLive and is in a LIVE
// state, i.e. not draining, decommissioning, or otherwise unhealthy.
func (nl *NodeLiveness) IsHealthy(nodeID roachpb.NodeID) (bool, error) {
liveness, err := nl.GetLiveness(nodeID)
if err != nil {
return false, err
}
ls := liveness.LivenessStatus(
nl.clock.Now().GoTime(),
nl.GetLivenessThreshold(),
nl.clock.MaxOffset(),
)
return ls == storagepb.NodeLivenessStatus_LIVE, nil
}
// StartHeartbeat starts a periodic heartbeat to refresh this node's
// last heartbeat in the node liveness table. The optionally provided
// HeartbeatCallback will be invoked whenever this node updates its own liveness.
func (nl *NodeLiveness) StartHeartbeat(
ctx context.Context, stopper *stop.Stopper, alive HeartbeatCallback,
) {
log.VEventf(ctx, 1, "starting liveness heartbeat")
retryOpts := base.DefaultRetryOptions()
retryOpts.Closer = stopper.ShouldQuiesce()
nl.mu.RLock()
nl.mu.heartbeatCallback = alive
nl.mu.RUnlock()
stopper.RunWorker(ctx, func(context.Context) {
ambient := nl.ambientCtx
ambient.AddLogTag("hb", nil)
ctx, cancel := stopper.WithCancelOnStop(context.Background())
defer cancel()
ctx, sp := ambient.AnnotateCtxWithSpan(ctx, "liveness heartbeat loop")
defer sp.Finish()
incrementEpoch := true
ticker := time.NewTicker(nl.heartbeatInterval)
defer ticker.Stop()
for {
select {
case <-nl.heartbeatToken:
case <-stopper.ShouldStop():
return
}
// Give the context a timeout approximately as long as the time we
// have left before our liveness entry expires.
if err := contextutil.RunWithTimeout(ctx, "node liveness heartbeat", nl.livenessThreshold-nl.heartbeatInterval,
func(ctx context.Context) error {
// Retry heartbeat in the event the conditional put fails.
for r := retry.StartWithCtx(ctx, retryOpts); r.Next(); {
liveness, err := nl.Self()
if err != nil && err != ErrNoLivenessRecord {
log.Errorf(ctx, "unexpected error getting liveness: %v", err)
}
if err := nl.heartbeatInternal(ctx, liveness, incrementEpoch); err != nil {
if err == ErrEpochIncremented {
log.Infof(ctx, "%s; retrying", err)
continue
}
return err
}
incrementEpoch = false // don't increment epoch after first heartbeat
break
}
return nil
}); err != nil {
log.Warningf(ctx, "failed node liveness heartbeat: %v", err)
}
nl.heartbeatToken <- struct{}{}
select {
case <-ticker.C:
case <-stopper.ShouldStop():
return
}
}
})
}
// PauseHeartbeat stops or restarts the periodic heartbeat depending on the
// pause parameter. When pause is true, waits until it acquires the heartbeatToken
// (unless heartbeat was already paused); this ensures that no heartbeats happen
// after this is called. This function is only safe for use in tests.
func (nl *NodeLiveness) PauseHeartbeat(pause bool) {
if pause {
if swapped := atomic.CompareAndSwapUint32(&nl.heartbeatPaused, 0, 1); swapped {
<-nl.heartbeatToken
}
} else {
if swapped := atomic.CompareAndSwapUint32(&nl.heartbeatPaused, 1, 0); swapped {
nl.heartbeatToken <- struct{}{}
}
}
}
// DisableAllHeartbeatsForTest disables all node liveness heartbeats, including
// those triggered from outside the normal StartHeartbeat loop. Returns a
// closure to call to re-enable heartbeats. Only safe for use in tests.
func (nl *NodeLiveness) DisableAllHeartbeatsForTest() func() {
nl.PauseHeartbeat(true)
nl.selfSem <- struct{}{}
nl.otherSem <- struct{}{}
return func() {
<-nl.selfSem
<-nl.otherSem
}
}
var errNodeAlreadyLive = errors.New("node already live")
// Heartbeat is called to update a node's expiration timestamp. This
// method does a conditional put on the node liveness record, and if
// successful, stores the updated liveness record in the nodes map.
func (nl *NodeLiveness) Heartbeat(ctx context.Context, liveness *storagepb.Liveness) error {
return nl.heartbeatInternal(ctx, liveness, false /* increment epoch */)
}
func (nl *NodeLiveness) heartbeatInternal(
ctx context.Context, liveness *storagepb.Liveness, incrementEpoch bool,
) error {
ctx, sp := tracing.EnsureChildSpan(ctx, nl.ambientCtx.Tracer, "liveness heartbeat")
defer sp.Finish()
defer func(start time.Time) {
dur := timeutil.Now().Sub(start)
nl.metrics.HeartbeatLatency.RecordValue(dur.Nanoseconds())
if dur > time.Second {
log.Warningf(ctx, "slow heartbeat took %0.1fs", dur.Seconds())
}
}(timeutil.Now())
// Allow only one heartbeat at a time.
nodeID := nl.gossip.NodeID.Get()
sem := nl.sem(nodeID)
select {
case sem <- struct{}{}:
case <-ctx.Done():
return ctx.Err()
}
defer func() {
<-sem
}()
update := livenessUpdate{
Liveness: storagepb.Liveness{
NodeID: nodeID,
Epoch: 1,
},
}
if liveness != nil {
update.Liveness = *liveness
if incrementEpoch {
update.Epoch++
// Clear draining field.
update.Draining = false
}
}
// We need to add the maximum clock offset to the expiration because it's
// used when determining liveness for a node (unless we're configured for
// clockless reads).
{
maxOffset := nl.clock.MaxOffset()
if maxOffset == timeutil.ClocklessMaxOffset {
maxOffset = 0
}
update.Expiration = hlc.LegacyTimestamp(
nl.clock.Now().Add((nl.livenessThreshold + maxOffset).Nanoseconds(), 0))
// This guards against the system clock moving backwards. As long
// as the cockroach process is running, checks inside hlc.Clock
// will ensure that the clock never moves backwards, but these
// checks don't work across process restarts.
if liveness != nil && update.Expiration.Less(liveness.Expiration) {
return errors.Errorf("proposed liveness update expires earlier than previous record")
}
}
if err := nl.updateLiveness(ctx, update, liveness, func(actual storagepb.Liveness) error {
// Update liveness to actual value on mismatch.
nl.maybeUpdate(actual)
// If the actual liveness is different than expected, but is
// considered live, treat the heartbeat as a success. This can
// happen when the periodic heartbeater races with a concurrent
// lease acquisition.
if actual.IsLive(nl.clock.Now(), nl.clock.MaxOffset()) && !incrementEpoch {
return errNodeAlreadyLive
}
// Otherwise, return error.
return ErrEpochIncremented
}); err != nil {
if err == errNodeAlreadyLive {
nl.metrics.HeartbeatSuccesses.Inc(1)
return nil
}
nl.metrics.HeartbeatFailures.Inc(1)
return err
}
log.VEventf(ctx, 1, "heartbeat %+v", update.Expiration)
nl.maybeUpdate(update.Liveness)
nl.metrics.HeartbeatSuccesses.Inc(1)
return nil
}
// Self returns the liveness record for this node. ErrNoLivenessRecord
// is returned in the event that the node has neither heartbeat its
// liveness record successfully, nor received a gossip message containing
// a former liveness update on restart.
func (nl *NodeLiveness) Self() (*storagepb.Liveness, error) {
nl.mu.RLock()
defer nl.mu.RUnlock()
return nl.getLivenessLocked(nl.gossip.NodeID.Get())
}
// IsLiveMapEntry encapsulates data about current liveness for a
// node.
type IsLiveMapEntry struct {
IsLive bool
Epoch int64
}
// IsLiveMap is a type alias for a map from NodeID to IsLiveMapEntry.
type IsLiveMap map[roachpb.NodeID]IsLiveMapEntry
// GetIsLiveMap returns a map of nodeID to boolean liveness status of
// each node. This excludes nodes that were removed completely (dead +
// decommissioning).
func (nl *NodeLiveness) GetIsLiveMap() IsLiveMap {
lMap := IsLiveMap{}
nl.mu.RLock()
defer nl.mu.RUnlock()
now := nl.clock.Now()
maxOffset := nl.clock.MaxOffset()
for nID, l := range nl.mu.nodes {
isLive := l.IsLive(now, maxOffset)
if !isLive && l.Decommissioning {
// This is a node that was completely removed. Skip over it.
continue
}
lMap[nID] = IsLiveMapEntry{
IsLive: isLive,
Epoch: l.Epoch,
}
}
return lMap
}
// GetLivenesses returns a slice containing the liveness status of
// every node on the cluster known to gossip. Callers should consider
// calling (statusServer).NodesWithLiveness() instead where possible.
func (nl *NodeLiveness) GetLivenesses() []storagepb.Liveness {
nl.mu.RLock()
defer nl.mu.RUnlock()
livenesses := make([]storagepb.Liveness, 0, len(nl.mu.nodes))
for _, l := range nl.mu.nodes {
livenesses = append(livenesses, l)
}
return livenesses
}
// GetLiveness returns the liveness record for the specified nodeID.
// ErrNoLivenessRecord is returned in the event that nothing is yet
// known about nodeID via liveness gossip.
func (nl *NodeLiveness) GetLiveness(nodeID roachpb.NodeID) (*storagepb.Liveness, error) {
nl.mu.RLock()
defer nl.mu.RUnlock()
return nl.getLivenessLocked(nodeID)
}
// GetLivenessStatusMap generates map from NodeID to LivenessStatus.
// This includes only node known to gossip. To include all nodes,
// Callers should consider calling (statusServer).NodesWithLiveness()
// instead where possible.
//
// GetLivenessStatusMap() includes removed nodes (dead +
// decommissioned).
func (nl *NodeLiveness) GetLivenessStatusMap() map[roachpb.NodeID]storagepb.NodeLivenessStatus {
now := nl.clock.PhysicalTime()
livenesses := nl.GetLivenesses()
threshold := TimeUntilStoreDead.Get(&nl.st.SV)
maxOffset := nl.clock.MaxOffset()
statusMap := make(map[roachpb.NodeID]storagepb.NodeLivenessStatus, len(livenesses))
for _, liveness := range livenesses {
status := liveness.LivenessStatus(
now, threshold, maxOffset,
)
statusMap[liveness.NodeID] = status
}
return statusMap
}
func (nl *NodeLiveness) getLivenessLocked(nodeID roachpb.NodeID) (*storagepb.Liveness, error) {
if l, ok := nl.mu.nodes[nodeID]; ok {
return &l, nil
}
return nil, ErrNoLivenessRecord
}
var errEpochAlreadyIncremented = errors.New("epoch already incremented")
// IncrementEpoch is called to increment the current liveness epoch,
// thereby invalidating anything relying on the liveness of the
// previous epoch. This method does a conditional put on the node
// liveness record, and if successful, stores the updated liveness
// record in the nodes map. If this method is called on a node ID
// which is considered live according to the most recent information
// gathered through gossip, an error is returned.
func (nl *NodeLiveness) IncrementEpoch(ctx context.Context, liveness *storagepb.Liveness) error {
// Allow only one increment at a time.
sem := nl.sem(liveness.NodeID)
select {
case sem <- struct{}{}:
case <-ctx.Done():
return ctx.Err()
}
defer func() {
<-sem
}()
if liveness.IsLive(nl.clock.Now(), nl.clock.MaxOffset()) {
return errors.Errorf("cannot increment epoch on live node: %+v", liveness)
}
update := livenessUpdate{Liveness: *liveness}
update.Epoch++
if err := nl.updateLiveness(ctx, update, liveness, func(actual storagepb.Liveness) error {
defer nl.maybeUpdate(actual)
if actual.Epoch > liveness.Epoch {
return errEpochAlreadyIncremented
} else if actual.Epoch < liveness.Epoch {
return errors.Errorf("unexpected liveness epoch %d; expected >= %d", actual.Epoch, liveness.Epoch)
}
return errors.Errorf("mismatch incrementing epoch for %+v; actual is %+v", *liveness, actual)
}); err != nil {
if err == errEpochAlreadyIncremented {
return nil
}
return err
}
log.Infof(ctx, "incremented n%d liveness epoch to %d", update.NodeID, update.Epoch)
nl.maybeUpdate(update.Liveness)
nl.metrics.EpochIncrements.Inc(1)
return nil
}
// Metrics returns a struct which contains metrics related to node
// liveness activity.
func (nl *NodeLiveness) Metrics() LivenessMetrics {
return nl.metrics
}
// RegisterCallback registers a callback to be invoked any time a
// node's IsLive() state changes to true.
func (nl *NodeLiveness) RegisterCallback(cb IsLiveCallback) {
nl.mu.Lock()
defer nl.mu.Unlock()
nl.mu.callbacks = append(nl.mu.callbacks, cb)
}
// updateLiveness does a conditional put on the node liveness record for the
// node specified by nodeID. In the event that the conditional put fails, and
// the handleCondFailed callback is not nil, it's invoked with the actual node
// liveness record and nil is returned for an error. If handleCondFailed is nil,
// any conditional put failure is returned as an error to the caller. The
// conditional put is done as a 1PC transaction with a ModifiedSpanTrigger which
// indicates the node liveness record that the range leader should gossip on
// commit.
//
// updateLiveness terminates certain errors that are expected to occur
// sporadically, such as TransactionStatusError (due to the 1PC requirement of
// the liveness txn, and ambiguous results).
func (nl *NodeLiveness) updateLiveness(
ctx context.Context,
update livenessUpdate,
oldLiveness *storagepb.Liveness,
handleCondFailed func(actual storagepb.Liveness) error,
) error {
for {
// Before each attempt, ensure that the context has not expired.
if err := ctx.Err(); err != nil {
return err
}
if err := nl.updateLivenessAttempt(ctx, update, oldLiveness, handleCondFailed); err != nil {
// Intentionally don't errors.Cause() the error, or we'd hop past errRetryLiveness.
if _, ok := err.(*errRetryLiveness); ok {
log.Infof(ctx, "retrying liveness update after %s", err)
continue
}
return err
}
return nil
}
}
func (nl *NodeLiveness) updateLivenessAttempt(
ctx context.Context,
update livenessUpdate,
oldLiveness *storagepb.Liveness,
handleCondFailed func(actual storagepb.Liveness) error,
) error {
// First check the existing liveness map to avoid known conditional
// put failures.
if !update.ignoreCache {
l, err := nl.GetLiveness(update.NodeID)
if err == nil && (oldLiveness == nil || *l != *oldLiveness) {
return handleCondFailed(*l)
}
}
if err := nl.db.Txn(ctx, func(ctx context.Context, txn *client.Txn) error {
b := txn.NewBatch()
key := keys.NodeLivenessKey(update.NodeID)
// The batch interface requires interface{}(nil), not *Liveness(nil).
if oldLiveness == nil {
b.CPut(key, &update.Liveness, nil)
} else {
b.CPut(key, &update.Liveness, oldLiveness)
}
// Use a trigger on EndTransaction to indicate that node liveness should
// be re-gossiped. Further, require that this transaction complete as a
// one phase commit to eliminate the possibility of leaving write intents.
b.AddRawRequest(&roachpb.EndTransactionRequest{
Commit: true,
Require1PC: true,
InternalCommitTrigger: &roachpb.InternalCommitTrigger{
ModifiedSpanTrigger: &roachpb.ModifiedSpanTrigger{
NodeLivenessSpan: &roachpb.Span{
Key: key,
EndKey: key.Next(),
},
},
},
})
return txn.Run(ctx, b)
}); err != nil {
switch tErr := errors.Cause(err).(type) {
case *roachpb.ConditionFailedError:
if handleCondFailed != nil {
if tErr.ActualValue == nil {
return handleCondFailed(storagepb.Liveness{})
}
var actualLiveness storagepb.Liveness
if err := tErr.ActualValue.GetProto(&actualLiveness); err != nil {
return errors.Wrapf(err, "couldn't update node liveness from CPut actual value")
}
return handleCondFailed(actualLiveness)
}
case *roachpb.TransactionStatusError:
return &errRetryLiveness{err}
case *roachpb.AmbiguousResultError:
return &errRetryLiveness{err}
}
return err
}
nl.mu.Lock()
cb := nl.mu.heartbeatCallback
nl.mu.Unlock()
if cb != nil {
cb(ctx)
}
return nil
}
// maybeUpdate replaces the liveness (if it appears newer) and invokes the
// registered callbacks if the node became live in the process.
func (nl *NodeLiveness) maybeUpdate(new storagepb.Liveness) {
nl.mu.Lock()
// Note that this works fine even if `old` is empty.
old := nl.mu.nodes[new.NodeID]
should := shouldReplaceLiveness(old, new)
var callbacks []IsLiveCallback
if should {
nl.mu.nodes[new.NodeID] = new
callbacks = append(callbacks, nl.mu.callbacks...)
}
nl.mu.Unlock()
if !should {
return
}
now, offset := nl.clock.Now(), nl.clock.MaxOffset()
if !old.IsLive(now, offset) && new.IsLive(now, offset) {
for _, fn := range callbacks {
fn(new.NodeID)
}
}
}
func shouldReplaceLiveness(old, new storagepb.Liveness) bool {
if (old == storagepb.Liveness{}) {
return true
}
// Compare first Epoch, and no change there, Expiration.
if old.Epoch != new.Epoch {
return old.Epoch < new.Epoch
}
if old.Expiration != new.Expiration {
return old.Expiration.Less(new.Expiration)
}
// If Epoch and Expiration are unchanged, assume that the update is newer
// when its draining or decommissioning field changed.
//
// This has false positives (in which case we're clobbering the liveness). A
// better way to handle liveness updates in general is to add a sequence
// number.
//
// See #18219.
return old.Draining != new.Draining || old.Decommissioning != new.Decommissioning
}
// livenessGossipUpdate is the gossip callback used to keep the
// in-memory liveness info up to date.
func (nl *NodeLiveness) livenessGossipUpdate(key string, content roachpb.Value) {
var liveness storagepb.Liveness
if err := content.GetProto(&liveness); err != nil {
log.Error(context.TODO(), err)
return
}
nl.maybeUpdate(liveness)
}
// numLiveNodes is used to populate a metric that tracks the number of live
// nodes in the cluster. Returns 0 if this node is not itself live, to avoid
// reporting potentially inaccurate data.
// We export this metric from every live node rather than a single particular
// live node because liveness information is gossiped and thus may be stale.
// That staleness could result in no nodes reporting the metric or multiple
// nodes reporting the metric, so it's simplest to just have all live nodes
// report it.
func (nl *NodeLiveness) numLiveNodes() int64 {
ctx := nl.ambientCtx.AnnotateCtx(context.Background())
selfID := nl.gossip.NodeID.Get()
if selfID == 0 {
return 0
}
now := nl.clock.Now()
maxOffset := nl.clock.MaxOffset()
nl.mu.RLock()
defer nl.mu.RUnlock()
self, err := nl.getLivenessLocked(selfID)
if err == ErrNoLivenessRecord {
return 0
}
if err != nil {
log.Warningf(ctx, "looking up own liveness: %s", err)
return 0
}
// If this node isn't live, we don't want to report its view of node liveness
// because it's more likely to be inaccurate than the view of a live node.
if !self.IsLive(now, maxOffset) {
return 0
}
var liveNodes int64
for _, l := range nl.mu.nodes {
if l.IsLive(now, maxOffset) {
liveNodes++
}
}
return liveNodes
}
// AsLiveClock returns a closedts.LiveClockFn that takes a current timestamp off
// the clock and returns it only if node liveness indicates that the node is live
// at that timestamp and the returned epoch.
func (nl *NodeLiveness) AsLiveClock() closedts.LiveClockFn {
return func(nodeID roachpb.NodeID) (hlc.Timestamp, ctpb.Epoch, error) {
now := nl.clock.Now()
liveness, err := nl.GetLiveness(nodeID)
if err != nil {
return hlc.Timestamp{}, 0, err
}
if !liveness.IsLive(now, nl.clock.MaxOffset()) {
return hlc.Timestamp{}, 0, errLiveClockNotLive
}
return now, ctpb.Epoch(liveness.Epoch), nil
}
}
// GetNodeCount returns a count of the number of nodes in the cluster,
// including dead nodes, but excluding decommissioning or decommissioned nodes.
func (nl *NodeLiveness) GetNodeCount() int {
nl.mu.RLock()
defer nl.mu.RUnlock()
var count int
for _, l := range nl.mu.nodes {
if !l.Decommissioning {
count++
}
}
return count
}