-
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
131757: roachtest: fix pg_regress r=rytaft a=rytaft Fixes #130735 Release note: None 131774: cluster-ui: populate db name in db details page r=xinhaoz a=xinhaoz This commit populates the db name as the page title in the v2 db details page as well as breadcrumb navigation back to the db list page. To do so we all the get db metadata by id api on the details page. Epic: CRDB-37558 Fixes: #131119 Release note: None 131787: roachtest: fix rebalance/by-load/*/mixed-version shared process tests r=stevendanna,tbg a=kvoli In #129117, `rebalance/by-load/*/mixed-version` roachtest had shared-process multi-tenancy introduced, which would occasionally cause these tests to fail erroneously. The cause of all the failures was identical, CPU utilization of some nodes which couldn't have been possible, > 100%, e.g., ``` CPU not evenly balanced after timeout: outside bounds mean=102.5 tolerance=20.0% (±20.5) bounds=[82.0, 123.0] below = [s3: 81 (-20.7%), s5: 65 (-36.5%)] within = [s2: 116 (+14.0%), s4: 92 (-9.7%), s6: 88 (-13.2%)] above = [s1: 170 (+66.1%)] ``` As the query would aggregate every tenant's timeseries data on a given node, instead of only the system tenant. Update the timeseries utility used to query the CPU to also take in a `TenantID` parameter, which is then used to query only the system tenant. Fixes: #129962 Fixes: #131274 Fixes: #129464 Release note: None 131832: kvserver: fix dropped raft heartbeats in test helper r=kvoli a=pav-kv The `unreliableRaftHandlerFuncs` type drops messages by default, if the corresponding "drop" function is nil. The `enableVerboseRaftMsgLoggingForRange` is meant to add a no-op interceptor of all raft messages, but because of a bug it ended up dropping heartbeat responses. This caused lack of `MsgApp` stream liveness from leader to followers, and a perpetual `StateProbe`. Fixes #131735 Co-authored-by: Rebecca Taft <[email protected]> Co-authored-by: Xin Hao Zhang <[email protected]> Co-authored-by: Austen McClernon <[email protected]> Co-authored-by: Pavel Kalinnikov <[email protected]>
- Loading branch information
Showing
7 changed files
with
4,416 additions
and
4,409 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
// Copyright 2024 The Cockroach Authors. | ||
// | ||
// Use of this software is governed by the CockroachDB Software License | ||
// included in the /LICENSE file. | ||
|
||
export const DB_PAGE_PATH = "/databases"; | ||
export const databaseDetailsPagePath = (dbId: number) => `/databases/${dbId}`; |