Skip to content

Commit

Permalink
Merge #66492
Browse files Browse the repository at this point in the history
66492: roachtest: skip initBulkJobPerfArtifacts r=adityamaru a=tbg

When we added prometheus histograms we did not realize that this method would
register a histogram containing special characters. This would break the
roachtest run; it hasn't been running for a few days.

This is a hotfix to get it back on its feet. Real fix is tracked in:
#66491

cc @cockroachdb/test-eng @cockroachdb/bulk-io

Release note: None


Co-authored-by: Tobias Grieger <[email protected]>
  • Loading branch information
craig[bot] and tbg committed Jun 15, 2021
2 parents 734919d + 058148c commit 63ac8bd
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkg/cmd/roachtest/backup.go
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,10 @@ func registerBackupNodeShutdown(r *testRegistry) {
// initBulkJobPerfArtifacts registers a histogram, creates a performance
// artifact directory and returns a method that when invoked records a tick.
func initBulkJobPerfArtifacts(ctx context.Context, testName string, timeout time.Duration) func() {
// TODO(tbg,aditya): this is temporarily skipped, figure out a fix. See:
// https://cockroachlabs.slack.com/archives/CJ0H8Q97C/p1623776034188400
return func() {}

// Register a named histogram to track the total time the bulk job took.
// Roachperf uses this information to display information about this
// roachtest.
Expand Down

0 comments on commit 63ac8bd

Please sign in to comment.