-
Notifications
You must be signed in to change notification settings - Fork 3.8k
/
stores.go
422 lines (383 loc) · 14.6 KB
/
stores.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
// Copyright 2014 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 kvserver
import (
"context"
"fmt"
math "math"
"unsafe"
"github.com/cockroachdb/cockroach/pkg/clusterversion"
"github.com/cockroachdb/cockroach/pkg/gossip"
"github.com/cockroachdb/cockroach/pkg/keys"
"github.com/cockroachdb/cockroach/pkg/kv"
"github.com/cockroachdb/cockroach/pkg/kv/kvserver/closedts/ctpb"
"github.com/cockroachdb/cockroach/pkg/kv/kvserver/kvadmission"
"github.com/cockroachdb/cockroach/pkg/roachpb"
"github.com/cockroachdb/cockroach/pkg/storage"
"github.com/cockroachdb/cockroach/pkg/util/hlc"
"github.com/cockroachdb/cockroach/pkg/util/log"
"github.com/cockroachdb/cockroach/pkg/util/protoutil"
"github.com/cockroachdb/cockroach/pkg/util/syncutil"
"github.com/cockroachdb/errors"
)
// Stores provides methods to access a collection of stores. There's
// a visitor pattern and also an implementation of the client.Sender
// interface which directs a call to the appropriate store based on
// the call's key range. Stores also implements the gossip.Storage
// interface, which allows gossip bootstrap information to be
// persisted consistently to every store and the most recent bootstrap
// information to be read at node startup.
type Stores struct {
log.AmbientContext
clock *hlc.Clock
storeMap syncutil.IntMap // map[roachpb.StoreID]*Store
mu struct {
syncutil.Mutex
biLatestTS hlc.Timestamp // Timestamp of gossip bootstrap info
latestBI *gossip.BootstrapInfo // Latest cached bootstrap info
}
}
var _ kv.Sender = &Stores{} // Stores implements the client.Sender interface
var _ gossip.Storage = &Stores{} // Stores implements the gossip.Storage interface
// NewStores returns a local-only sender which directly accesses
// a collection of stores.
func NewStores(ambient log.AmbientContext, clock *hlc.Clock) *Stores {
return &Stores{
AmbientContext: ambient,
clock: clock,
}
}
// IsMeta1Leaseholder returns whether the specified stores owns
// the meta1 lease. Returns an error if any.
func (ls *Stores) IsMeta1Leaseholder(ctx context.Context, now hlc.ClockTimestamp) (bool, error) {
repl, _, err := ls.GetReplicaForRangeID(ctx, 1)
if roachpb.IsRangeNotFoundError(err) {
return false, nil
}
if err != nil {
return false, err
}
return repl.OwnsValidLease(ctx, now), nil
}
// GetStoreCount returns the number of stores this node is exporting.
func (ls *Stores) GetStoreCount() int {
var count int
ls.storeMap.Range(func(_ int64, _ unsafe.Pointer) bool {
count++
return true
})
return count
}
// HasStore returns true if the specified store is owned by this Stores.
func (ls *Stores) HasStore(storeID roachpb.StoreID) bool {
_, ok := ls.storeMap.Load(int64(storeID))
return ok
}
// GetStore looks up the store by store ID. Returns an error
// if not found.
func (ls *Stores) GetStore(storeID roachpb.StoreID) (*Store, error) {
if value, ok := ls.storeMap.Load(int64(storeID)); ok {
return (*Store)(value), nil
}
return nil, roachpb.NewStoreNotFoundError(storeID)
}
// AddStore adds the specified store to the store map.
func (ls *Stores) AddStore(s *Store) {
if _, loaded := ls.storeMap.LoadOrStore(int64(s.Ident.StoreID), unsafe.Pointer(s)); loaded {
panic(fmt.Sprintf("cannot add store twice: %+v", s.Ident))
}
// If we've already read the gossip bootstrap info, ensure that
// all stores have the most recent values.
ls.mu.Lock()
defer ls.mu.Unlock()
if !ls.mu.biLatestTS.IsEmpty() {
if err := ls.updateBootstrapInfoLocked(ls.mu.latestBI); err != nil {
ctx := ls.AnnotateCtx(context.TODO())
log.Errorf(ctx, "failed to update bootstrap info on newly added store: %+v", err)
}
}
}
// RemoveStore removes the specified store from the store map.
func (ls *Stores) RemoveStore(s *Store) {
ls.storeMap.Delete(int64(s.Ident.StoreID))
}
// ForwardSideTransportClosedTimestampForRange forwards the side-transport
// closed timestamp for the local replicas of the given range.
func (ls *Stores) ForwardSideTransportClosedTimestampForRange(
ctx context.Context, rangeID roachpb.RangeID, closedTS hlc.Timestamp, lai ctpb.LAI,
) {
if err := ls.VisitStores(func(s *Store) error {
r := s.GetReplicaIfExists(rangeID)
if r != nil {
r.ForwardSideTransportClosedTimestamp(ctx, closedTS, lai)
}
return nil
}); err != nil {
log.Fatalf(ctx, "unexpected error: %s", err)
}
}
// VisitStores implements a visitor pattern over stores in the
// storeMap. The specified function is invoked with each store in
// turn. Care is taken to invoke the visitor func without the lock
// held to avoid inconsistent lock orderings, as some visitor
// functions may call back into the Stores object. Stores are visited
// in random order.
func (ls *Stores) VisitStores(visitor func(s *Store) error) error {
var err error
ls.storeMap.Range(func(k int64, v unsafe.Pointer) bool {
err = visitor((*Store)(v))
return err == nil
})
return err
}
// GetReplicaForRangeID returns the replica and store which contains the
// specified range. If the replica is not found on any store then
// roachpb.RangeNotFoundError will be returned.
func (ls *Stores) GetReplicaForRangeID(
ctx context.Context, rangeID roachpb.RangeID,
) (*Replica, *Store, error) {
var replica *Replica
var store *Store
if err := ls.VisitStores(func(s *Store) error {
r := s.GetReplicaIfExists(rangeID)
if r != nil {
replica, store = r, s
}
return nil
}); err != nil {
log.Fatalf(ctx, "unexpected error: %s", err)
}
if replica == nil {
return nil, nil, roachpb.NewRangeNotFoundError(rangeID, 0)
}
return replica, store, nil
}
// Send implements the client.Sender interface. The store is looked up from the
// store map using the ID specified in the request.
func (ls *Stores) Send(
ctx context.Context, ba *roachpb.BatchRequest,
) (*roachpb.BatchResponse, *roachpb.Error) {
br, writeBytes, pErr := ls.SendWithWriteBytes(ctx, ba)
writeBytes.Release()
return br, pErr
}
// SendWithWriteBytes is the implementation of Send with an additional
// *StoreWriteBytes return value.
func (ls *Stores) SendWithWriteBytes(
ctx context.Context, ba *roachpb.BatchRequest,
) (*roachpb.BatchResponse, *kvadmission.StoreWriteBytes, *roachpb.Error) {
if err := ba.ValidateForEvaluation(); err != nil {
log.Fatalf(ctx, "invalid batch (%s): %s", ba, err)
}
store, err := ls.GetStore(ba.Replica.StoreID)
if err != nil {
return nil, nil, roachpb.NewError(err)
}
br, writeBytes, pErr := store.SendWithWriteBytes(ctx, ba)
if br != nil && br.Error != nil {
panic(roachpb.ErrorUnexpectedlySet(store, br))
}
return br, writeBytes, pErr
}
// RangeFeed registers a rangefeed over the specified span. It sends updates to
// the provided stream and returns with an optional error when the rangefeed is
// complete.
func (ls *Stores) RangeFeed(
args *roachpb.RangeFeedRequest, stream roachpb.RangeFeedEventSink,
) *roachpb.Error {
ctx := stream.Context()
if args.RangeID == 0 {
log.Fatal(ctx, "rangefeed request missing range ID")
} else if args.Replica.StoreID == 0 {
log.Fatal(ctx, "rangefeed request missing store ID")
}
store, err := ls.GetStore(args.Replica.StoreID)
if err != nil {
return roachpb.NewError(err)
}
return store.RangeFeed(args, stream)
}
// ReadBootstrapInfo implements the gossip.Storage interface. Read
// attempts to read gossip bootstrap info from every known store and
// finds the most recent from all stores to initialize the bootstrap
// info argument. Returns an error on any issues reading data for the
// stores (but excluding the case in which no data has been persisted
// yet).
func (ls *Stores) ReadBootstrapInfo(bi *gossip.BootstrapInfo) error {
var latestTS hlc.Timestamp
ctx := ls.AnnotateCtx(context.TODO())
var err error
// Find the most recent bootstrap info.
ls.storeMap.Range(func(k int64, v unsafe.Pointer) bool {
s := (*Store)(v)
var storeBI gossip.BootstrapInfo
var ok bool
ok, err = storage.MVCCGetProto(ctx, s.engine, keys.StoreGossipKey(), hlc.Timestamp{}, &storeBI,
storage.MVCCGetOptions{})
if err != nil {
return false
}
if ok && latestTS.Less(storeBI.Timestamp) {
latestTS = storeBI.Timestamp
*bi = storeBI
}
return true
})
if err != nil {
return err
}
log.Infof(ctx, "read %d node addresses from persistent storage", len(bi.Addresses))
ls.mu.Lock()
defer ls.mu.Unlock()
return ls.updateBootstrapInfoLocked(bi)
}
// WriteBootstrapInfo implements the gossip.Storage interface. Write
// persists the supplied bootstrap info to every known store. Returns
// nil on success; otherwise returns first error encountered writing
// to the stores.
func (ls *Stores) WriteBootstrapInfo(bi *gossip.BootstrapInfo) error {
ls.mu.Lock()
defer ls.mu.Unlock()
bi.Timestamp = ls.clock.Now()
if err := ls.updateBootstrapInfoLocked(bi); err != nil {
return err
}
ctx := ls.AnnotateCtx(context.TODO())
log.Infof(ctx, "wrote %d node addresses to persistent storage", len(bi.Addresses))
return nil
}
func (ls *Stores) updateBootstrapInfoLocked(bi *gossip.BootstrapInfo) error {
if bi.Timestamp.Less(ls.mu.biLatestTS) {
return nil
}
ctx := ls.AnnotateCtx(context.TODO())
// Update the latest timestamp and set cached version.
ls.mu.biLatestTS = bi.Timestamp
ls.mu.latestBI = protoutil.Clone(bi).(*gossip.BootstrapInfo)
// Update all stores.
var err error
ls.storeMap.Range(func(k int64, v unsafe.Pointer) bool {
s := (*Store)(v)
err = storage.MVCCPutProto(ctx, s.engine, nil, keys.StoreGossipKey(), hlc.Timestamp{}, hlc.ClockTimestamp{}, nil, bi)
return err == nil
})
return err
}
// WriteClusterVersionToEngines writes the given version to the given engines,
// Returns nil on success; otherwise returns first error encountered writing to
// the stores. It makes no attempt to validate the supplied version.
//
// At the time of writing this is used during bootstrap, initial server start
// (to perhaps fill into additional stores), and during cluster version bumps.
func WriteClusterVersionToEngines(
ctx context.Context, engines []storage.Engine, cv clusterversion.ClusterVersion,
) error {
for _, eng := range engines {
if err := WriteClusterVersion(ctx, eng, cv); err != nil {
return errors.Wrapf(err, "error writing version to engine %s", eng)
}
}
return nil
}
// SynthesizeClusterVersionFromEngines returns the cluster version that was read
// from the engines or, if none are initialized, binaryMinSupportedVersion.
// Typically all initialized engines will have the same version persisted,
// though ill-timed crashes can result in situations where this is not the
// case. Then, the largest version seen is returned.
//
// binaryVersion is the version of this binary. An error is returned if
// any engine has a higher version, as this would indicate that this node
// has previously acked the higher cluster version but is now running an
// old binary, which is unsafe.
//
// binaryMinSupportedVersion is the minimum version supported by this binary. An
// error is returned if any engine has a version lower that this.
func SynthesizeClusterVersionFromEngines(
ctx context.Context,
engines []storage.Engine,
binaryVersion, binaryMinSupportedVersion roachpb.Version,
) (clusterversion.ClusterVersion, error) {
// Find the most recent bootstrap info.
type originVersion struct {
roachpb.Version
origin string
}
maxPossibleVersion := roachpb.Version{Major: math.MaxInt32} // Sort above any real version.
minStoreVersion := originVersion{
Version: maxPossibleVersion,
origin: "(no store)",
}
// We run this twice because it's only after having seen all the versions
// that we can decide whether the node catches a version error. However, we
// also want to name at least one engine that violates the version
// constraints, which at the latest the second loop will achieve (because
// then minStoreVersion don't change any more).
for _, eng := range engines {
eng := eng.(storage.Reader) // we're read only
var cv clusterversion.ClusterVersion
cv, err := ReadClusterVersion(ctx, eng)
if err != nil {
return clusterversion.ClusterVersion{}, err
}
if cv.Version == (roachpb.Version{}) {
// This is needed when a node first joins an existing cluster, in
// which case it won't know what version to use until the first
// Gossip update comes in.
cv.Version = binaryMinSupportedVersion
}
// Avoid running a binary with a store that is too new. For example,
// restarting into 1.1 after having upgraded to 1.2 doesn't work.
if binaryVersion.Less(cv.Version) {
return clusterversion.ClusterVersion{}, errors.Errorf(
"cockroach version v%s is incompatible with data in store %s; use version v%s or later",
binaryVersion, eng, cv.Version)
}
// Track smallest use version encountered.
if cv.Version.Less(minStoreVersion.Version) {
minStoreVersion.Version = cv.Version
minStoreVersion.origin = fmt.Sprint(eng)
}
}
// If no use version was found, fall back to our binaryMinSupportedVersion. This
// is the case when a brand new node is joining an existing cluster (which
// may be on any older version this binary supports).
if minStoreVersion.Version == maxPossibleVersion {
minStoreVersion.Version = binaryMinSupportedVersion
}
cv := clusterversion.ClusterVersion{
Version: minStoreVersion.Version,
}
log.Eventf(ctx, "read clusterVersion %+v", cv)
// Avoid running a binary too new for this store. This is what you'd catch
// if, say, you restarted directly from 1.0 into 1.2 (bumping the min
// version) without going through 1.1 first. It would also be what you catch if
// you are starting 1.1 for the first time (after 1.0), but it crashes
// half-way through the startup sequence (so now some stores have 1.1, but
// some 1.0), in which case you are expected to run 1.1 again (hopefully
// without the crash this time) which would then rewrite all the stores.
//
// We only verify this now because as we iterate through the stores, we
// may not yet have picked up the final versions we're actually planning
// to use.
if minStoreVersion.Version.Less(binaryMinSupportedVersion) {
return clusterversion.ClusterVersion{}, errors.Errorf("store %s, last used with cockroach version v%s, "+
"is too old for running version v%s (which requires data from v%s or later)",
minStoreVersion.origin, minStoreVersion.Version, binaryVersion, binaryMinSupportedVersion)
}
return cv, nil
}
func (ls *Stores) engines() []storage.Engine {
var engines []storage.Engine
ls.storeMap.Range(func(_ int64, v unsafe.Pointer) bool {
engines = append(engines, (*Store)(v).Engine())
return true // want more
})
return engines
}