Fundamentals of Software Architecture: An Engineering Approach

by Mark Richards, Neal Ford

26 Feb 2022 ★★★★★

Why I read it: I overhear something about different architecture styles here and there, but never had a coherent picture. For example how the typical layered architecture contrast against the onion one? Does Domain Driven Design relate to any of those things in any way? I hoped this book could help me finally build that picture.

I discussed this book and why am I reading it with a colleague and he recommended to also watch a Youtube video by Simon Brown on Modular Monoliths and read David Pereira’s blog series on clean architecture.

So this review will discuss all these things.

Short Summary: The book contains 3 parts:

What I liked about it: This was not something I came for to this book, but it gave me a better understanding of the role of software architect and the skills needed. I used to consider this as a path for myself because I seem to be better at abstract, high level thinking than optimizing technical details. But according to the book the architect’s role is more about the breadth of technical knowledge - having at least little experience with many different things. Plus being able to form a long term vision and align it with various practicalities. So this no longer seems like a good role for me.

As for the things I came here for, I think I got them to some extent. I have an overview now of different architecture styles and how they result in different system properties. About Domain Driven Design - it seems design is one step lower than architecture - more about the classes and how they interact with each other.

There were interesting practical things mentioned, like:

I’ve learned about architecture styles I haven’t heard before, like Microkernel and Space-based. Authors even discussed a lot of implementation practicalities, e.g. using replicated vs distributed caching for Space-based architecture and pros and cons of each approach. I think even if I won’t remember the details, reading through these considerations helps to form some sort of (subconscious) understanding and my approach to software design.

My favorite part by far was the pyramid of knowledge and how it relates with day-to-day work and career profile - balancing the portfolio of knowledge regarding depth vs. breadth.

The pyramid of knowledge

I also loved the quote ‘The stuff you know is also the stuff you must maintain - nothing is static in software world’.

What I disliked: Two-thirds of the book were more about the role of the architect rather than the architecture. So it was a much ‘softer’ book than I hoped it to be.

I had a feeling that there was too much useless text in the book. Sentences were too long somehow, overstating the obvious. And the part about architecture styles had a lot of repetition. Each style had a chart of architecture characteristics ratings and a short explanation why they are like that. A lot of it could have been summarized into monolithic vs. distributed deployment, instead of being repeated with every style:

A lot of explanations in the book were somehow too abstract. Best example of this was the chapter on Event-driven architecture. The initial explanation contained terms like initiating event, event channel and event processor instead of terms like publisher, queue, consumer, command and event that are usually used to talk about this architecture style. The concepts of command vs. event were introduced later, but in a way that didn’t help to understand full picture better. I found this a bit funny, as I thought of it as an example of what happens when architects architect for too long and get lost in the Abstraction land.

However I managed to follow the book’s content quite well. Mostly because I was already familiar with a lot of the concepts from other sources. For example Udi Dahan’s Advanced Distributed Systems Design course where he also talks about (affrent and effrent) coupling, fallacies of distributed computing, bus vs. broker messaging styles, service oriented architecture and a lot more. And in a much more approachable way (maybe partly because it is a video + slides, so richer communication channels).

The book is best suited for enterprise architects. Not only because all the examples were either Java or .NET, but also a lot of the advice about navigating politics seemed like the things that happen in big organizations.

How the other resources relate to the book content?

Simon Brown’s video on Modular Monoliths gave a better explanation of Software Architecture as a way of packaging code (by layer, by feature, etc.). It talked a bit about Ports & Adapters architecture style and keeping domain related code separate from technical stuff, which wasn’t mentioned in the book at all. David Pereira’s blog series expanded on it a lot more - comparing Ports & Adapters to Onion to Clean architecture. Yet the blog was not as good on discussing the resulting architecture characteristics and why they are like that. So all in all it was a good combination to start with the book (establishing or strengthening the base vocabulary and understanding) and then move on to specific resources.

© 2024. All rights reserved.