diff options
| -rw-r--r-- | dashboard/app/batch_main.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dashboard/app/batch_main.go b/dashboard/app/batch_main.go index d5ae07d46..36f15e0f3 100644 --- a/dashboard/app/batch_main.go +++ b/dashboard/app/batch_main.go @@ -44,8 +44,8 @@ func createScriptJob(ctx context.Context, projectID, jobNamePrefix, script strin }, }}, ComputeResource: &batchpb.ComputeResource{ - // CpuMilli is milliseconds per cpu-second. This means the task requires 2 whole CPUs. - CpuMilli: 4000, + // CpuMilli is milliseconds per cpu-second. This means the task requires 8 whole CPUs. + CpuMilli: 8000, MemoryMib: 12 * 1024, }, MaxRunDuration: &durationpb.Duration{ |
