"매 immutable record of architectural choices, written in the moment of decision". Michael Nygard 가 2011 년 originally proposed; 2026 modern engineering org 의 standard practice — single ADR file per decision, append-only, version-controlled in repo alongside code.
매 핵심
매 ADR file 구조
Title: short noun phrase (e.g., "Use PostgreSQL for transactional store").
ADR 는 immutable — supersede 하려면 new ADR 작성, old 의 status 를 Superseded by ADR-N 로 update.
PR review 의 part — engineering team 의 collective signoff.
ADR-001 부터 sequential numbering, 절대 renumbering 안 함.
매 응용
Microservices boundary 의 결정 (e.g., service split rationale).
Data store / message queue 의 선택 (Postgres vs DynamoDB).
Auth flow / API style (REST vs GraphQL vs gRPC).
Build tooling / CI 의 stack lock-in.
💻 패턴
Nygard ADR template (md)
# ADR-007: Adopt PostgreSQL for primary OLTP
## Status
Accepted (2026-05-08)
## Context
We need an ACID-compliant store for orders.
Read/write ratio is 3:1, peak 2k QPS.
Team has Postgres ops experience; Aurora / RDS managed offering available.
## Decision
We will use Amazon RDS for PostgreSQL 16 as the primary OLTP store.
## Consequences
+ Strong consistency, mature ecosystem.
+ Existing in-house expertise reduces ramp.
- Vendor lock-in to AWS RDS.
- Need to manage VACUUM tuning at >10M rows/table.
MADR template (richer variant)
---
status: accepted
date: 2026-05-08
deciders: [alice, bob, carol]
consulted: [security-team]
informed: [eng-all]
---
# Use Kafka for event bus
## Context and Problem Statement
How do we propagate domain events across 8 microservices?
## Considered Options
- Kafka
- RabbitMQ
- AWS SNS/SQS
## Decision Outcome
Chosen: Kafka, because durable replay + partition ordering matter.
### Positive Consequences
- Replayable history (compaction).
- High throughput (>1M msg/s).
### Negative Consequences
- Operational complexity (ZK / KRaft).
adr-tools CLI workflow
# Init in repo
adr init doc/adr
# Create new ADR
adr new "Use Postgres for OLTP"# -> doc/adr/0007-use-postgres-for-oltp.md# Supersede old decision
adr new -s 3"Replace MongoDB with Postgres"# -> auto-marks ADR-0003 as Superseded
언제: Engineering team ≥ 3, decisions have multi-month consequences, onboarding context value matters.
언제 X: Personal project, throwaway prototype, decisions reversible in <1 day.
❌ 안티패턴
Edit history erasure: ADR 를 mutate — supersession chain 의 의도 가 lost.
Decision-by-Slack: ADR 없이 채팅 만 의 합의 — 6 개월 후 누구 도 rationale 모름.
Over-documentation: 매 trivial choice 의 ADR — signal-to-noise drops.
Status drift: Accepted ADR 가 production 의 actual state 와 diverge — periodic audit 필요.
🧪 검증 / 중복
Verified (Michael Nygard 2011 original post; ThoughtWorks Tech Radar "Adopt"; AWS / Spotify / GitHub public ADR repos).