Skip to content

Commit

Permalink
no concurrency
Browse files Browse the repository at this point in the history
  • Loading branch information
max-ostapenko committed Dec 10, 2024
1 parent 7d0a134 commit 0d682fd
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions infra/tf/function_dataform_export.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,13 @@ resource "google_cloudfunctions2_function" "dataform_export" {
}
}
service_config {
max_instance_count = 20
available_cpu = 2
available_memory = "2G"
timeout_seconds = 600
service_account_email = local.function_identity
ingress_settings = "ALLOW_INTERNAL_ONLY"
max_instance_count = 20
available_cpu = 4
available_memory = "4G"
timeout_seconds = 600
max_instance_request_concurrency = 1
service_account_email = local.function_identity
ingress_settings = "ALLOW_INTERNAL_ONLY"
}
}

Expand Down

0 comments on commit 0d682fd

Please sign in to comment.