-
Notifications
You must be signed in to change notification settings - Fork 3.8k
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
67814: base: drop SlowRequestThreshold to 15s r=nvanbenschoten a=nvanbenschoten This commit drops `SlowRequestThreshold` from 60s to 15s. This constant dictates the delay before we consider the following four operations to be slow enough to log and/or increment "slow request" metrics: - raft proposals - raft proposal quota acquisition - lease acquisition - latch acquisition 67890: roachtest: skip jobs/mixed-version r=pbardea a=pbardea This test was unskipped and was passing locally, but it turns out that the test wasn't even running any IMPORT jobs locally. This test will need further investigation to see if IMPORTing a workload between versions is supported. Release note: None 67897: importccl: disallow IMPORT TABLE with expression indexes r=mgartner a=mgartner This commit adds an explanatory error message when a user tries to execute an `IMPORT TABLE` statement with an expression index. Previously, the error confusingly read "unimplemented: only simple columns are supported as index elements". Now it reads "unimplemented: to import into a table with expression indexes, use IMPORT INTO". Release note: None 67898: opt: better inference of computed columns involving composite types r=RaduBerinde a=RaduBerinde Composite types are those that can have values which are logically equal but not identical, for example decimals 1.0 and 1.00. We currently prevent inferring the value of a computed column if it depends on composite columns. This commit improves on this: we can infer the computed column as long as the expression is not "composite sensitive". For example, arithmetic operations are not composite sensitive, whereas conversion to string is. This improvement is necessary for sharded indexes on composite columns. Release note: None 67919: clisqlclient: fix the error handling in QueryRow r=arulajmani a=knz Found while working on #67917. 67922: changefeedccl: Correctly manage protected timestamps. r=miretskiy a=miretskiy Fix a minor logic bug where if we previously delayed job progress update, we may then fail to manage protected timestamp for some time. In addition, always checkpoing when reaching schema change boundary. We must always checkpoint when reaching boundary because the changefeed may need to restart (e.g. during primary key change). Release Notes: None 67943: roachprod: delete EBS volumes on termination r=miretskiy a=rail Fixes #67932 Previously, when a cluster was generated with `--local-ssd=false`, the EBS volume was created with `deleteOnTermination` set to `false`. As a result we ended up with many dangling volumes. The patch explicitly sets the `DeleteOnTermination` property for the `--local-ssd=false` case. Release note: None Co-authored-by: Nathan VanBenschoten <[email protected]> Co-authored-by: Paul Bardea <[email protected]> Co-authored-by: Marcus Gartner <[email protected]> Co-authored-by: Radu Berinde <[email protected]> Co-authored-by: Raphael 'kena' Poss <[email protected]> Co-authored-by: Yevgeniy Miretskiy <[email protected]> Co-authored-by: Rail Aliiev <[email protected]>
- Loading branch information
Showing
11 changed files
with
218 additions
and
47 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
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.