Skip to content

Commit 3a9fdaa

Browse files
committed
fix(aws): bound edge telemetry spool
Use the validated 1 GiB production spool ceiling so ECS edge tasks can start and remain within the application hard limit.
1 parent 87cea95 commit 3a9fdaa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

infra/aws/platform/compute.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ resource "aws_ecs_task_definition" "edge" {
325325
{ name = "REND_EDGE_TELEMETRY_FLUSH_INTERVAL_SECS", value = "2" },
326326
{ name = "REND_EDGE_TELEMETRY_REQUEST_TIMEOUT_SECS", value = "2" },
327327
{ name = "REND_EDGE_TELEMETRY_SPOOL_DIR", value = "/var/spool/rend/edge-telemetry" },
328-
{ name = "REND_EDGE_TELEMETRY_SPOOL_MAX_BYTES", value = "10737418240" },
328+
{ name = "REND_EDGE_TELEMETRY_SPOOL_MAX_BYTES", value = "1073741824" },
329329
])
330330
secrets = local.edge_container_secrets
331331
healthCheck = {

0 commit comments

Comments
 (0)