Hacker News new | ask | show | jobs
by sun_bear 2004 days ago
Blue/green deployment is often used. There are always two instances of the app running, with one of them handling requests.

You deploy to the other one, do a health check, warm it up and start routing to it.

No downtime.