-
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
87994: changefeedccl: parallelize event consumption r=jayshrivastava a=jayshrivastava Fixes: #86902 ### span: make span.Frontier thread safe Make `span.Frontier` thread safe by default. Release note: None ### changefeedccl: parallelize event consumption Previously, KV events were consumed and processed by changefeed aggregator using a single, synchronous Go routine. This PR makes it possible to run up to `changefeed.event_consumer_workers` consumers to consume events concurrently. The cluster setting `changefeed.event_consumer_worker_queue_size` is added to help control the number of concurrent events we can have in flight. Specifying `changefeed.event_consumer_workers=0` keeps existing single threaded implementation. Release note (enterprise change): This change adds the cluster setting `changefeed.event_consumer_workers` which allows changefeeds to process events concurrently. 88125: awsdms: use TC_BUILD_BRANCH as suffix if available r=jeremyyang920 a=otan roachtest/awsdms: include pre-release in version suffix Apparently master can get cut but still have an older version, so we need even more diffentiators to ensure uniqueness. Release note: None awsdms: use TC_BUILD_BRANCH as suffix if available Release note: None 88410: build: reconfigure git ssh key r=rail a=celiala The publishing of the first two 22.2 alphas has failed because the `.cockroach-teamcity-key` key for SSHing to GitHub was not present when the release tag was to be pushed to the cockroachdb/cockroach repo. This reruns the logic to `configure_git_ssh_key` before pushing the tag. This change was successfully tested on beta.1: * [Publish Cockroach Release for beta.1 branch](https://teamcity.cockroachdb.com/buildConfiguration/Internal_Release_PublishCockroachRelease?branch=v22.2.0-alpha.3-357-ga33d71dcd9&mode=builds) * See temporary change to Build Step script: [cockroachlabs/teamcity-config@master/.teamcity/Internal_Release_Publish/buildTypes/Internal_Release_PublishCockroachRelease.xml#L150](https://github.com/cockroachlabs/teamcity-config/blob/master/.teamcity/Internal_Release_Publish/buildTypes/Internal_Release_PublishCockroachRelease.xml?rgh-link-date=2022-09-26T20%3A48%3A07Z#L150) We will need to backport this to 22.2. Fixes RE-270 Release note: None Release justification: release pipeline infrastructure-only change 88632: *: Add fast gzip compression library. r=miretskiy a=miretskiy Add https://github.com/klauspost/pgzip fast gzip compression library. Addresses #88585 Release notes: None 88764: sqlliveness: change heartbeat timeouts to be a fraction of TTL r=ajwerner a=aadityasondhi Previously, the heartbeat timeouts were being set as the length of the heartbeat. This can cause issues when there is longer latency in the system and caused flaky tests. By making the heartbeat timout a fraction of the TTL, we are able to avoid timing out too early and also ensure that we can retry at least once before the seession expiry. Ran test with `--stress` to verify it doesn't flake: ``` 2559 runs so far, 0 failures, over 5m0s ``` Resolves: #88743 Release note: None Co-authored-by: Yevgeniy Miretskiy <[email protected]> Co-authored-by: Oliver Tan <[email protected]> Co-authored-by: Celia La <[email protected]> Co-authored-by: Aaditya Sondhi <[email protected]>
- Loading branch information
Showing
25 changed files
with
621 additions
and
75 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -118,6 +118,7 @@ tc_end_block "Make and push docker images" | |
|
||
|
||
tc_start_block "Push release tag to GitHub" | ||
configure_git_ssh_key | ||
git_wrapped push "ssh://[email protected]/${git_repo_for_tag}.git" "$build_name" | ||
tc_end_block "Push release tag to GitHub" | ||
|
||
|
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.