A city scales out replicas of a ticket-intake API behind a load balancer. Which 12-factor process design supports stopping and replacing any instance safely?
Select an answer to reveal the explanation.
Short Explanation
Disposable processes are like spare fire trucks—any unit can leave the line if the shared gear locker holds the state. Local-disk-only sessions break when that truck is replaced.
Full Explanation
Twelve-factor processes are stateless and share-nothing; durable session or job state belongs in a backing store. Local disk or in-memory sticky state prevents safe stop-and-replace and blocks horizontal scale-out. Stateless design lets the platform recycle instances without losing citizen workflow progress.