diff --git a/src/current/_data/releases.yml b/src/current/_data/releases.yml index 3eacbe01dd4..a0c9c20d870 100644 --- a/src/current/_data/releases.yml +++ b/src/current/_data/releases.yml @@ -5088,7 +5088,7 @@ release_date: '2023-11-07' release_type: Testing go_version: go1.21 - sha: 45bfb4bf0c88330c273363039b8063d6ed516da4 + sha: 56fd045302ed2edc14831fb001ef77486ae8f62a has_sql_only: true has_sha256sum: true mac: diff --git a/src/current/_includes/releases/v23.2/v23.2.0-alpha.6.md b/src/current/_includes/releases/v23.2/v23.2.0-alpha.6.md index 8e3a23833bb..31247d6819e 100644 --- a/src/current/_includes/releases/v23.2/v23.2.0-alpha.6.md +++ b/src/current/_includes/releases/v23.2/v23.2.0-alpha.6.md @@ -16,6 +16,7 @@ Release Date: November 7, 2023

Operational changes

- Introduced the [cluster setting](../v23.2/cluster-settings.html) `kv.gc.sticky_hint.enabled` that helps expediting [garbage collection](../v23.2/architecture/storage-layer.html#garbage-collection) after range deletions. For example, when a SQL table or index is dropped. `kv.gc.sticky_hint.enabled` is enabled by default in v23.2. The setting has been deprecated in v23.2. [#113040][#113040] +- Introduced a new [environment variable](../v23.2/set-vars.html) that allows an operator to configure the [compaction](../v23.2/architecture/storage-layer.html#compaction) concurrency. [#113313][#113313] - [Debug zip](../v23.2/cockroach-debug-zip.html) will now collect the active traces of all running or reverting traceable jobs. This includes [restores](../v23.2/restore.html), [imports](../v23.2/import.html), [backups](../v23.2/backup.html), and physical cluster replication. [#113172][#113172]

Cluster virtualization

@@ -32,10 +33,18 @@ Release Date: November 7, 2023 - Fixed a bug in a method that was used by some of the [jobs](../v23.2/show-jobs.html) observability infrastructure. This method could be triggered if a file was overwritten with a different chunking strategy. [#113290][#113290] - Fixed a bug where the result of [`SHOW CREATE TABLE`](../v23.2/show-create.html) for a table that had a [collated string column](../v23.2/collate.html) with a default expression was incorrect because the statement could not be parsed. [#113119][#113119] - Fixed the SQL activity update job to: avoid conflicts on update, reduce the amount of data cached to only what the overview page requires, and fix the correctness of the top queries. [#112865][#112865] +- Fixed a bug that could prevent physical cluster replication from advancing in the face of some range deletion operations. [#113041][#113041] +- Fixed a bug where [`ALTER TYPE`](../v23.2/alter-type.html) could get stuck if [`DROP TYPE`](../v23.2/drop-type.html) was executed concurrently. [#113644][#113644] +- Fixed a bug that could cause internal errors or panics while attempting to forecast [statistics](../v23.2/show-statistics.html) on a numeric column. [#113797][#113797] +- Rolled back deletes no longer cause a discrepancy between computed statistics and the actual stored values. [#113766][#113766] + +

Performance improvements

+ +- Addressed a performance regression that can happen when the declarative [schema changer](../v23.2/online-schema-changes.html#declarative-schema-changer) is used to create an index with a concurrent workload. [#113725][#113725]

Contributors

-This release includes 70 merged PRs by 28 authors. +This release includes 117 merged PRs by 49 authors. [#112627]: https://github.com/cockroachdb/cockroach/pull/112627 [#112739]: https://github.com/cockroachdb/cockroach/pull/112739 @@ -43,10 +52,16 @@ This release includes 70 merged PRs by 28 authors. [#112865]: https://github.com/cockroachdb/cockroach/pull/112865 [#112967]: https://github.com/cockroachdb/cockroach/pull/112967 [#113040]: https://github.com/cockroachdb/cockroach/pull/113040 +[#113041]: https://github.com/cockroachdb/cockroach/pull/113041 [#113071]: https://github.com/cockroachdb/cockroach/pull/113071 [#113076]: https://github.com/cockroachdb/cockroach/pull/113076 [#113105]: https://github.com/cockroachdb/cockroach/pull/113105 [#113119]: https://github.com/cockroachdb/cockroach/pull/113119 [#113172]: https://github.com/cockroachdb/cockroach/pull/113172 [#113284]: https://github.com/cockroachdb/cockroach/pull/113284 -[#113290]: https://github.com/cockroachdb/cockroach/pull/113290 \ No newline at end of file +[#113290]: https://github.com/cockroachdb/cockroach/pull/113290 +[#113313]: https://github.com/cockroachdb/cockroach/pull/113313 +[#113644]: https://github.com/cockroachdb/cockroach/pull/113644 +[#113725]: https://github.com/cockroachdb/cockroach/pull/113725 +[#113766]: https://github.com/cockroachdb/cockroach/pull/113766 +[#113797]: https://github.com/cockroachdb/cockroach/pull/113797