decrease lambda concurrency from 32 to 12

This commit is contained in:
Daniel Roth 2026-06-29 13:32:53 +00:00
parent 98ba8d89dc
commit 71b304fa47
2 changed files with 4 additions and 4 deletions

View file

@ -26,7 +26,7 @@ variable "reserved_concurrent_executions" {
variable "maximum_concurrency" {
type = number
default = 32
default = 12
description = "Maximum concurrent Lambda invocations from the SQS trigger."
}

View file

@ -43,15 +43,15 @@ COMPLETED_SINCE: datetime | None = datetime(
DRY_RUN: bool = False
# False → Lambda skips the Google Solar fetch (re-uses stored Solar data).
REFETCH_SOLAR: bool = True
REFETCH_SOLAR: bool = False
# False → use stored lodged EPC for properties that have one; properties with no
# stored lodged EPC are treated as EPC-less and routed to prediction (no API call).
REFETCH_EPC: bool = True
REFETCH_EPC: bool = False
# False → use stored predicted EPC for EPC-less properties that have one; live
# prediction still runs when no stored predicted EPC exists for the property.
REPREDICT_EPC: bool = True
REPREDICT_EPC: bool = False
# ---------------------------------------------------------------------------
_REPO_ROOT = Path(__file__).resolve().parents[1]