-
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
110930: gcjob_test: add more logging to TestGCJobRetry r=rafiss a=andyyang890 This patch adds more logging to `TestGCJobRetry` to help debug occasional flakes. Informs: #110447 Release note: None 111510: api: increase timeout to request execution details r=maryliag a=adityamaru In large clusters requesting execution details can definitely take longer than 5 seconds. This is because it involves collecting cluster wide traces, goroutines and contacting the coordinator node of the job to dump its execution details. Since this is a debug only tool we bump the timeout to 300s to give it all the time it needs. Epic: none Release note: None 111701: sql: add tests for privileges for statements in udfs r=rharding6373 a=rharding6373 This PR adds test coverage for privileges in UDFs, e.g., SELECT and INSERT privileges. Epic: CRDB-25388 Informs: #87289 Release note: None 111704: Roachtest azure nightly r=healthy-pod,herkolategan a=smg260 These are a series of commits to enable roachtests to run on Azure in TeamCity. 1. Add the relevant teamcity invoke script 2. Update authentication to look in CLI or environment for dev and TC respectively 3. Look for a default subscription in the environment, with fallback to existing "pick first" implementation 4. Add a security rule to allow roachtest host machine to connect to a vm via kafka admin 5. Update azure default location to one with more quota and `apt-get update` before installing go for a cdc test (failed on azure) A follow up PR will enable an initial set of roachtests to run. Epic: CC-25185 Release note: none 111776: go.mod: bump Pebble to b013ca78e9dc r=RaduBerinde a=RaduBerinde b013ca78 db: keep track of virtual sstable size sum 62251e69 db: make checkpoint test even more deterministic c7c47d6b db: turn testingAlwaysWaitForCleanup into an option a05b0192 db: keep track of virtual sstable count in metrics 3c778710 db: add test for virtual sstable checkpointing cb4dab66 db: add metrics for num backing sstables and size 8317cf38 db: incrementally keep tracking of backing table size 0f80e184 Update index.html aa077af6 go.mod: specify Go 1.20 ccb9a7dc manifest: add invariant check for duplicate file backings 699fc0e8 db: only create one CreatedBackingTables entry per sstable b2da10c6 db: remove trailing whitespace from compacting log line 1d696c79 db: cleanup btree obsoletion logic Fixes: #111674 Release note: none Co-authored-by: Andy Yang <[email protected]> Co-authored-by: adityamaru <[email protected]> Co-authored-by: rharding6373 <[email protected]> Co-authored-by: Miral Gadani <[email protected]> Co-authored-by: Radu Berinde <[email protected]>
- Loading branch information
Showing
15 changed files
with
243 additions
and
70 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 |
---|---|---|
|
@@ -1599,10 +1599,10 @@ def go_deps(): | |
patches = [ | ||
"@com_github_cockroachdb_cockroach//build/patches:com_github_cockroachdb_pebble.patch", | ||
], | ||
sha256 = "9418eb96febfa50da2f02f87501d0459a8205fea8f91b539300a03c7f62a6d61", | ||
strip_prefix = "github.com/cockroachdb/[email protected]20230927205513-725ebe297867", | ||
sha256 = "da88d66f323769d609581b310f42a9bcc245cb3c321f0fae2aea7d2ed7c9fe13", | ||
strip_prefix = "github.com/cockroachdb/[email protected]20231003235536-b013ca78e9dc", | ||
urls = [ | ||
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/cockroachdb/pebble/com_github_cockroachdb_pebble-v0.0.0-20230927205513-725ebe297867.zip", | ||
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/cockroachdb/pebble/com_github_cockroachdb_pebble-v0.0.0-20231003235536-b013ca78e9dc.zip", | ||
], | ||
) | ||
go_repository( | ||
|
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
11 changes: 11 additions & 0 deletions
11
build/teamcity/cockroach/nightlies/roachtest_nightly_azure.sh
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,11 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -exuo pipefail | ||
|
||
dir="$(dirname $(dirname $(dirname $(dirname "${0}"))))" | ||
|
||
source "$dir/teamcity-support.sh" # For $root | ||
source "$dir/teamcity-bazel-support.sh" # For run_bazel | ||
|
||
BAZEL_SUPPORT_EXTRA_DOCKER_ARGS="-e LITERAL_ARTIFACTS_DIR=$root/artifacts -e AZURE_CLIENT_ID -e AZURE_CLIENT_SECRET -e AZURE_SUBSCRIPTION_ID -e AZURE_TENANT_ID -e BUILD_VCS_NUMBER -e CLOUD -e COCKROACH_DEV_LICENSE -e TESTS -e COUNT -e GITHUB_API_TOKEN -e GITHUB_ORG -e GITHUB_REPO -e GOOGLE_EPHEMERAL_CREDENTIALS -e SLACK_TOKEN -e TC_BUILDTYPE_ID -e TC_BUILD_BRANCH -e TC_BUILD_ID -e TC_SERVER_URL -e SELECT_PROBABILITY" \ | ||
run_bazel build/teamcity/cockroach/nightlies/roachtest_nightly_impl.sh |
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.