Skip to content

Commit 0d682fd

Browse files
committed
no concurrency
1 parent 7d0a134 commit 0d682fd

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

infra/tf/function_dataform_export.tf

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,13 @@ resource "google_cloudfunctions2_function" "dataform_export" {
2525
}
2626
}
2727
service_config {
28-
max_instance_count = 20
29-
available_cpu = 2
30-
available_memory = "2G"
31-
timeout_seconds = 600
32-
service_account_email = local.function_identity
33-
ingress_settings = "ALLOW_INTERNAL_ONLY"
28+
max_instance_count = 20
29+
available_cpu = 4
30+
available_memory = "4G"
31+
timeout_seconds = 600
32+
max_instance_request_concurrency = 1
33+
service_account_email = local.function_identity
34+
ingress_settings = "ALLOW_INTERNAL_ONLY"
3435
}
3536
}
3637

0 commit comments

Comments
 (0)