Skip to content

Commit

Permalink
changefeedccl: Add vmodule to cdc/bank
Browse files Browse the repository at this point in the history
Turn up verbose level in cdc/bank test
to try to narrow down the cause of timeout in #92546

Release note: None
  • Loading branch information
Yevgeniy Miretskiy committed Dec 8, 2022
1 parent 1f50a93 commit 345fd85
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pkg/cmd/roachtest/tests/cdc.go
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,11 @@ func runCDCBank(ctx context.Context, t test.Test, c cluster.Cluster) {
crdbNodes, workloadNode, kafkaNode := c.Range(1, c.Spec().NodeCount-1), c.Node(c.Spec().NodeCount), c.Node(c.Spec().NodeCount)
c.Put(ctx, t.Cockroach(), "./cockroach", crdbNodes)
c.Put(ctx, t.DeprecatedWorkload(), "./workload", workloadNode)
c.Start(ctx, t.L(), option.DefaultStartOpts(), install.MakeClusterSettings(), crdbNodes)
startOpts := option.DefaultStartOpts()
startOpts.RoachprodOpts.ExtraArgs = append(startOpts.RoachprodOpts.ExtraArgs,
"--vmodule=changefeed=2",
)
c.Start(ctx, t.L(), startOpts, install.MakeClusterSettings(), crdbNodes)

kafka, cleanup := setupKafka(ctx, t, c, kafkaNode)
defer cleanup()
Expand Down

0 comments on commit 345fd85

Please sign in to comment.