Dark Launch
Active testingThe new code is deployed in production without impacting the current operation
Description
Dark Launching (DL) is a pattern for delivery [Cartwright 2022] and consists in deploying the code “invisible to everyone except internal employees and small cohorts of real users, allowing us to test and evolve the feature until it achieves the desired business goal” [Kim 2016]. The term was coined in 2008 when Facebook revealed the technique they used to launch Facebook Chat [Limoncelli 2014].
To enable DL, “Feature Toggles” (FT) must be introduced to disable user feedback and let the transaction behave differently [Limoncelli 2014] to help debugging. A FT is implemented with a key/value mechanism (say an XML file); the code checks the value of a key which can be the feature identifier, the value tells if the new code should be run or not. Since the code is protected by a FT, it mainly avoids waiting until a big bang release [Kim 2016]. It enables trunk-based development [Hammant 2021] with a “everyone commits to trunk at least once a day” state of mind [Ford 2016].
Dark Launches differs from Canary Releasing because it does not require you to run multiple versions of an application in an environment simultaneously, which you must do for a canary release.
Impact on the testing maturity
Based on the Facebook example, Martin Fowler proposes as an example, a feature implementation roadmap that could be [Fowler 2020]: develop all back-end features and the UI will be held back and would then be a keystone in the new feature delivery process. DL is a mean to facilitate End-to-end (E2E) testing [Kim 2016]. Having a UI enables E2E Testing by Business Owners and internal testing, thus, “helding” doesn’t mean “develop at the end” because it will result in poor User experience. DL should be seen as a “Strangler pattern” [Fowler 2004] which consists in making something new that deprecates a small part of something old; then, after a few iterations, the whole new feature is delivered and replaces any old functionality [Harmmant 2013].
DL also enables simulating load testing-like across the whole product. This is a User-participative load testing and gives confidence that the system will be able to cope with realistic loads. It also provides some information for capacity planning [Limoncelli 2014].
Since DL is strongly linked with design, DL is a Built-in Quality pattern that requires to be introduced soon in the ideation process. It also requires people from Ops who should also take part of this design decision so that they will be aware of deployment constraints (e.g. a new configuration in a new XML file that needs to be deployed to make things run).
Agilitest’s standpoint on this practice
DL is a very useful pattern to enable test scripting ASAP. It clearly avoids waiting for the final delivery to code test scenarios. Although the #nocode technology involved in agilitest enables fast and stable scripting (no tricky algorithm to code and test along with the business), it eases the delivery flow and prevents Testers to generate yet another wall of confusion [Kawaguchi 2020] that will create quality issues.
To discover the whole set of practices, click here.
Related cards
To go further
- [Cartwright 2022] : Ian Cartwright & Rob Horn & James Lewis - JAN 2022 - “Patterns of Legacy Displacement” - https://martinfowler.com/articles/patterns-legacy-displacement/
- [Ford 2016] : Neal Ford - MAR 2016 - “Continuous Delivery 2 of 3 Tests, Synergy, and_Deployment” - https://nealford.com/downloads/Continuous_Delivery_2of3_Tests_Synergy_and_Deployment_Neal_Ford.pdf
- [Fowler 2004] : Martin Fowler - JUN 2004 - “StranglerFigApplication” - https://martinfowler.com/bliki/StranglerFigApplication.html
- [Fowler 2020] : Martin Fowler - APR2020 - “KeystoneInterface” - https://martinfowler.com/bliki/KeystoneInterface.html
- [Hammant 2021] : Paul Hammant - JAN 2021 - “Trunk Based Development - Introduction” - https://trunkbaseddevelopment.com/
- [Harmmant 2013] : Paul Hammant - JUL 2013 - “Legacy Application Strangulation - Case Studies” - https://paulhammant.com/2013/07/14/legacy-application-strangulation-case-studies/
- [Kawaguchi 2020] : Stephen Kawaguchi - FEB 2020 - “The Wall of Confusion”- https://levelup.gitconnected.com/the-wall-of-confusion-623057a4dd26
- [Kim 2016] : Gene Kim & Jez Humble & Patrick Debois & John Willis - 2016 - “The DevOps Handbook: How to Create World-Class Agility, Reliability, and Security in Technology Organizations” - isbn:9781942788072
- [Limoncelli 2014] : Thomas A. Limoncelli & Strata R. Chalup & Christina J. Hogan - 2014 - “The Practice of Cloud System Administration: DevOps and SRE Practices for Web Services, Volume 2” - isbn:9780133478532