package
24.3.6+incompatible
Repository: https://github.com/cockroachdb/cockroach.git
Documentation: pkg.go.dev

# 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
        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
        MinSupported = 23.1
        developmentBranch = false
        version.txt = v24.1.0-beta.1")
  
  rel1 --> rel2
  
  rel2("R.2: Mint release
        Latest = 24.1
        MinSupported = 23.1
        developmentBranch = false
        finalVersion = V24_1
        version.txt = v24.1.0")


  base -- master --> master1
  
  master1("M.1: Bump min supported
           Latest = 23.2-x
           MinSupported = 23.2
           version.txt = v24.1.0-alpha.y")
            
  master1 --> master2
    
  master2("M.2: Bump current version
           Latest = 24.1-2
           MinSupported = 23.2
           version.txt = v24.2.0-alpha.00000000")
            
  master2 --> master3
            
  master3(M.3: 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 to false
  • 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 min supported

What: This change advances the MinSupported version. This is normally two versions behind the current release (we support "skipping" a version during upgrade as an experimental feature). 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: It is recommended to start this process when the first release candidate is cut (i.e. there are no open GA blockers). The main reason is to avoid large changes on master which might cause merge conflicts for backports.

Checklist:

  • Advance MinVersion to the previous release (e.g. V23.2)

  • Rename all non-permanent version keys below MinVersion, prepending TODO_Delete_ to them.

    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 like v23.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 like V23_2SomeFeature is used during 23.1 → 23.2 upgrade; once MinSupported = V23_2 this gate will always be "active" in any clusters our code has to deal with.

  • Remove logictest config that bootstraps to the old minimum supported version (and run ./dev gen testlogic).

  • 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 return true for obsolete gates. If simplifying the code becomes non-trivial, error on the side of just removing IsActive() 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 use clusterversion.SkipWhenMinSupportedVersionIsAtLeast() so they can be removed later (as part of cleaning up the obsolete gates).

Example PRs: #121775 #122062 #122244

M.2: Bump current version

What: This change advances the current release series version.

When: Any time after M.1 and after a RC build of the previous version is public.

Checklist:

  • Add version key constant for new release (e.g. V24.2), equal to Latest

  • Update PreviousRelease constant

  • Add start version (e.g. V24.2Start with version 24.1-2)

  • Update pkg/build/version.txt to the new version (e.g. v24.2.0-alpha.00000000)

  • Add mixed version logictest config for the replaced version (local-mixed-24.1). Make sure the new config is part of DefaultConfigNames.

  • Update the scplan rules in pkg/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 in current/helpers.go
    • update rulesForReleases in scplan/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
  • 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 the rc.1 version or later).

  • 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 the sql-bootstrap-data utility:

    ./dev build sql-bootstrap-data
    ./bin/sql-bootstrap-data
    

    This will create a pair of files that need to be copied to pkg/sql/catalog/bootstrap/data on the master branch; it will also output what code modifications need to be performed. Note that the BUILD.bazel will

  • also need to be modified to include the new embedded files under embedsrcs.

  • Update releases file:

    bazel build //pkg/cmd/release:release
    _bazel/bin/pkg/cmd/release/release_/release update-releases-file
    

Example PR: #112271 #123650

M.3: Finalize gates and bootstrap data for released version

What: Bring in any last changes to bootstrap data and version gates from the release.

When: Any time after minting the previous release (R.2), and after M.2.

Checklist:

  • Repeat the "create new SQL bootstrap data" step from M.2

  • Create the final gate for the previous release, the same one created in R.2. All gates from the previous release should be identical on the master and release branches.

Example PR: TODO

# Functions

AssertInitialized checks whether Initialize() has been called yet.
EncodingFromVersionStr is a shorthand to generate an encoded cluster version from a version string.
Initialize initializes the global cluster version.
ListBetween returns the list of cluster versions in the range (from, to].
MakeMetrics is a function that creates the metrics defined in the Metrics struct.
MakeVersionHandle returns a Handle that has its binary and minimum supported versions initialized to the provided versions.
RegisterOnVersionChangeCallback is a callback function that updates the cluster.preserve-downgrade-option.last-updated when the cluster.preserve_downgrade_option settings is changed.
RemoveDevOffset removes DevOffset from the given version, if it was applied.
SkipWhenMinSupportedVersionIsAtLeast skips this test if MinSupported is >= the given version.
StringForPersistence returns the string representation of the given version in cases where that version needs to be persisted.
SupportedPreviousReleases returns the list of final versions for previous that are supported by this branch (and from which we can upgrade an existing cluster).

# Constants

DevelopmentBranch must be true on the main development branch but should be set to false on a release branch once the set of versions becomes append-only and associated upgrade implementations are frozen.
DevOffset is the offset applied to major versions into the future if this is a dev branch.
KeyVersionSetting is the "version" settings key.
Latest is always the highest version key.
MinSupported is the minimum logical cluster version supported by this branch.
PreviousRelease is the logical cluster version of the previous release.
V24_1 is CockroachDB v24.1.
V24_2 is CockroachDB v24.2.
V24_2_DeleteTenantSettingsVersion is the migration that deletes the `system.tenant_settings` row for the `version` setting.
V24_2_LeaseMinTimestamp is the earlier version which supports the lease minimum timestamp field.
V24_2_StmtDiagRedacted is the migration to add `redacted` column to the system.statement_diagnostics_requests table.
V24_2_TenantRates is the migration to add the `current_rates` and `next_rates` consumption rate columns to the system.tenant_usage table.
V24_2_TenantSystemTables is the migration that creates the system tables in app tenants that were previously missing due to only being present in the system tenant.
V24_2Start demarcates the start of cluster versions stepped through during the process of upgrading from 24.1 to 24.2.
V24_3 is CockroachDB v24.3.
V24_3_AddTableMetadataCols is the migration to add additional columns to the system.table_metadata table.
V24_3_AddTimeseriesZoneConfig is the version that adds an explicit zone config for the timeseries range if one does not exist currently.
V24_3_AdvanceCommitIndexViaMsgApps is the version that makes the commit index advancement using MsgApps only, and not MsgHeartbeat.
V24_3_MaybePreventUpgradeForCoreLicenseDeprecation is the migration step that checks for the core license deprecation.
V24_3_SQLInstancesAddDraining is the migration to add the `is_draining` column to the system.sql_instances table.
V24_3_Start demarcates the start of cluster versions stepped through during the process of upgrading from 24.2 to 24.3.
V24_3_StoreLivenessEnabled is the earliest version which supports the use of the StoreLiveness fabric.
V24_3_TableMetadata is the migration to add the table_metadata table to the system tenant.
V24_3_TenantExcludeDataFromBackup is the migration to add `exclude_data_from_backup` on certain system tables with low GC TTL to mirror the behaviour on the system tenant.
V24_3_UseRACV2Full is the earliest version which supports ranges using replication flow control v2, with v2 entry encoding.
V24_3_UseRACV2WithV1EntryEncoding is the earliest version which supports ranges using replication flow control v2, still with v1 entry encoding.
Version constants.
VBootstrap versions are associated with bootstrap steps; no new bootstrap versions should be added, as the bootstrap{System,Cluster} functions in the upgrades package are extended in-place.
Version constants.

# Variables

AutoUpgradeEnabled is used to enable and disable automatic upgrade.
DoctorBinaryVersion level used by the debug doctor when validating any files.
No description provided by the author
TestingClusterVersion is a ClusterVersion that tests can use when they don't want to go through a Settings object.

# Structs

Metrics defines the settings tracked in prometheus.

# Interfaces

Handle is the interface through which callers access the active cluster version and this binary's version details.

# Type aliases

Key is a unique identifier for a version of CockroachDB.