Skip to content

Commit

Permalink
Merge #111082
Browse files Browse the repository at this point in the history
111082: teamcity-trigger: reduce streamingest paralleism r=rickystewart a=msbutler

This patch halves the cpu parallelism used for streamingest tests in the nightly stress job as an attempt to prevent test time outs that I suspect are due to resource exhaustion.

Fixes #111026
Fixes #110763

Release note: None

Co-authored-by: Michael Butler <butler@cockroachlabs.com>
  • Loading branch information
craig[bot] and msbutler committed Sep 22, 2023
2 parents 522df76 + 2a7436d commit 3c0be00
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/cmd/teamcity-trigger/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,8 @@ func runTC(queueBuild func(string, map[string]string)) {

if testTarget == "//pkg/sql/logictest:logictest_test" ||
testTarget == "//pkg/kv/kvserver:kvserver_test" ||
testTarget == "//pkg/ccl/backupccl:backupccl_test" {
testTarget == "//pkg/ccl/backupccl:backupccl_test" ||
testTarget == "//pkg/ccl/streamingccl/streamingest:streamingest_test" {
// Stress heavy with reduced parallelism (to avoid overloading the
// machine, see https://github.com/cockroachdb/cockroach/pull/10966).
parallelism /= 2
Expand Down

0 comments on commit 3c0be00

Please sign in to comment.