A licensing web tier stores sessions only in local memory on each EC2 host, so Auto Scaling replacements and load-balancer drains drop citizen logins. Which reliability pattern best enables elastic, ASG-friendly behavior?
Select an answer to reveal the explanation.
Short Explanation
Sessions glued to one box hate Auto Scaling—the citizen gets bounced when that box leaves. Park session state in a shared cache so any fresh instance can pick up the clipboard.
Full Explanation
Stateless or externally stored session state is required for reliable Auto Scaling. ElastiCache or equivalent shared session stores let replacements serve authenticated municipal users without affinity to a doomed instance. Disabling ASG, sticky unhealthy hosts, or manual scp of temp files preserve SPOFs and operational fragility.