# README
Cluster versions
Introduction
TODO(radu): move most of the documentation from clusterversion.go.
Runbooks
This section contains runbooks for the necessary steps associated with releasing new versions.
Overview
The graph below shows the steps that have to be taken to release a new version and update master for the following version. We use the example of releasing 24.1 (in the line of releases 23.1, 23.2, 24.1, 24.2).
graph TD;
base("Cut release-24.1 branch
Latest = 23.2-x
PreviousRelease = 23.1
MinSupported = 23.1
version.txt = v24.1.0-alpha.00000000")
base -- release-24.1 --> rel1
rel1("R.1: Prepare for beta
Latest = 23.2-x
PreviousRelease = 23.1
MinSupported = 23.1
developmentBranch = false
version.txt = v24.1.0-beta.1")
rel1 --> rel2
rel2("R.2: Mint release
Latest = 24.1
PreviousRelease = 23.1
MinSupported = 23.1
developmentBranch = false
finalVersion = V24_1
version.txt = v24.1.0")
base -- master --> master1
master1("M.1: Bump current version
Latest = 24.1-2
PreviousRelease = 23.1
MinSupported = 23.1
version.txt = v24.2.0-alpha.00000000")
master1 --> master2
master2("M.2: Enable mixed-cluster logic tests
Latest = 24.1-x
PreviousRelease = 23.1
MinSupported = 23.1
version.txt = v24.2.0-alpha.00000000")
master2 --> master3
master3("M.3: Enable upgrade tests
Latest = 24.1-x
PreviousRelease = 23.2
MinSupported = 23.1
version.txt = v24.2.0-alpha.00000000")
master3 --> master4
master4("M.4: Bump min supported
Latest = 23.2-x
PreviousRelease = 23.2
MinSupported = 23.2
version.txt = v24.2.0-alpha.00000000")
master4 --> master5
master5(M.5: Finalize gates and bootstrap data for released version)
Release branch changes
The changes below happen directly on the release branch (and only on that
branch). They are not normal backports of changes from master
.
R.1: Prepare for beta
What: This change prepares the branch for releasing the initial beta. The
first beta is special because starting with this version we allow production
clusters from the previous version to be upgraded to the beta version; and,
consequently, we allow and support upgrading from the beta cluster version to
the final release cluster version. This transition is achieved by setting
developmentBranch
to false
; see developmentBranch
and DevOffset
in the
code for more details.
When: When we are ready to select the first beta candidate.
Checklist:
- Set
developmentBranch
constant tofalse
- Update
version.txt
to the beta version, e.g.24.1.0-beta.1
- Regenerate docs (
./dev gen docs
) - Regenerate expected test data results as needed
Example PR: #113912
R.2: Mint release
What: This change finalizes the cluster version for the release.
When: When we are absolutely sure that we no longer need additional version gates - right before the final RC at the latest.
Checklist:
- Replace temporary constant for current release (e.g.
V24_1
) with a cluster version key, associated with a "final" (Internal=0
) version (e.g.24.1
) - Set
finalVersion
constant to the key (e.g.V24_1
) - Update
pkg/build/version.txt
to the final version (e.g.24.1.0
) - Regenerate docs (
./dev gen docs
) - Regenerate expected test data results as needed
Example PR: #112347
Master branch changes
The changes below happen on the master
branch after forking the release, and
are not backported to the release-xx.y
branch.
M.1: Bump current version
What: This change advances the current release series version (which allows the addition of new upgrade gates for the next version). It does not yet enable any mixed-cluster or upgrade tests with the forked release.
When: Around the time we are cutting the first beta of the forked release. Technically this step can happen right after forking, but if there are changes to the gates or upgrades in the forked release it might cause master-to-master upgrades to cause opaque issues.
Checklist:
-
Add version key constant for new release (e.g.
V24_2
), equal toLatest
. Note that we do NOT update thePreviousRelease
constant. We can only update thePreviousRelease
when an RC is published, which is needed for upgrade roachtests. -
Add final version for the previous release (e.g.
V24_1
). -
Add start version (e.g.
V24_2Start
with version24.1-2
) and add a new first upgrade for it (inupgrades/upgrades.go
). -
Do not update
PreviousRelease
constant. We can only update thePreviousRelease
when an RC is published, which is needed for upgrade roachtests. -
Update
roachpb.successorSeries
map and updateTestReleaseSeriesSuccessor
-
Update
pkg/build/version.txt
to the new version (e.g.v24.2.0-alpha.00000000
) -
Update the
scplan
rules inpkg/sql/schemachanger/scplan/internal/rules
:- copy the contents of
current
into a new release directory for the previous version (e.g.release_24_1
) - change package name in all files (including
BUILD.bazel
), and update the version incurrent/helpers.go
- update
rulesForReleases
inscplan/plan.go
- rewrite the test outputs:
./dev test pkg/sql/schemachanger/scplan/internal/rules/... --rewrite
- rewrite
TestDeclarativeRules
output:./dev test pkg/cli -f DeclarativeRules --rewrite
- copy the contents of
-
Update releases file:
bazel build //pkg/cmd/release:release _bazel/bin/pkg/cmd/release/release_/release update-releases-file
Note that the forked release version will disappear from the releases file. This is what we want; if it is here, we will attempt to run upgrade tests against it.
-
Regenerate expected test data as needed (usually
pkg/sql/catalog/systemschema_test
and some logictests).
Sample PR: #134750
M.2: Enable mixed-cluster logic tests
What: This change adds bootstrap data for the forked release (allowing test code to simulate a cluster that was created in that release) and adds the respective logictest config.
When: It is recommended to start this process around the time the first RC of the forked release is cut. It can happen earlier, but we don't want it to happen while there is a high chance of in-progress changes that affect the bootstrap data in a meaningful way.
Checklist:
-
Create new SQL bootstrap data. This is necessary because we want code on
master
to be able to bootstrap clusters at the previous version, but we will no longer have that code around. The data is obtained from the release branch (e.g.release-24.1
) using thesql-bootstrap-data
utility:./dev build sql-bootstrap-data && bin/sql-bootstrap-data
This will create a set of files that need to be copied to
pkg/sql/catalog/bootstrap/data
on themaster
branch; it will also output what code modifications need to be performed. -
Add mixed version logictest config for the forked version (
local-mixed-24.1
). Make sure the new config is part ofDefaultConfigNames
. Run./dev gen
. -
Update logictests as needed. There should be a few cases where we skip a statement in mixed version scenarios, and we might need to add a
skipif config local-mixed-24.1
alongside an existingskipif config local-mixed-23.2
.
Sample PR: #135291
M.3: Enable upgrade tests
What: This change recognizes the forked release as an available release and enables upgrade tests from that version.
When: After the first RC of the forked release is published. It can NOT happen any earlier, as we currently need a publicly available RC release to generate the necessary fixtures.
Checklist:
-
Update
PreviousRelease
constant to the forked release. -
Create new roachtest fixtures for the previous version (see
pkg/cmd/roachtest/fixtures/README.md
). Note that the version used must have the final version minted (typically therc.1
version or later). -
Verify the logic in
supportsSkipUpgradeTo
(pkg/cmd/roachtest/roachtestutil/mixedversion/mixedversion.go
) is correct for the new release. -
Add
cockroach-go-testserver-...
logictest config for the forked version (e.g.cockroach-go-testserver-24.1
) and add it tocockroach-go-testserver-configs
. Run./dev gen
and fix up any tests that need changing. -
Update releases file:
bazel build //pkg/cmd/release:release _bazel/bin/pkg/cmd/release/release_/release update-releases-file
The forked release should now show up in this file (with the just published RC version).
-
Check that all gates for the previous release are identical on the
master
and release branch.
Sample PR: TODO
M.4: Bump min supported
What: This change advances the MinSupported
version. This needs to be
either one or two versions behind the current release - we support "skipping"
innovation releases. Once MinSupported
is advanced, all older non-permanent
version keys are no longer necessary - Cockroach code will never deal with a
cluster below MinSupported
.
When: Any time after M.3.
Note: If we need to bump MinSupported by two versions, it can be done all at
once or in two separate PRs. Historically we have seen tests that need
non-trivial fixing when MinSupported
is bumped, so it is recommended to do it
in two PRs.
Checklist:
-
Advance
MinVersion
to either: the previous release if the next release is an innovation release; or the last regular release if the next release is a regular release. -
Rename all non-permanent version keys below
MinVersion
, prependingTODO_Delete_
to them. This can be done in the same PR or in a follow-up PR.Additional context
The way we name version gates can potentially be misleading:-
Gates beginning with
{MAJOR_SERIES}*
help migrate the system from{MAJOR_SERIES}-1
to{MAJOR_SERIES}
. These gates have cluster versions below that of the final release version for{MAJOR_SERIES}
: they use the previous series major and minor and a non-zero (and even) internal value. For example,V23_2SomeFeature
would be associated with a version likev23.1-x
(e.g.v23.1-8
). -
Once
MinSupported
is advanced to{MAJOR_SERIES}
we no longer need these{MAJOR_SERIES}*
gates. For example, a gate likeV23_2SomeFeature
is used during 23.1 → 23.2 upgrade; onceMinSupported = V23_2
this gate will always be "active" in any clusters our code has to deal with.
-
-
Remove logictest configs that involve now-unsupported versions (and run
./dev gen testlogic bazel
). -
Remove
pkg/sql/catalog/bootstrap
data for now-unsupported versions. -
Update
pkg/storage.MinimumSupportedFormatVersion
andstorage.pebbleVersionMap
-
Update
pkg/sql/schemachanger/scplan.rulesForReleases
and remove the defunct package(s) insiderules
. -
File issue(s) to remove
TODO_Delete_
uses and simplify related code; assign to relevant teams (depending on which top-level packages use such gates). Version checks against what is now the minimum version (e.g.V23_2
) should also be removed, as this version will always be active.For the overachiever
Historically, these cleanup issues have not received much attention and the code was carried over for a long time. Feel free to ping individuals or do some of the cleanup directly (in separate PRs).The cleanup comes down to simplifying the code based on the knowledge that
IsActive()
will always returntrue
for obsolete gates. If simplifying the code becomes non-trivial, error on the side of just removingIsActive()
calls and leaving TODOs for further cleanup.Example PRs: #124013, #124286
-
Regenerate expected test data results as needed; file issues for any skipped tests. Note that upgrade tests in
pkg/upgrade/upgrades
useclusterversion.SkipWhenMinSupportedVersionIsAtLeast()
so they can be removed later (as part of cleaning up the obsolete gates).
Example PRs: TODO
M.5: Finalize gates and bootstrap data for released version
What: Bring in any last changes to bootstrap data and version gates from the release.
When: When the final .0 release is out.
Checklist:
-
Repeat the "create new SQL bootstrap data" step from M.2.
-
Check that all gates for the previous release are identical on the
master
and release branch.
Example PR: TODO