BT

Facilitating the Spread of Knowledge and Innovation in Professional Software Development

Write for InfoQ

Topics

Choose your language

InfoQ Homepage News Book Excerpt and Review: Release It!

Book Excerpt and Review: Release It!

Bookmarks

Release It!: Design and Deploy Production-Ready Software by Michael Nygard discusses what it takes to make production-ready software, and explains how this differs from feature-complete software. On his website, Nygard described the motivation behind writing this book:

This book comes from my extensive experience living with systems in production. I've often been the one to get woken up at three in the morning when some supposedly 24x7 system goes down.

Other books on design and architecture only tell you how to meet functional requirements. They help your software pass QA. In "Release It!", I'll show you how to make your software production ready. If you don't want to wear an electronic leash, you need this book.

Read Book Excerpt and Review: Release It!

From the article:

InfoQ: There seems to be a tension between the up-front work involved in creating production-ready software and the Agile idea that you do something only when you need to, and refactor as necessary - what are your thoughts on this?

Michael Nygard: As an agile developer, I struggle with this tension myself. I don't have a perfect answer for resolving it, but I think there's a parallel here to good object-oriented design.

Once you've written some code and some unit tests that pass---regardless of which came first---you refactor the code to improve the design. "Improve". Well, what does it mean to improve the design? Doesn't that mean you have to have some notion of "better" and "worse" as it applies to OO design? It does, and that's where Martin Fowler's "code smells" from Refactoring come in. "Code smells" are a qualitative way to talk about better and worse design without getting all hung up on metrics.

I think there's something similar for the architecture. For me, a remote call without a timeout is an "architecture smell". So is a SOAP call or a REST GET that tries to fetch all orders for a customer, without applying a limit.

So, while I do not subscribe to big design up front, or "big architecture up front", I do believe in defining the boundaries within the system, designing failure modes into it, and eliminating "architecture smells" as we encounter them.

Rate this Article

Adoption
Style

Hello stranger!

You need to Register an InfoQ account or or login to post comments. But there's so much more behind being registered.

Get the most out of the InfoQ experience.

Allowed html: a,b,br,blockquote,i,li,pre,u,ul,p

Community comments

  • Superb book

    by Stefan Tilkov,

    Your message is awaiting moderation. Thank you for participating in the discussion.

    Michael's book is among the best IT books I've read in the past five years. Thoroughly recommended!

  • It sounds very interesting

    by hernan garcia,

    Your message is awaiting moderation. Thank you for participating in the discussion.

    As the lead of an agile team that is some time wake up at three in the morning I really feel the urge to read this book, just adding it to my queue.

  • Excellent Article

    by Ranjiva Prasad,

    Your message is awaiting moderation. Thank you for participating in the discussion.

    I will be buying this book as a belated Xmas present for everyone on my team. I have lost count of the number of times that I have been woken up at 3am in the morning, because my developers did not think about how an application they built would behave in a production environment. The extra sleep I will get will far offset the costs of buying 20 copies of this book!

  • Re: Superb book

    by Mirko Nasato,

    Your message is awaiting moderation. Thank you for participating in the discussion.

    +1

    An excellent book indeed, and a needed one. I really think "the industry" (i.e. we developers) need to put more focus on how applications behave in production.

    Maybe part of the problem is also that many developers will never get awakened at 3am anyway, because operations will be someone else's job, and they don't get a chance to learn much about this very important aspect of software development.

    I think it would be interesting to investigate "organisational" patterns as well that can help improve application robustness, in addition to the technical design patterns.

Allowed html: a,b,br,blockquote,i,li,pre,u,ul,p

Allowed html: a,b,br,blockquote,i,li,pre,u,ul,p

BT