-
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
77329: kvserver: self delegated snapshots r=amygao9 a=amygao9 This commit adds a new rpc stream for sending raft message requests between replicas which allows for delegating snapshots. Currently this patch implements the leaseholder delegating to itself, but in future patches the leaseholder will be able to delegate snapshot sending to follower replicas. A new raft message request type of `DelegatedSnapshotRequest` includes a header of nessesary fields from a `SnapshotRequest` and the replica descriptor of the new sender replica. This allows the leaseholder to fill in snapshot metadata before delegating to the new sender store to generate the snapshot and transmit it to the recipient. Related to #42491 Release note: None 79968: backupccl: AWS AssumeRole support for BulkIO operations r=DarrylWong a=DarrylWong Before, the only way for users to authenticate with AWS was by implicit authentication or specified with an Access Key and Secret. Now, users can authenticate by passing in an AssumeRole ARN with the approriate permissions. This change encompasses AWS KMS encryption and backup/restore to a S3 bucket. Release note (enterprise): Users can now authenticate to AWS by passing in the argument AWS_ROLE_ARN=<role-ARN> 80274: metric: Add new alerting rules from docs r=tbg a=rimadeodhar Add alerting rules documented in our customer facing docs to the new alerting and aggregation rules endpoint. This endpoint is intended to be used as a guideline for configuring alerts and aggregation rules for our customers. The alerts outlined in the doc were added before this endpoint was created. Now that we have a more structured way to communicate ways to alert and aggregate our metrics, we should transition these alerts to this endpoint and update our documentation to reference the endpoint. This PR also fixes a small bug which was causing the details of the tripped circuit breakers rule to be flipped with the unavailable ranges rule. Release note (api change): Update api/v2/rules endpoint to include alerts defined in our customer facing docs. Release note (bug fix): Fix the bug which was causing the unavailable ranges rule details to be flipped with the tripped circuit breakers. Resolves #78051 80341: sql: rewrite sql stats compaction job to avoid scanning mvcc garbage r=maryliag,mgartner a=Azhng Related to #79548 Previously, SQL Stats cleanup job's performance could severely degrade and cannot keep up with the write load, since its `DELETE` statements often needed to scan over large range of MVCC garbage. This commit addresses this issue by further constraining the scans of the `DELETE` statements to reduce how much MVCC garbage it scans over. Release note: None 80502: clusterversion: mint 22.1 cluster version r=irfansharif,jlinder a=celiala This commit will mint a 22.1 cluster version. This will be backported onto both release-22.1/release-22.1.0. Partial work for #80555 ### Minting: what is it and when to do it? Minting a cluster version indicates the end of one release and the beginning of the next. Minting closes the door on any future version gates or migrations being backported to 21.1; i.e. once we mint the version, we cannot add new migrations/version gates under it without requiring a wipe of any clusters that ran a build including the mint. Because of this, we should only merge this onto the 22.1 release branch once we’re sure we won’t need any more cluster versions. In terms of timing, the release team plans for this to be the last commit backported onto 22.1 immediately before choosing the SHA for an rc.1. Release justification: Non-production code change. Release note: None 80654: authors: Add Joe Sankey to AUTHORS r=rafiss a=joesankey Release note: None Co-authored-by: Amy Gao <[email protected]> Co-authored-by: Darryl <[email protected]> Co-authored-by: rimadeodhar <[email protected]> Co-authored-by: Azhng <[email protected]> Co-authored-by: Celia La <[email protected]> Co-authored-by: joesankey <[email protected]>
- Loading branch information
Showing
42 changed files
with
1,438 additions
and
189 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -214,6 +214,7 @@ Jimmy Larsson <[email protected]> | |
Jincheng Li <[email protected]> | ||
Jingguo Yao <[email protected]> | ||
Joe Harlow <[email protected]> | ||
Joe Sankey <[email protected]> | ||
Joel Kenny <[email protected]> | ||
Joey Pereira <[email protected]> <[email protected]> <[email protected]> | ||
joezxy <[email protected]> <[email protected]> | ||
|
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.