On very busy sites AND severe SLA for downtimes AND using apache webserver AND for updates involving a significant number of files (eg.: >10), over the suggestions of "Jon Cram" and "Chris Henry" you can use this simple trick:
in your live environment using 2 document root, 1st with your old files and the 2nd with new files (you have already testing in staging), and symbolic links to share what you cannot duplicate, then:
1. in the apache config file switch the document root from old to new
2. check the config file (apachectl -S)
3. graceful restart the apache (apachectl graceful)
the apache will finish to serve the old requests in the old environment and start the new requests in the new environment.
- Of course you have already done the patches to DB
- Of course you have to write code that avoid conflicts to DB (eg.: using new tables and
new cols)
- Of course is more simple: stop the site, patch it and restart it
May be you don't use apache but many web server have this capabilities.