We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13866fc commit 91e35fbCopy full SHA for 91e35fb
pkg/cmd/roachtest/tests/admission_control_database_drop.go
@@ -29,7 +29,12 @@ func registerDatabaseDrop(r registry.Registry) {
29
spec.CPU(8),
30
spec.WorkloadNode(),
31
spec.WorkloadNodeCPU(8),
32
- spec.VolumeSize(500),
+ // 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),
38
spec.GCEVolumeType("pd-ssd"),
39
spec.GCEMachineType("n2-standard-8"),
40
spec.GCEZones("us-east1-b"),
0 commit comments