9. Architecture Decisions
Content
Important, expensive, large scale or risky architecture decisions including rationales. With “decisions” we mean selecting one alternative based on given criteria.
Please use your judgement to decide whether an architectural decision should be documented here in this central section or whether you better document it locally (e.g. within the white box template of one building block). Avoid redundant texts. Refer to section 4, where you captured the most important decisions of your architecture already.
Motivation
Stakeholders of your system should be able to comprehend and retrace your decisions.
Form
- ADR (architecture decision record) for every important decision
- list or table, ordered by importance and consequences or
- more detailed in form of separate sections per decision
Background (on ADRs)
Smaller pieces of documentation are easier to read, create and maintain. When it comes to architecture decisions, development teams will often:
- know about the decision, as it visible e.g. in source code, but
- miss the motivation behind that decision (see Nygard 2011)
Therefore you should document a few important decisions together with their motivation, reasoning
Our proposal concerning decisions
Keep a collection of architecturally significant decisions, those decisions that affect the structure, quality characteristics, important (especially external) dependencies and interfaces, or construction techniques (thanx to Michael Nygard for this proposal)
You might follow the Nygard-structure, which works as follows:
Section | Description |
---|---|
Title | Decisions should have a proper name. For example, “ADR 42: Strategy-Pattern for multiple checking algorithms” or “ADR 9: Keycloak for secrets management” |
Context | Describe the situation, including technical, political, social, and project aspects. These forces might be in tension. |
Decision | What is our decision (reply to the forces described in the context) |
Status | A decision may be “proposed” if the important stakeholders haven’t agreed with it yet, or “accepted” once it is agreed. It could also be “deprecated” or “superseded”, hopefully with a reference to its replacement. |
Consequences | What will or can happen as consequences of this decision. All consequences should be listed here, not just the “positive” ones. A particular decision may have positive, negative, and neutral consequences, but all of them affect the team and project in the future. |
You can find additional structures of ADR in the ADR Github collection
Examples
<describe important architecture decisions here >
Further Info
Tips
Related Questions
See here for questions related to fundamental architecture and design decisions.