forked from cockroachdb/cockroach
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stores.go
506 lines (462 loc) · 18 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
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
// Copyright 2014 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 (
"fmt"
"unsafe"
"golang.org/x/net/context"
"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/engine"
"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/pkg/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
// These two versions are usually cluster.BinaryMinimumSupportedVersion and
// cluster.BinaryServerVersion, respectively. They are changed in some
// tests.
minSupportedVersion roachpb.Version
serverVersion roachpb.Version
mu struct {
syncutil.Mutex
biLatestTS hlc.Timestamp // Timestamp of gossip bootstrap info
latestBI *gossip.BootstrapInfo // Latest cached bootstrap info
}
}
var _ client.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, minVersion, serverVersion roachpb.Version,
) *Stores {
return &Stores{
AmbientContext: ambient,
clock: clock,
minSupportedVersion: minVersion,
serverVersion: serverVersion,
}
}
// 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 != (hlc.Timestamp{}) {
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: %s", err)
}
}
}
// RemoveStore removes the specified store from the store map.
func (ls *Stores) RemoveStore(s *Store) {
ls.storeMap.Delete(int64(s.Ident.StoreID))
}
// 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
}
// Send implements the client.Sender interface. The store is looked up from the
// store map if specified by the request; otherwise, the command is being
// executed locally, and the replica is determined via lookup through each
// store's LookupRange method. The latter path is taken only by unit tests.
func (ls *Stores) Send(
ctx context.Context, ba roachpb.BatchRequest,
) (*roachpb.BatchResponse, *roachpb.Error) {
// If we aren't given a Replica, then a little bending over
// backwards here. This case applies exclusively to unittests.
if ba.RangeID == 0 || ba.Replica.StoreID == 0 {
rs, err := keys.Range(ba)
if err != nil {
return nil, roachpb.NewError(err)
}
rangeID, repDesc, err := ls.LookupReplica(rs.Key, rs.EndKey)
if err != nil {
return nil, roachpb.NewError(err)
}
ba.RangeID = rangeID
ba.Replica = repDesc
}
store, err := ls.GetStore(ba.Replica.StoreID)
if err != nil {
return nil, roachpb.NewError(err)
}
if ba.Txn != nil {
// For calls that read data within a txn, we keep track of timestamps
// observed from the various participating nodes' HLC clocks. If we have
// a timestamp on file for this Node which is smaller than MaxTimestamp,
// we can lower MaxTimestamp accordingly. If MaxTimestamp drops below
// OrigTimestamp, we effectively can't see uncertainty restarts any
// more.
// Note that it's not an issue if MaxTimestamp propagates back out to
// the client via a returned Transaction update - when updating a Txn
// from another, the larger MaxTimestamp wins.
if maxTS, ok := ba.Txn.GetObservedTimestamp(ba.Replica.NodeID); ok && maxTS.Less(ba.Txn.MaxTimestamp) {
// Copy-on-write to protect others we might be sharing the Txn with.
shallowTxn := *ba.Txn
// The uncertainty window is [OrigTimestamp, maxTS), so if that window
// is empty, there won't be any uncertainty restarts.
if !ba.Txn.OrigTimestamp.Less(maxTS) {
log.Event(ctx, "read has no clock uncertainty")
}
shallowTxn.MaxTimestamp.Backward(maxTS)
ba.Txn = &shallowTxn
}
}
br, pErr := store.Send(ctx, ba)
if br != nil && br.Error != nil {
panic(roachpb.ErrorUnexpectedlySet(store, br))
}
return br, pErr
}
// LookupReplica looks up replica by key [range]. Lookups are done
// by consulting each store in turn via Store.LookupReplica(key).
// Returns RangeID and replica on success; RangeKeyMismatch error
// if not found.
// If end is nil, a replica containing start is looked up.
// This is only for testing usage; performance doesn't matter.
func (ls *Stores) LookupReplica(
start, end roachpb.RKey,
) (roachpb.RangeID, roachpb.ReplicaDescriptor, error) {
var rangeID roachpb.RangeID
var repDesc roachpb.ReplicaDescriptor
var repDescFound bool
var err error
ls.storeMap.Range(func(k int64, v unsafe.Pointer) bool {
store := (*Store)(v)
replica := store.LookupReplica(start, nil)
if replica == nil {
return true
}
// Verify that the descriptor contains the entire range.
if desc := replica.Desc(); !desc.ContainsKeyRange(start, end) {
ctx := ls.AnnotateCtx(context.TODO())
log.Warningf(ctx, "range not contained in one range: [%s,%s), but have [%s,%s)",
start, end, desc.StartKey, desc.EndKey)
err = roachpb.NewRangeKeyMismatchError(start.AsRawKey(), end.AsRawKey(), desc)
return false
}
rangeID = replica.RangeID
repDesc, err = replica.GetReplicaDescriptor()
if err != nil {
if _, ok := err.(*roachpb.RangeNotFoundError); ok {
// We are not holding a lock across this block; the replica could have
// been removed from the range (via down-replication) between the
// LookupReplica and the GetReplicaDescriptor calls. In this case just
// ignore this replica.
err = nil
}
return err == nil
}
if repDescFound {
// We already found the range; this should never happen outside of tests.
err = errors.Errorf("range %+v exists on additional store: %+v", replica, store)
return false
}
repDescFound = true
return true // loop to see if another store also contains the replica
})
if err != nil {
return 0, roachpb.ReplicaDescriptor{}, err
}
if !repDescFound {
return 0, roachpb.ReplicaDescriptor{}, roachpb.NewRangeNotFoundError(0)
}
return rangeID, repDesc, nil
}
// FirstRange implements the RangeDescriptorDB interface. It returns the
// range descriptor which contains KeyMin.
func (ls *Stores) FirstRange() (*roachpb.RangeDescriptor, error) {
_, repDesc, err := ls.LookupReplica(roachpb.RKeyMin, nil)
if err != nil {
return nil, err
}
store, err := ls.GetStore(repDesc.StoreID)
if err != nil {
return nil, err
}
rpl := store.LookupReplica(roachpb.RKeyMin, nil)
if rpl == nil {
panic("firstRange found no first range")
}
return rpl.Desc(), nil
}
// 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 = engine.MVCCGetProto(ctx, s.engine, keys.StoreGossipKey(), hlc.Timestamp{}, true, nil, &storeBI)
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 = engine.MVCCPutProto(ctx, s.engine, nil, keys.StoreGossipKey(), hlc.Timestamp{}, nil, bi)
return err == nil
})
return err
}
// ReadVersionFromEngineOrDefault reads the persisted cluster version from the
// engine, falling back to v1.0 if no version is specified on the engine.
func ReadVersionFromEngineOrDefault(
ctx context.Context, e engine.Engine,
) (cluster.ClusterVersion, error) {
var cv cluster.ClusterVersion
cv, err := ReadClusterVersion(ctx, e)
if err != nil {
return cluster.ClusterVersion{}, err
}
// These values should always exist in 1.1-initialized clusters, but may
// not on 1.0.x; we synthesize the missing version.
if cv.UseVersion == (roachpb.Version{}) {
cv.UseVersion = cluster.VersionBase
}
if cv.MinimumVersion == (roachpb.Version{}) {
cv.MinimumVersion = cluster.VersionBase
}
return cv, nil
}
// WriteClusterVersionToEngines writes the given version to the given engines,
// without any sanity checks.
func WriteClusterVersionToEngines(
ctx context.Context, engines []engine.Engine, cv cluster.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 implements the core of (*Stores).SynthesizeClusterVersion.
func SynthesizeClusterVersionFromEngines(
ctx context.Context, engines []engine.Engine, minSupportedVersion, serverVersion roachpb.Version,
) (cluster.ClusterVersion, error) {
// Find the most recent bootstrap info.
type originVersion struct {
roachpb.Version
origin string
}
// FIXME(tschottdorf): If we don't find anything, this should return v1.0, but
// we have to guarantee first that you always find something (should be OK).
maxMinVersion := originVersion{
Version: minSupportedVersion,
origin: "(no store)",
}
// FIXME(tschottdorf): when we don't have anything on the stores, we need to
// set this to `minSupportedVersions`. It looks like currently it would be
// set to `v1.0` which may not even be supported.
// This is the case in which the node is joining an existing cluster.
minUseVersion := originVersion{
Version: serverVersion,
origin: "(no store)",
}
// We run this twice because only after having seen all the versions, 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 minUseVersion and maxMinVersion don't change any more).
for _, eng := range engines {
var cv cluster.ClusterVersion
cv, err := ReadVersionFromEngineOrDefault(ctx, eng)
if err != nil {
return cluster.ClusterVersion{}, err
}
// 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.
for _, v := range []roachpb.Version{cv.MinimumVersion, cv.UseVersion} {
if serverVersion.Less(v) {
return cluster.ClusterVersion{}, errors.Errorf("engine %s requires at least v%s, but running version is %s",
eng, v, serverVersion)
}
}
// Track the highest minimum version encountered.
if maxMinVersion.Version.Less(cv.MinimumVersion) {
maxMinVersion.Version = cv.MinimumVersion
maxMinVersion.origin = fmt.Sprint(eng)
}
// Track smallest use version encountered.
if cv.UseVersion.Less(minUseVersion.Version) {
minUseVersion.Version = cv.UseVersion
minUseVersion.origin = fmt.Sprint(eng)
}
}
cv := cluster.ClusterVersion{
UseVersion: minUseVersion.Version,
MinimumVersion: maxMinVersion.Version,
}
log.Eventf(ctx, "read ClusterVersion %+v", cv)
for _, v := range []originVersion{minUseVersion, maxMinVersion} {
// 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 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 v.Version.Less(minSupportedVersion) {
return cluster.ClusterVersion{}, errors.Errorf("engine %s at v%s too old for running version %s "+
"(requires at least v%s)", v.origin, v.Version, serverVersion,
minSupportedVersion)
}
}
// Write the "actual" version back to all stores. This is almost always a
// no-op, but will backfill the information for 1.0.x clusters, and also
// smoothens out inconsistent state that can crop up during an ill-timed
// crash or when new stores are being added.
return cv, WriteClusterVersionToEngines(ctx, engines, cv)
}
// SynthesizeClusterVersion reads and returns the ClusterVersion protobuf
// (written to any of the configured stores (all of which are bootstrapped)).
// The returned value is also replicated to all stores for consistency, in case
// a new store was added or an old store re-configured. In case of non-identical
// versions across the stores, returns a version that carries the largest
// MinVersion and the smallest UseVersion.
//
// If there aren't any stores, returns a ClusterVersion with MinSupportedVersion
// and UseVersion set to the minimum supported version and server version of the
// build, respectively.
func (ls *Stores) SynthesizeClusterVersion(ctx context.Context) (cluster.ClusterVersion, error) {
var engines []engine.Engine
ls.storeMap.Range(func(_ int64, v unsafe.Pointer) bool {
engines = append(engines, (*Store)(v).engine)
return true // want more
})
cv, err := SynthesizeClusterVersionFromEngines(ctx, engines, ls.minSupportedVersion, ls.serverVersion)
if err != nil {
return cluster.ClusterVersion{}, err
}
return cv, nil
}
// WriteClusterVersion persists the supplied ClusterVersion to every
// configured store. Returns nil on success; otherwise returns first
// error encountered writing to the stores.
//
// WriteClusterVersion makes no attempt to validate the supplied version.
func (ls *Stores) WriteClusterVersion(ctx context.Context, cv cluster.ClusterVersion) error {
// Update all stores.
var engines []engine.Engine
ls.storeMap.Range(func(_ int64, v unsafe.Pointer) bool {
engines = append(engines, (*Store)(v).Engine())
return true // want more
})
return WriteClusterVersionToEngines(ctx, engines, cv)
}