Skip to content

Commit 1415102

Browse files
feat: establish safe memory baseline at 2048MB
Set production baseline memory allocation to 2048MB for Java applications. This provides adequate headroom for heap + overhead requirements.
1 parent 84a6023 commit 1415102

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/scenarios/variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ variable "enable_memory_optimization_demo" {
1313
}
1414

1515
variable "memory_optimization_container_memory" {
16-
description = "Memory allocation per ECS container in MB. Optimized based on monitoring analysis showing 800MB average usage."
16+
description = "Memory allocation per ECS container in MB. Production baseline for Java applications with adequate headroom."
1717
type = number
18-
default = 1024
18+
default = 2048
1919

2020
validation {
2121
condition = var.memory_optimization_container_memory >= 512 && var.memory_optimization_container_memory <= 4096

0 commit comments

Comments
 (0)