Search the practice set

126 questions, 454 terms and 400 topics in 20 areas.

60 results for “Architecture Decision Records”

Terminology · 17
term

Architecture Decision Log

The ordered, immutable collection of a system's decision records, read as a history rather than as a specification.

Architecture Communication
term

Architecture Decision Record

A short, immutable document capturing one architectural decision, its context, the alternatives, and its consequences.

Architecture Decision-Making
term

Architecture Trade-off Analysis Method

A structured evaluation that scores an architecture against prioritised quality-attribute scenarios and identifies the points where those attributes conflict.

Architecture Decision-Making
term

Reversible Decision

A choice that can be undone cheaply, and which therefore deserves far less deliberation than an irreversible one.

Architecture Decision-Making
term

Build vs Buy

The choice between developing a capability in-house and acquiring it, decided on differentiation and total cost rather than on feature lists.

Architecture Decision-Making
term

Delivery vs Maintainability

Choosing where to take deliberate shortcuts, based on which kinds of debt are cheap to repay and which compound.

Architecture Decision-Making
term

Denormalisation

Deliberately duplicating data across records to make reads cheap, accepting the write-time cost of keeping copies in step.

Data Architecture
term

Managed vs Self-Managed

Trading control, portability and unit cost against the operational burden of running the thing yourself.

Architecture Decision-Making
term

Monolith vs Microservices

A trade of deployment independence against distributed-systems complexity, decided by team topology far more often than by technology.

Architecture Decision-Making
term

Multi-Cloud

Deliberately running across more than one cloud provider — a decision with a much higher cost than the lock-in it is usually adopted to avoid.

Cloud Architecture
term

Offset Management

How a consumer records its position in a stream, and the decision that determines whether processing is at-least-once or at-most-once.

Event Streaming
term

Presenting to Executives

Leading with the decision and the business consequence, at a level of abstraction where technology names do not appear.

Architecture Communication
term

SQL vs NoSQL

A choice driven by access patterns, consistency requirements and query flexibility — not by data volume, which is the reason usually given.

Architecture Decision-Making
term

Security vs Usability

A trade-off that is usually resolved by varying the control with the value of the action, rather than by choosing a uniform level of friction.

Architecture Decision-Making
term

Strong vs Eventual Consistency

A per-operation decision, not a per-system one: whether this specific read must reflect every completed write.

Architecture Decision-Making
term

Synchronous vs Asynchronous Communication

Whether the caller waits for the callee's answer — decided by whether the caller's outcome depends on it, not by latency or taste.

Architecture Decision-Making
term

Architecture Cost Model

A calculation, made during design, of what an architecture will cost to run at expected and at peak volume.

Cost & FinOps
Questions · 9
quiz

A multi-tenant SaaS product has outgrown one database. You must shard. How do you choose the partition key, and what makes this decision so expensive to get wrong?

What the interviewer is testing Whether you exhaust cheaper options first, and whether you understand that a shard key is close to irreversible. First: do not s

Data Architecture
quiz

Prime Video reported a 90% cost cut by consolidating a serverless distributed service into one process. Does that mean microservices were the wrong choice, and what is the actual decision rule?

What actually happened The Prime Video Video Quality Analysis team's 2023 post describes an audio/video monitoring service built as Step Functions orchestrating

Architecture Patterns
quiz

When is an architectural decision worth an ADR, and what makes an ADR useful two years later?

What the interviewer is testing Whether you document decisions as a habit, and whether you know that most documentation fails because it records the wrong thing

Architecture Decision-Making
quiz

A team wants to build a new internal API on serverless functions. It will serve steady traffic of about 200 requests per second during business hours. What do you advise?

What the interviewer is testing Whether you can apply the serverless trade off to a specific workload rather than treating it as a default good or a default bad

Cloud Architecture
quiz

Netflix built its own CDN; Dropbox moved storage off S3. Both are usually wrong. What conditions made them right, and how do you test for those conditions?

What the interviewer is testing Whether you can extract the conditions from a famous decision rather than the decision itself. These two cases are the most comm

Architecture Decision-Making
quiz

Security wants mandatory hardware keys for every login; the business says it will cost conversions. How do you resolve it architecturally rather than by picking a side?

What the interviewer is testing Whether you treat security as a fixed dial to be turned up, or as a risk proportionate design variable. Both stated positions ar

Architecture Decision-Making
quiz

The team can ship in six weeks with an approach that will need rework, or five months with one that will not. How do you decide, and what do you do either way?

What the interviewer is testing Whether you can make a debt decision deliberately rather than by default, and whether you know which debts are cheap and which a

Architecture Decision-Making
quiz

When should a service call another synchronously, and when should it publish an event instead? Give me the deciding test, not a preference.

The deciding test Does this user action succeed or fail based on this callee's response? If yes, the call is synchronous, because you need the answer to decide.

Architecture Decision-Making
quiz

You are reviewing a design for an internal tool with 200 users. It proposes Kubernetes, microservices, Kafka, a service mesh and CQRS. How do you handle the review?

What the interviewer is testing Judgement, and whether you can push back without alienating a team. Anyone can spot over engineering; the question is what you d

Architecture Decision-Making
Topics · 30
topic

Architecture Decision Records

One decision, its context, alternatives and consequences, kept immutable.

Architecture Decision-Making — no content yet
topic

Writing Decision Records

Context, alternatives and consequences, written once and never edited.

Architecture Communication — no content yet
topic

Architecture Decision-Making

General material on making and recording architectural decisions.

27 items
topic

Decision Practice

Thresholds, review, supersession and keeping the log alive.

Architecture Decision-Making — no content yet
topic

Auditability

Tamper-evident, attributed records that survive async boundaries.

3 items
topic

Authorization

RBAC, ABAC and ReBAC, and centralising the decision but not the enforcement.

5 items
topic

Build vs Buy

Differentiation, five-year TCO, and the exit cost of each option.

Architecture Decision-Making — no content yet
topic

Centralised vs Distributed

Shared platform leverage against team autonomy.

Architecture Decision-Making — no content yet
topic

Deciding Under Uncertainty

Bounding the downside and buying information cheaply.

Architecture Decision-Making — no content yet
topic

Delivery vs Maintainability

Fast in the cheap places, careful in the expensive ones.

Architecture Decision-Making — no content yet
topic

Facilitation

Running a design session that reaches a decision.

Architecture Communication — no content yet
topic

Managed vs Self-Managed

Trading control and unit cost against operational attention.

Architecture Decision-Making — no content yet
topic

Monolith vs Microservices

A team-topology decision far more often than a technology one.

Architecture Decision-Making — no content yet
topic

Performance vs Cost

Buying latency, and knowing what the last millisecond is worth.

Architecture Decision-Making — no content yet
topic

Presentation Skills

Structure, pacing and the slide that carries the decision.

Architecture Communication — no content yet
topic

Presenting to Executives

Decision first, cost, risk, and what happens if we do nothing.

Architecture Communication — no content yet
topic

Reliability vs Complexity

Mechanisms that add availability and add failure modes.

Architecture Decision-Making — no content yet
topic

Reversibility

One-way and two-way doors, and buying optionality deliberately.

Architecture Decision-Making — no content yet
topic

SQL vs NoSQL

Decided by access patterns and query flexibility, not by data volume.

Architecture Decision-Making — no content yet
topic

Security vs Usability

Varying control by the value of the action rather than uniformly.

Architecture Decision-Making — no content yet
topic

Serverless vs Containers

Spiky and event-driven versus sustained throughput.

Architecture Decision-Making — no content yet
topic

Single vs Multi-Region

Driven by RTO, RPO and residency rather than by ambition.

Architecture Decision-Making — no content yet
topic

Strong vs Eventual Consistency

A per-operation decision, resolved by what a stale read would cost.

Architecture Decision-Making — no content yet
topic

Sync vs Async

Whether the caller's outcome depends on the callee's response.

Architecture Decision-Making — no content yet
topic

Technical Proposals

A written argument circulated before the decision feels made.

Architecture Communication — no content yet
topic

Technology Selection

Evaluating options against drivers rather than against enthusiasm.

Architecture Decision-Making — no content yet
topic

Trade-off Analysis Methods

ATAM, scenarios, and naming the points where qualities conflict.

Architecture Decision-Making — no content yet
topic

AI-Era Architecture

General material on architecting systems that include models.

31 items
topic

Application Architecture

The application estate as a designed portfolio rather than an accumulation.

Enterprise Architecture — no content yet
topic

Architecture Communication

General material on communicating architecture.

14 items