DEV Community

Chakrit Likitkhajorn
Chakrit Likitkhajorn

Posted on

Design decision cannot be judged by result

Let say you want to design a highly available large-scale system. What will you read?

You might start to read about how Google, Facebook, Netflix or all those big companies build their system. That makes perfect sense.

Along the way, you will see a lot of design decision, such as how Facebook use GraphQL in their backend, Stripe using Ruby as their main language, etc.

You might start to think that those are all proven ways to build a large scale highly available system.

And that is where it is incorrect.

I recently saw this type of reasoning and start to worry about it.

System has many concerns

Let say you design a system for those companies; what kind of concern do you need to think about?

  • What is a usage characteristic?
  • How will the requirement grow?
  • How can we ensure system availability?
  • How can we trace any issue from user tickets?
  • How engineering team will work together?
  • etc.

According to all these concerns, you put many many design decisions to accommodate and balance all needs from every constraint the best you can think of.

Let say that to ensure GDPR requirement; you need to do X. And to ensure high availability, you need to do Y. And then to ensure performance, you need to do Z.

You will do many other things, but let just keep it simple.

But from the outsider's perspective, they see that your system implements X,Y,Z, and your system is very performant. As they are objective and data-driven, they think:

Based on the data and actual result, it is clear that I do X and Y, then I will get a performant system.

The truth is both X and Y are design decision that is not related to performance at all...


Correlation does not imply causation

Just because a system is performant, it does not mean every parts of the system are designed to be performant.

Just because a system is highly available, it does not mean every technique implemented in that system are contribute to high availability.

Just because a system produces a result Z, does not mean design all design decision A, B, C are all related to Z.

Some real-life examples

I was worried about this because I recently saw some post claim that one big company achieve X, and they do Y, so if we want to achieve X, we need to do Y.

And Y was meant to solve totally different unrelated problems.


In order to understand the real correlation between a design decision and outcome, you need to go way further than just look at the result. Or at least read through the motivation behind each decision.

And if you write a design document, please also write a motivation and trade-offs. Otherwise, many followers will interpret it in the wrong way.

Thanks for reading!!

Top comments (0)