In the near future, I'll be deploying a Django/Gunicorn/Nginx website to paying customers. This is my first public website. There will be times when I'll need to bring the site down temporarily for maintenance. I've learned how to configure Nginx to serve up a "503 Site Temporarily Unavailable" page while I'm doing my maintenance and I'm set to inform my customers in advance via an email.
However, if I have a critical problem and need to change a setting or view or something and I need to restart the site without any advance warning by restarting Gunicorn, what will happen from the customer's point of view? Will the site just slow down for a couple of seconds? Will their sessions remain intact or will all sessions be lost? Clearly there will be database problems if any writes are occuring. What things are going to happen and are there any precautions I can take to limit the damage?