oliverdavies.uk/source/_daily_emails/2023-11-11.md

29 lines
1.4 KiB
Markdown
Raw Normal View History

2024-01-03 20:00:00 +00:00
---
title: >
2024-02-07 20:01:19 +00:00
Work in small batches
2024-01-03 20:00:00 +00:00
pubDate: 2023-11-11
permalink: >-
2024-02-07 20:01:19 +00:00
archive/2023/11/11/work-in-small-batches
2024-01-03 20:00:00 +00:00
tags:
2024-02-07 20:01:19 +00:00
- software-development
- git
- continuous-integration
- continuous-delivery
- continuous-deployment
- trunk-based-development
2024-01-03 20:00:00 +00:00
---
Software should be designed, written, and deployed in small batches.
This is the first line from a blog post by Eric Ries and is something that gets discussed with a guest in an upcoming episode of the Beyond Blocks podcast.
In the post, Eric continues by saying, "Of all of the insights I've contributed to the companies I've worked at over the years, the one I am most proud of is the importance of working in small batches".
Small batches mean faster feedback, more localised problems as there are fewer changes, and reduced risk and overhead.
If you work in small batches and make smaller changes, merge them regularly into the mainline branch (ideally, at least once a day), and often deploy changes to production, the releases will be quicker and less stressful, and clients and customers will be happy as their changes will be available sooner.
I've worked this way, and with long-lived feature branches and large, infrequent deployments, I prefer to work in small batches and deploy often.
The full blog post is found at <http://www.startuplessonslearned.com/2009/02/work-in-small-batches.html>.