Peter Gfader's brain noise
Remove humans from your process, they slow you down

At LinkedIn, it’s almost entirely automated. “Humans have largely been removed from the process,” Scott says. “Humans slow you down.”

Full article
http://mobile.businessweek.com/articles/2013-04-10/inside-operation-inversion-the-code-freeze-that-saved-linkedin

Why continuous deployment?

It encourages learning and teams that deploy it get faster over time

This is a little older post from Eric Ries from June 2009, but with lots of good stuff in it.

Great bits:

The goal of continuous deployment is to help development teams drive waste out of their process by simultaneously reducing the batch size and increasing the tempo of their work. 

—-

Read More

How to: zero-downtime database deployments

Great idea to split database deployments in 2 steps.

  1. expansion scripts
  2. contraction scripts (cleanup)

The expansion scripts are run at some point prior to upgrading the application and the contraction scripts are run once the system has been upgraded and considered stable. This produces a nice benefit of decoupling database migrations from application deployments. The expansion scripts could be run a day or more in advance of the application deployment at a time that is convenient for database changes. The contraction scripts could be run potentially days after the deployment once everything has been validated with the new release.

Weekly Release Blog #11 – Zero-Downtime Database Deployment
http://exortech.com/blog/2009/02/01/weekly-release-blog-11-zero-downtime-database-deployment/

Facebook’s BitTorrent deployment system

Interesting facts about Facebooks code:

  • 1 binary
  • 1.5GB in size
  • PHP into heavily optimized C++ code
  • Rollout takes ~ 30min
  • minor updates every single business day
  • Deployment doesn’t need scheduled downtime or cause any other disruption to the website

All the details
http://arstechnica.com/business/2012/04/exclusive-a-behind-the-scenes-look-at-facebook-release-engineering/

Continuous Deployment to Azure with TFS
Deploying a previous version was never so easy!!! #appharbor
This reminds me to the old times with TFS/msbuild/msdeploy where I had to jump through some hoops in order to deploy a previous version… (Powershell scripts)

Deploying a previous version was never so easy!!! #appharbor

This reminds me to the old times with TFS/msbuild/msdeploy where I had to jump through some hoops in order to deploy a previous version… (Powershell scripts)