Skip to content

Commit 91e35fb

Browse files
committed
roachtest: provision admission-control/database-drop with 800GiB/node
This gives the cluster >7TiB of available capacity, which should be more than enough to import the ~4.1TiB dataset. Epic: none Release note: None
1 parent 13866fc commit 91e35fb

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

pkg/cmd/roachtest/tests/admission_control_database_drop.go

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,12 @@ func registerDatabaseDrop(r registry.Registry) {
2929
spec.CPU(8),
3030
spec.WorkloadNode(),
3131
spec.WorkloadNodeCPU(8),
32-
spec.VolumeSize(500),
32+
// The dataset uses above 4TiB of data, and if we have to create the dataset
33+
// via IMPORT we need some buffer. 500GiB per node (4.5TiB total) has been
34+
// found to fail regularly in the past since the IMPORT job fails when any
35+
// node falls below 5% available capacity. 800GiB (7.2TiB) ought to be more
36+
// than enough.
37+
spec.VolumeSize(800),
3338
spec.GCEVolumeType("pd-ssd"),
3439
spec.GCEMachineType("n2-standard-8"),
3540
spec.GCEZones("us-east1-b"),

0 commit comments

Comments
 (0)