-
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
132108: raft: add ability to determine whether we can safely de-fortify r=iskettaneh a=arulajmani This patch starts saving a leaderMaxSupported timestamp on the FortificationTracker, which corresponds to the largest timestamp that's ever been returned to callers of LeadSupportUntil. Consequently, this is then serves as an upper bound of a leader lease for a given term. We then use this to ensure we don't regress a lease's expiration when we cease to become the leader. In particular, we use it to compute whether we can de-fortify or not. This then ensures we don't vote for another peer when we shouldn't (as we aren't de-fortified), we don't call an election when we shouldn't (which would be quite bad given it de-fortifies the entire raft group), and we don't broadcast a MsgDefortifyLeader to the entire raft group. Informs #129098 Release note: None 132274: opt: add more tests for new opt rule r=DrewKimball a=DrewKimball This commit adds a few additional tests for the `TryDecorrelateUnion` decorrelation rule. Epic: none Release note: None 132460: kvserver: update the send queue size metrics r=kvoli a=sumeerbhola This is a tiny bug fix, in that all the plumbing work was already done, and just the update calls were forgotten. Epic: CRDB-37515 Release note: None 132462: cluster-ui: simplify requests for tmj job status and trigger r=xinhaoz a=xinhaoz This commit removes some unnecessarily complex refresh logic for the tmj job status and reqs to trigger the job. We now request both on a 10s interval. In addition, when data is being refreshed and the refresh button is disabled, its tooltip text will now display "Data is currently refreshing". Epic: CRDB-37558 Release note (ui change): In the new db and tables pages, when cached data is being refreshed, the refresh button will be disabled and its tooltip text will display, "Data is currently refreshing". 132466: rac2: fixes to send-queue metrics maintained by rangeController r=kvoli a=sumeerbhola Epic: CRDB-37515 Release note: None 132482: ui, tablemetadatacache: disable sorting on auto stats collection columns, expose batch size as a cluster setting r=xinhaoz a=xinhaoz cluster-ui: disable sorting on auto stats columns In the table overview page disable sorting on the columns pertaining to auto stats collection. These columns are not sortable. Epic: CRDB-37558 Release note: None ------------------ tablemetadatacache: make the update job table batch size a CS This commit makes the update job batch size adjustable via a cluster setting. Epic: none Release note: None `@xinhaoz` Co-authored-by: Arul Ajmani <[email protected]> Co-authored-by: Drew Kimball <[email protected]> Co-authored-by: sumeerbhola <[email protected]> Co-authored-by: Xin Hao Zhang <[email protected]>
- Loading branch information
Showing
25 changed files
with
655 additions
and
427 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.