-
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.
75889: server: use constant for filtering internal stmt stats r=xinhaoz a=xinhaoz Previously, the internal app name prefix was hard-coded into the query used to fetch combined stmt/txn stats. This commit replaces that usage with the pre-existing internal app prefix defined in constants. Release note: None 76209: kv: enforce minimum Raft snapshot rate limit r=nvanbenschoten a=nvanbenschoten Related to #75728. This commit enforces a minimum Raft snapshot rate limit of 1mb/s. We've seen recent problems (#75728) related to mis-configured cluster settings, so it's best to protect ourselves from this kind of misconfiguration. ``` [email protected]:26257/movr> set cluster setting kv.snapshot_rebalance.max_rate = '8'; ERROR: invalid value for kv.snapshot_rebalance.max_rate: snapshot rate cannot be set to a value below 1.0 MiB: 8 B [email protected]:26257/movr> set cluster setting kv.snapshot_rebalance.max_rate = '8Kib'; ERROR: invalid value for kv.snapshot_rebalance.max_rate: snapshot rate cannot be set to a value below 1.0 MiB: 8.0 KiB [email protected]:26257/movr> set cluster setting kv.snapshot_rebalance.max_rate = '8Mib'; SET CLUSTER SETTING ``` 76236: tlp: respect test shutdown deadline r=jordanlewis a=jordanlewis Closes #74675 This commit fixes the TLP test shutdown routine to actually begin shutting down 5 minutes before the test timeout. Before, the code that was supposed to check the timeout was not reached reliably. Release note: None Co-authored-by: Xin Hao Zhang <[email protected]> Co-authored-by: Nathan VanBenschoten <[email protected]> Co-authored-by: Jordan Lewis <[email protected]>
- Loading branch information
Showing
5 changed files
with
33 additions
and
10 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