From 1bffca2bd943f311cb338b3321d9f37ac694c213 Mon Sep 17 00:00:00 2001 From: Nathan VanBenschoten Date: Mon, 19 Oct 2020 20:20:23 -0400 Subject: [PATCH] roachtest: bump estimated max warehouses of tpccbench/nodes=3/cpu=16 Now that we're importing instead of restoring and picking up a number of optimizations along the way, this estimated max warehouse count is too low. This is why we have been flatlining on: https://roachperf.crdb.dev/?filter=&view=tpccbench%2Fnodes%3D3%2Fcpu%3D16&tab=gce --- pkg/cmd/roachtest/tpcc.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/cmd/roachtest/tpcc.go b/pkg/cmd/roachtest/tpcc.go index 5e535f7142b..7b3a222807d 100644 --- a/pkg/cmd/roachtest/tpcc.go +++ b/pkg/cmd/roachtest/tpcc.go @@ -369,8 +369,8 @@ func registerTPCC(r *testRegistry) { Nodes: 3, CPUs: 16, - LoadWarehouses: gceOrAws(cloud, 2000, 3000), - EstimatedMax: gceOrAws(cloud, 1600, 2500), + LoadWarehouses: gceOrAws(cloud, 2500, 3000), + EstimatedMax: gceOrAws(cloud, 2200, 2500), }) registerTPCCBenchSpec(r, tpccBenchSpec{ Nodes: 12,