-
Notifications
You must be signed in to change notification settings - Fork 3.8k
/
cockroach_versions.go
602 lines (580 loc) · 24.4 KB
/
cockroach_versions.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
// Copyright 2017 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 clusterversion
import (
"github.com/cockroachdb/cockroach/pkg/roachpb"
"github.com/cockroachdb/cockroach/pkg/util/envutil"
)
// Key is a unique identifier for a version of CockroachDB.
type Key int
// Version constants. These drive compatibility between versions as well as
// migrations. Before you add a version or consider removing one, please
// familiarize yourself with the rules below.
//
// # Adding Versions
//
// You'll want to add a new one in the following cases:
//
// (a) When introducing a backwards incompatible feature. Broadly, by this we
//
// mean code that's structured as follows:
//
// if (specific-version is active) {
// // Implies that all nodes in the cluster are running binaries that
// // have this code. We can "enable" the new feature knowing that
// // outbound RPCs, requests, etc. will be handled by nodes that know
// // how to do so.
// } else {
// // There may be some nodes running older binaries without this code.
// // To be safe, we'll want to behave as we did before introducing
// // this feature.
// }
//
// Authors of migrations need to be careful in ensuring that end-users
// aren't able to enable feature gates before they're active. This is fine:
//
// func handleSomeNewStatement() error {
// if !(specific-version is active) {
// return errors.New("cluster version needs to be bumped")
// }
// // ...
// }
//
// At the same time, with requests/RPCs originating at other crdb nodes, the
// initiator of the request gets to decide what's supported. A node should
// not refuse functionality on the grounds that its view of the version gate
// is as yet inactive. Consider the sender:
//
// func invokeSomeRPC(req) {
// if (specific-version is active) {
// // Like mentioned above, this implies that all nodes in the
// // cluster are running binaries that can handle this new
// // feature. We may have learned about this fact before the
// // node on the other end. This is due to the fact that migration
// // manager informs each node about the specific-version being
// // activated active concurrently. See BumpClusterVersion for
// // where that happens. Still, it's safe for us to enable the new
// // feature flags as we trust the recipient to know how to deal
// // with it.
// req.NewFeatureFlag = true
// }
// send(req)
// }
//
// And consider the recipient:
//
// func someRPC(req) {
// if !req.NewFeatureFlag {
// // Legacy behavior...
// }
// // There's no need to even check if the specific-version is active.
// // If the flag is enabled, the specific-version must have been
// // activated, even if we haven't yet heard about it (we will pretty
// // soon).
// }
//
// See clusterversion.Handle.IsActive and usage of some existing versions
// below for more clues on the matter.
//
// (b) When cutting a major release branch. When cutting release-20.2 for
//
// example, you'll want to introduce the following to `master`.
//
// (i) V20_2 (keyed to v20.2.0-0})
// (ii) Start21_1 (keyed to v20.2.0-1})
//
// You'll then want to backport (i) to the release branch itself (i.e.
// release-20.2). You'll also want to bump binaryMinSupportedVersion. In the
// example above, you'll set it to V20_2. This indicates that the
// minimum binary version required in a cluster with nodes running
// v21.1 binaries (including pre-release alphas) is v20.2, i.e. that an
// upgrade into such a binary must start out from at least v20.2 nodes.
//
// Aside: At the time of writing, the binary min supported version is the
// last major release, though we may consider relaxing this in the future
// (i.e. for example could skip up to one major release) as we move to a more
// frequent release schedule.
//
// When introducing a version constant, you'll want to:
//
// (1) Add it at the end of this block. For versions introduced during and
// after the 21.1 release, Internal versions must be even-numbered. The
// odd versions are used for internal book-keeping. The Internal version
// should be the previous Internal version for the same minor release plus
// two.
// (2) Add it at the end of the `versionsSingleton` block below.
//
// # Migrations
//
// Migrations are idempotent functions that can be attached to versions and will
// be rolled out before the respective cluster version gets rolled out. They are
// primarily a means to remove legacy state from the cluster. For example, a
// migration might scan the cluster for an outdated type of table descriptor and
// rewrite it into a new format. Migrations are tricky to get right and they have
// their own documentation in ./pkg/upgrade, which you should peruse should you
// feel that a migration is necessary for your use case.
//
// # Phasing out Versions and Migrations
//
// Versions and Migrations can be removed once they are no longer going to be
// exercised. This is primarily driven by the BinaryMinSupportedVersion, which
// declares the oldest *cluster* (not binary) version of CockroachDB that may
// interface with the running node. It typically trails the current version by
// one release. For example, if the current branch is a `21.1.x` release, you
// will have a BinaryMinSupportedVersion of `21.0`, meaning that the versions
// 20.2.0-1, 20.2.0-2, etc are always going to be active on any peer and thus
// can be "baked in"; similarly all migrations attached to any of these versions
// can be assumed to have run (or not having been necessary due to the cluster
// having been initialized at a higher version in the first place). Note that
// this implies that all peers will have a *binary* version of at least the
// MinSupportedVersion as well, as this is a prerequisite for running at that
// cluster version. Finally, note that even when all cluster versions known
// to the current binary are active (i.e. most of the time), you still need
// to be able to inter-op with older *binary* and/or *cluster* versions. This
// is because *tenants* are allowed to run at any binary version compatible
// with (i.e. greater than or equal to) the MinSupportedVersion. To give a
// concrete example, a fully up-to-date v21.1 KV host cluster can have tenants
// running against it that use the v21.0 binary and any cluster version known
// to that binary (v20.2-0 ... v20.2-50 or thereabouts).
//
// You'll want to delete versions from this list after cutting a major release.
// Once the development for 21.1 begins, after step (ii) from above, all
// versions introduced in the previous release can be removed (everything prior
// to V20_2 in our example).
//
// When removing a version, you'll want to remove its associated runtime checks.
// All "is active" checks for the key will always evaluate to true. You'll also
// want to delete the constant and remove its entry in the `versionsSingleton`
// block below.
//
//go:generate stringer -type=Key
const (
invalidVersionKey Key = iota - 1 // want first named one to start at zero
// V22_1 is CockroachDB v22.1. It's used for all v22.1.x patch releases.
V22_1
// v22.2 versions.
//
// Start22_2 demarcates work towards CockroachDB v22.2.
Start22_2
// LocalTimestamps enables the use of local timestamps in MVCC values.
LocalTimestamps
// PebbleFormatSplitUserKeysMarkedCompacted updates the Pebble format
// version that recombines all user keys that may be split across multiple
// files into a single table.
PebbleFormatSplitUserKeysMarkedCompacted
// EnsurePebbleFormatVersionRangeKeys is the first step of a two-part
// migration that bumps Pebble's format major version to a version that
// supports range keys.
EnsurePebbleFormatVersionRangeKeys
// EnablePebbleFormatVersionRangeKeys is the second of a two-part migration
// and is used as the feature gate for use of range keys. Any node at this
// version is guaranteed to reside in a cluster where all nodes support range
// keys at the Pebble layer.
EnablePebbleFormatVersionRangeKeys
// TrigramInvertedIndexes enables the creation of trigram inverted indexes
// on strings.
TrigramInvertedIndexes
// RemoveGrantPrivilege is the last step to migrate from the GRANT privilege to WITH GRANT OPTION.
RemoveGrantPrivilege
// MVCCRangeTombstones enables the use of MVCC range tombstones.
MVCCRangeTombstones
// UpgradeSequenceToBeReferencedByID ensures that sequences are referenced
// by IDs rather than by their names. For example, a column's DEFAULT (or
// ON UPDATE) expression can be defined to be 'nextval('s')'; we want to be
// able to refer to sequence 's' by its ID, since 's' might be later renamed.
UpgradeSequenceToBeReferencedByID
// SampledStmtDiagReqs enables installing statement diagnostic requests that
// probabilistically collects stmt bundles, controlled by the user provided
// sampling rate.
SampledStmtDiagReqs
// AddSSTableTombstones allows writing MVCC point tombstones via AddSSTable.
// Previously, SSTs containing these could error.
AddSSTableTombstones
// SystemPrivilegesTable adds system.privileges table.
SystemPrivilegesTable
// EnablePredicateProjectionChangefeed indicates that changefeeds support
// predicates and projections.
EnablePredicateProjectionChangefeed
// AlterSystemSQLInstancesAddLocality adds a locality column to the
// system.sql_instances table.
AlterSystemSQLInstancesAddLocality
// SystemExternalConnectionsTable adds system.external_connections table.
SystemExternalConnectionsTable
// AlterSystemStatementStatisticsAddIndexRecommendations adds an
// index_recommendations column to the system.statement_statistics table.
AlterSystemStatementStatisticsAddIndexRecommendations
// RoleIDSequence is the version where the system.role_id_sequence exists.
RoleIDSequence
// AddSystemUserIDColumn is the version where the system.users table has
// a user_id column for writes only.
AddSystemUserIDColumn
// SystemUsersIDColumnIsBackfilled is the version where all users in the system.users table
// have ids.
SystemUsersIDColumnIsBackfilled
// SetSystemUsersUserIDColumnNotNull sets the user_id column in system.users to not null.
SetSystemUsersUserIDColumnNotNull
// SQLSchemaTelemetryScheduledJobs adds an automatic schedule for SQL schema
// telemetry logging jobs.
SQLSchemaTelemetryScheduledJobs
// SchemaChangeSupportsCreateFunction adds support of CREATE FUNCTION
// statement.
SchemaChangeSupportsCreateFunction
// DeleteRequestReturnKey is the version where the DeleteRequest began
// populating the FoundKey value in the response.
DeleteRequestReturnKey
// PebbleFormatPrePebblev1Marked performs a Pebble-level migration and
// upgrades the Pebble format major version to FormatPrePebblev1Marked. This
// migration occurs at the per-store level and is twofold:
// - Each store is first bumped to a Pebble format major version that raises
// the minimum supported sstable format to (Pebble,v1) (block properties). New
// tables generated by Pebble (via compactions / flushes), and tables written
// for ingestion will be at table format version (Pebble,v1).
// - Each store is then instructed to mark all existing tables that are
// pre-Pebblev1 for a low-priority compaction. In a future release of
// Cockroach (likely 23.1), a blocking migration will be run to
// rewrite-compact on any remaining marked tables.
PebbleFormatPrePebblev1Marked
// RoleOptionsTableHasIDColumn is the version where the role options table
// has ids.
RoleOptionsTableHasIDColumn
// RoleOptionsIDColumnIsBackfilled is the version where ids in the role options
// table are backfilled.
RoleOptionsIDColumnIsBackfilled
// SetRoleOptionsUserIDColumnNotNull is the version where the role
// options table id column cannot be null. This is the final step
// of the system.role_options table migration.
SetRoleOptionsUserIDColumnNotNull
// UseDelRangeInGCJob enables the use of the DelRange operation in the
// GC job. Before it is enabled, the GC job uses ClearRange operations
// after the job waits out the GC TTL. After it has been enabled, the
// job instead issues DelRange operations at the beginning of the job
// and then waits for the data to be removed automatically before removing
// the descriptor and zone configurations.
UseDelRangeInGCJob
// WaitedForDelRangeInGCJob corresponds to the migration which waits for
// the GC jobs to adopt the use of DelRange with tombstones.
WaitedForDelRangeInGCJob
// RangefeedUseOneStreamPerNode changes rangefeed implementation to use 1 RPC stream per node.
RangefeedUseOneStreamPerNode
// NoNonMVCCAddSSTable adds a migration which waits for all
// schema changes to complete. After this point, no non-MVCC
// AddSSTable calls will be used outside of tenant streaming.
NoNonMVCCAddSSTable
// GCHintInReplicaState adds GC hint to replica state. When this version is
// enabled, replicas will populate GC hint and update them when necessary.
GCHintInReplicaState
// UpdateInvalidColumnIDsInSequenceBackReferences looks for invalid column
// ids in sequences' back references and attempts a best-effort-based matching
// to update those column IDs.
UpdateInvalidColumnIDsInSequenceBackReferences
// TTLDistSQL uses DistSQL to distribute TTL SELECT/DELETE statements to
// leaseholder nodes.
TTLDistSQL
// PrioritizeSnapshots adds prioritization to sender snapshots. When this
// version is enabled, the receiver will look at the priority of snapshots
// using the fields added in 22.2.
PrioritizeSnapshots
// EnableLeaseUpgrade version gates a change in the lease transfer protocol
// whereby we only ever transfer expiration-based leases (and have
// recipients later upgrade them to the more efficient epoch based ones).
// This was done to limit the effects of ill-advised lease transfers since
// the incoming leaseholder would need to recognize itself as such within a
// few seconds. This needs version gating so that in mixed-version clusters,
// as part of lease transfers, we don't start sending out expiration based
// leases to nodes that (i) don't expect them for certain keyspans, and (ii)
// don't know to upgrade them to efficient epoch-based ones.
EnableLeaseUpgrade
// SupportAssumeRoleAuth is the version where assume role authorization is
// supported in cloud storage and KMS.
SupportAssumeRoleAuth
// FixUserfileRelatedDescriptorCorruption adds a migration which uses
// heuristics to identify invalid table descriptors for userfile-related
// descriptors.
FixUserfileRelatedDescriptorCorruption
// EnableRangefeedElasticCPUControl enables automatic pacing of rangefeed
// scans through admission control. This needs version gating as it relies
// on admission headers being fully populated for RangefeedRequests,
// something that was not true in older versions.
//
// TODO(irfansharif): Depends on v22.2 being minted first.
//
// EnableRangefeedElasticCPUControl
// *************************************************
// Step (1): Add new versions here.
// Do not add new versions to a patch release.
// *************************************************
)
// TODOPreV22_1 is an alias for V22_1 for use in any version gate/check that
// previously referenced a < 22.1 version until that check/gate can be removed.
const TODOPreV22_1 = V22_1
// rawVersionsSingleton lists all historical versions here in chronological
// order, with comments describing what backwards-incompatible features were
// introduced.
//
// A roachpb.Version has the colloquial form MAJOR.MINOR[.PATCH][-INTERNAL],
// where the PATCH and INTERNAL components can be omitted if zero. Keep in mind
// that a version with an internal component, like 1.1-2, represents a version
// that was developed AFTER v1.1 was released and is not slated for release
// until the next stable version (either 1.2-0 or 2.0-0). Patch releases, like
// 1.1.2, do not have associated migrations.
//
// NB: The version upgrade process requires the versions as seen by a cluster to
// be monotonic. Once we've added 1.1-0, we can't slot in 1.0-4 because
// clusters already running 1.1-0 won't migrate through the new 1.0-4 version.
// Such clusters would need to be wiped. As a result, do not bump the major or
// minor version until we are absolutely sure that no new migrations will need
// to be added (i.e., when cutting the final release candidate).
//
// rawVersionsSingleton is converted to versionsSingleton below, by adding a
// large number to every major if building from master, so as to ensure that
// master builds cannot be upgraded to release-branch builds.
var rawVersionsSingleton = keyedVersions{
{
Key: V22_1,
Version: roachpb.Version{Major: 22, Minor: 1},
},
// v22.2 versions. Internal versions must be even.
{
Key: Start22_2,
Version: roachpb.Version{Major: 22, Minor: 1, Internal: 2},
},
{
Key: LocalTimestamps,
Version: roachpb.Version{Major: 22, Minor: 1, Internal: 4},
},
{
Key: PebbleFormatSplitUserKeysMarkedCompacted,
Version: roachpb.Version{Major: 22, Minor: 1, Internal: 6},
},
{
Key: EnsurePebbleFormatVersionRangeKeys,
Version: roachpb.Version{Major: 22, Minor: 1, Internal: 8},
},
{
Key: EnablePebbleFormatVersionRangeKeys,
Version: roachpb.Version{Major: 22, Minor: 1, Internal: 10},
},
{
Key: TrigramInvertedIndexes,
Version: roachpb.Version{Major: 22, Minor: 1, Internal: 12},
},
{
Key: RemoveGrantPrivilege,
Version: roachpb.Version{Major: 22, Minor: 1, Internal: 14},
},
{
Key: MVCCRangeTombstones,
Version: roachpb.Version{Major: 22, Minor: 1, Internal: 16},
},
{
Key: UpgradeSequenceToBeReferencedByID,
Version: roachpb.Version{Major: 22, Minor: 1, Internal: 18},
},
{
Key: SampledStmtDiagReqs,
Version: roachpb.Version{Major: 22, Minor: 1, Internal: 20},
},
{
Key: AddSSTableTombstones,
Version: roachpb.Version{Major: 22, Minor: 1, Internal: 22},
},
{
Key: SystemPrivilegesTable,
Version: roachpb.Version{Major: 22, Minor: 1, Internal: 24},
},
{
Key: EnablePredicateProjectionChangefeed,
Version: roachpb.Version{Major: 22, Minor: 1, Internal: 26},
},
{
Key: AlterSystemSQLInstancesAddLocality,
Version: roachpb.Version{Major: 22, Minor: 1, Internal: 28},
},
{
Key: SystemExternalConnectionsTable,
Version: roachpb.Version{Major: 22, Minor: 1, Internal: 30},
},
{
Key: AlterSystemStatementStatisticsAddIndexRecommendations,
Version: roachpb.Version{Major: 22, Minor: 1, Internal: 32},
},
{
Key: RoleIDSequence,
Version: roachpb.Version{Major: 22, Minor: 1, Internal: 34},
},
{
Key: AddSystemUserIDColumn,
Version: roachpb.Version{Major: 22, Minor: 1, Internal: 36},
},
{
Key: SystemUsersIDColumnIsBackfilled,
Version: roachpb.Version{Major: 22, Minor: 1, Internal: 38},
},
{
Key: SetSystemUsersUserIDColumnNotNull,
Version: roachpb.Version{Major: 22, Minor: 1, Internal: 40},
},
{
Key: SQLSchemaTelemetryScheduledJobs,
Version: roachpb.Version{Major: 22, Minor: 1, Internal: 42},
},
{
Key: SchemaChangeSupportsCreateFunction,
Version: roachpb.Version{Major: 22, Minor: 1, Internal: 44},
},
{
Key: DeleteRequestReturnKey,
Version: roachpb.Version{Major: 22, Minor: 1, Internal: 46},
},
{
Key: PebbleFormatPrePebblev1Marked,
Version: roachpb.Version{Major: 22, Minor: 1, Internal: 48},
},
{
Key: RoleOptionsTableHasIDColumn,
Version: roachpb.Version{Major: 22, Minor: 1, Internal: 50},
},
{
Key: RoleOptionsIDColumnIsBackfilled,
Version: roachpb.Version{Major: 22, Minor: 1, Internal: 52},
},
{
Key: SetRoleOptionsUserIDColumnNotNull,
Version: roachpb.Version{Major: 22, Minor: 1, Internal: 54},
},
{
Key: UseDelRangeInGCJob,
Version: roachpb.Version{Major: 22, Minor: 1, Internal: 56},
},
{
Key: WaitedForDelRangeInGCJob,
Version: roachpb.Version{Major: 22, Minor: 1, Internal: 58},
},
{
Key: RangefeedUseOneStreamPerNode,
Version: roachpb.Version{Major: 22, Minor: 1, Internal: 60},
},
{
Key: NoNonMVCCAddSSTable,
Version: roachpb.Version{Major: 22, Minor: 1, Internal: 62},
},
{
Key: GCHintInReplicaState,
Version: roachpb.Version{Major: 22, Minor: 1, Internal: 64},
},
{
Key: UpdateInvalidColumnIDsInSequenceBackReferences,
Version: roachpb.Version{Major: 22, Minor: 1, Internal: 66},
},
{
Key: TTLDistSQL,
Version: roachpb.Version{Major: 22, Minor: 1, Internal: 68},
},
{
Key: PrioritizeSnapshots,
Version: roachpb.Version{Major: 22, Minor: 1, Internal: 70},
},
{
Key: EnableLeaseUpgrade,
Version: roachpb.Version{Major: 22, Minor: 1, Internal: 72},
},
{
Key: SupportAssumeRoleAuth,
Version: roachpb.Version{Major: 22, Minor: 1, Internal: 74},
},
{
Key: FixUserfileRelatedDescriptorCorruption,
Version: roachpb.Version{Major: 22, Minor: 1, Internal: 76},
},
// *************************************************
// Step (2): Add new versions here.
// Do not add new versions to a patch release.
// *************************************************
}
const (
// developmentBranch should be toggled to false on a release branch once the
// set of versions becomes append-only and associated upgrade implementations
// are frozen. It is always true on the main development branch.
developmentBranch = true
// finalVersion should be set on a release branch to the minted final cluster
// version key, e.g. to V22_2 on the release-22.2 branch once it is minted.
// Setting it has the effect of ensuring no versions are subsequently added.
finalVersion = invalidVersionKey
)
// devVersionsAbove is the version key above which all versions are offset to be
// development version when developmentBranch is true. By default this is all
// versions, by setting this to -1, but an env var can override this, to leave
// the first version un-offset. Doing so means that that version, which is
// generally minBinaryVersion as well, is unchanged, and thus allows upgrading a
// stable release data-dir to a dev version if desired.
var devVersionsAbove Key = func() Key {
if envutil.EnvOrDefaultBool("COCKROACH_UPGRADE_TO_DEV_VERSION", false) {
return invalidVersionKey + 1
}
return invalidVersionKey
}()
var versionsSingleton = func() keyedVersions {
if developmentBranch {
const devOffset = 1000000
// Throw every version above the last release (which will be none on a release
// branch) 1 million major versions into the future, so any "upgrade" to a
// release branch build will be a downgrade and thus blocked.
for i := range rawVersionsSingleton {
if rawVersionsSingleton[i].Key > devVersionsAbove {
rawVersionsSingleton[i].Major += devOffset
}
}
}
return rawVersionsSingleton
}()
// TODO(irfansharif): clusterversion.binary{,MinimumSupported}Version
// feels out of place. A "cluster version" and a "binary version" are two
// separate concepts.
var (
// binaryMinSupportedVersion is the earliest version of data supported by
// this binary. If this binary is started using a store marked with an older
// version than binaryMinSupportedVersion, then the binary will exit with
// an error. This typically trails the current release by one (see top-level
// comment).
binaryMinSupportedVersion = ByKey(V22_1)
// binaryVersion is the version of this binary.
//
// This is the version that a new cluster will use when created.
binaryVersion = versionsSingleton[len(versionsSingleton)-1].Version
)
func init() {
if finalVersion > invalidVersionKey {
if binaryVersion != ByKey(finalVersion) {
panic("binary version does not match final version")
}
} else if binaryVersion.Internal == 0 {
panic("a non-upgrade cluster version must be the final version")
}
}
// ByKey returns the roachpb.Version for a given key.
// It is a fatal error to use an invalid key.
func ByKey(key Key) roachpb.Version {
return versionsSingleton.MustByKey(key)
}
// ListBetween returns the list of cluster versions in the range
// (from, to].
func ListBetween(from, to ClusterVersion) []ClusterVersion {
return listBetweenInternal(from, to, versionsSingleton)
}
func listBetweenInternal(from, to ClusterVersion, vs keyedVersions) []ClusterVersion {
var cvs []ClusterVersion
for _, keyedV := range vs {
// Read: "from < keyedV <= to".
if from.Less(keyedV.Version) && keyedV.Version.LessEq(to.Version) {
cvs = append(cvs, ClusterVersion{Version: keyedV.Version})
}
}
return cvs
}