forked from cockroachdb/cockroach
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
89524: backupccl: use klauspost gzip library r=benbardin a=benbardin Expect some degree of speedup in manifest reading/writing, as in cockroachdb#88632. Release note: None 89903: sql: make NOTHING and INDEX non-reserved keywords r=rafiss a=knz Fixes cockroachdb#69420. Release note (bug fix): It is now possible again to create tables, views, columns, etc with the name `nothing` (e.g. `CREATE TABLE nothing...`) without having to quote the name, like in PostgreSQL. This bug was introduced in CockroachDB v2.0. Release note (bug fix): It is now possible again to create tables, views, columns, etc with the name `index` (e.g. `CREATE TABLE index...`) without having to quote the name, like in PostgreSQL. This bug was introduced in CockroachDB v1.0. 90000: workload/kv: fix --splits r=ajwerner a=kvoli Previously the `--splits` flag would generate splits assuming the kv workload would always access keys in `[MinInt64, MaxInt64)`. However, it was only true for the default uniform hash key generator. While it was disabled for `--sequential` and `--zipfian` generates keys in `[0, MaxInt64)`. The previous `--split` flag also resulted in an integer overflow when `--cycle-length` was greater than 0, only generating splits in `[MinInt64, 0)`. This patch resolves the overflow issue. This patch enables splits for `--sequential` and adjusts the `--splits` logic to equally partition the keyspace, according to the access distribution. The valid range for each is shown below. uniform `[MinInt64, MaxInt64)` sequential `[0, --cycle-length)` zipfian `[0, MaxInt64)` resolves cockroachdb#82906 Release note (cli change): In the kv workload enable `--splits` with the `--sequential` flag and adjust splitting to uniformly partition the keyspace. Co-authored-by: Ben Bardin <[email protected]> Co-authored-by: Raphael 'kena' Poss <[email protected]> Co-authored-by: Austen McClernon <[email protected]>
- Loading branch information
Showing
16 changed files
with
485 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.