Skip to content

Commit 2ff1daa

Browse files
committed
dashboard/app: double the requested CPU
We changes the machine type to c3-highmem-8. But forgot to double the CPU resources.
1 parent 4990027 commit 2ff1daa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dashboard/app/batch_main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ func createScriptJob(ctx context.Context, projectID, jobNamePrefix, script strin
4545
}},
4646
ComputeResource: &batchpb.ComputeResource{
4747
// CpuMilli is milliseconds per cpu-second. This means the task requires 2 whole CPUs.
48-
CpuMilli: 4000,
48+
CpuMilli: 8000,
4949
MemoryMib: 12 * 1024,
5050
},
5151
MaxRunDuration: &durationpb.Duration{

0 commit comments

Comments
 (0)