You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current deployment process can be improved so that we have minimal downtime of the live server by implementing the following improvements:
the system packages, virtualenv and app code can all be deployed before taking the live site down
the only mandatory downtime is for the database rebuild since we need to prevent any database writes so that we don't lose data while the deployment is in progress
we can use versioned symlinks to switch over to the new release with minimal downtime
The text was updated successfully, but these errors were encountered:
The downtime between builds should be no more than a second or so if there are no migrations to run. Additionally, Nginx continues to run, meaning we could serve a custom 502.html if we wanted to.
The current deployment process can be improved so that we have minimal downtime of the live server by implementing the following improvements:
The text was updated successfully, but these errors were encountered: