| name | kleppmann-data-intensive |
| description | Design distributed systems in the style of Martin Kleppmann, author of "Designing Data-Intensive Applications". Emphasizes understanding data systems deeply, making informed trade-offs, and building reliable data infrastructure. Use when designing databases, streaming systems, or data pipelines. |
| tags | crdt, replication, streaming, consistency, event-sourcing, databases, partitioning, consensus, data-pipelines, real-time, collaborative |
Martin Kleppmann Style Guide
Overview
Martin Kleppmann is the author of "Designing Data-Intensive Applications" (DDIA), one of the most influential books on distributed systems and databases. He excels at explaining complex concepts clearly and helping engineers make informed architectural decisions.
Core Philosophy
"Reliability means making systems work correctly, even when faults occur."
"The goal of consistency models is to provide a abstraction for application developers."
"There's no such thing as a 'best' database—only trade-offs."
Kleppmann believes in understanding systems deeply, not just using them. Every architectural choice is a trade-off; understand what you're trading.
Design Principles
-
Understand the Trade-offs: CAP, PACELC, latency vs consistency.
-
Design for Failure: Partial failure is the norm in distributed systems.
-
Data Outlives Code: Schema design and data models matter enormously.
-
Exactly-Once Is Hard: Understand idempotency and at-least-once semantics.
When Writing Code
Always
- Understand the consistency guarantees your system provides
- Design for idempotency where possible
- Think about data evolution and schema changes
- Consider exactly-once vs at-least-once semantics
- Know your data access patterns before choosing storage
- Plan for failure recovery
Never
- Assume "eventual consistency" without understanding what it means
- Ignore the differences between isolation levels
- Couple tightly without considering failure modes
- Treat distributed transactions as a silver bullet
Prefer
- Idempotent operations
- Append-only data structures
- Event sourcing for audit trails
- Change data capture over dual writes
- Log-based message brokers over traditional ones
Code Patterns
Consistency Models Illustrated
class LinearizableStore:
"""
Linearizability: operations appear atomic and instantaneous.
Strongest consistency - single copy illusion.
"""
def __init__(self):
self._lock = threading.Lock()
self._data = {}
def write(self, key, value):
with self._lock:
self._data[key] = value
def read(self, key):
with self._lock:
return self._data.get(key)
def compare_and_set(self, key, expected, new_value):
with self._lock:
if self._data.get(key) == expected:
self._data[key] = new_value
return True
return False
class CausallyConsistentStore:
"""
Causal consistency: respects happens-before relationship.
Weaker than linearizable, but allows more concurrency.
"""
def __init__(self, node_id):
self.node_id = node_id
self.data = {}
.vector_clock = defaultdict()
():
.vector_clock[.node_id] +=
dependencies:
node, time dependencies.items():
.vector_clock[node] = (.vector_clock[node], time)
.data[key] = {
: value,
: (.vector_clock)
}
(.vector_clock)
():
key .data:
.data[key][], .data[key][]
, (.vector_clock)
Event Sourcing
from dataclasses import dataclass
from typing import List
from datetime import datetime
@dataclass
class Event:
event_type: str
data: dict
timestamp: datetime
version: int
class EventStore:
def __init__(self):
self.events: List[Event] = []
self.version = 0
def append(self, event_type: str, data: dict):
self.version += 1
event = Event(
event_type=event_type,
data=data,
timestamp=datetime.now(),
version=self.version
)
self.events.append(event)
return event
def get_events(self, from_version=0):
return [e for e in self.events if e.version > from_version]
class BankAccount:
"""Aggregate rebuilt from events"""
def __init__():
.account_id = account_id
.event_store = event_store
.balance =
._rebuild_state()
():
event .event_store.events:
._apply(event)
():
event.event_type == :
.balance += event.data[]
event.event_type == :
.balance -= event.data[]
():
event = .event_store.append(, {
: .account_id,
: amount
})
._apply(event)
():
amount > .balance:
ValueError()
event = .event_store.append(, {
: .account_id,
: amount
})
._apply(event)
Idempotency Keys
import uuid
import hashlib
class IdempotentProcessor:
def __init__(self):
self.processed_keys = {}
self.expiry_seconds = 3600
def process(self, idempotency_key: str, operation):
"""
Execute operation exactly once for a given key.
Retries with same key return cached result.
"""
if idempotency_key in self.processed_keys:
return self.processed_keys[idempotency_key]
try:
result = operation()
self.processed_keys[idempotency_key] = {
'status': 'success',
'result': result
}
return self.processed_keys[idempotency_key]
except Exception as e:
raise
@staticmethod
def generate_key(*args):
"""Generate deterministic idempotency key"""
content = '|'.join(str(arg) arg args)
hashlib.sha256(content.encode()).hexdigest()
processor = IdempotentProcessor()
():
():
{: (uuid.uuid4()), : amount}
processor.process(idempotency_key, do_payment)
key = IdempotentProcessor.generate_key(user_id, amount, request_id)
result1 = create_payment(user_id, , key)
result2 = create_payment(user_id, , key)
Change Data Capture
from typing import Callable, List
from enum import Enum
from dataclasses import dataclass
class OperationType(Enum):
INSERT = 'insert'
UPDATE = 'update'
DELETE = 'delete'
@dataclass
class ChangeEvent:
table: str
operation: OperationType
key: dict
before: dict
after: dict
timestamp: float
sequence: int
class CDCProducer:
"""Publish changes from database write-ahead log"""
def __init__(self, publisher):
self.publisher = publisher
self.sequence = 0
def capture_insert(self, table: str, key: dict, data: dict):
self.sequence += 1
event = ChangeEvent(
table=table,
operation=OperationType.INSERT,
key=key,
before=None,
after=data,
timestamp=time.time(),
sequence=self.sequence
)
.publisher.publish(event)
():
.sequence +=
event = ChangeEvent(
table=table,
operation=OperationType.UPDATE,
key=key,
before=before,
after=after,
timestamp=time.time(),
sequence=.sequence
)
.publisher.publish(event)
:
():
.handlers: [, []] = {}
.last_sequence =
():
table .handlers:
.handlers[table] = []
.handlers[table].append(handler)
():
event.sequence <= .last_sequence:
event.table .handlers:
handler .handlers[event.table]:
handler(event)
.last_sequence = event.sequence
():
event.operation == OperationType.DELETE:
search_index.delete(event.key)
:
search_index.index(event.key, event.after)
consumer.register(, update_search_index)
Stream Processing
from collections import defaultdict
from typing import Iterator, TypeVar, Callable
T = TypeVar('T')
class StreamProcessor:
"""Stateful stream processing"""
def __init__(self):
self.state = {}
def process(self, stream: Iterator[T], handler: Callable[[T, dict], None]):
"""Process stream with access to state"""
for record in stream:
handler(record, self.state)
yield self.state.copy()
def windowed_count(window_size_seconds: int):
"""Tumbling window aggregation"""
def handler(event, state):
window_start = (event['timestamp'] // window_size_seconds) * window_size_seconds
key = (event['key'], window_start)
if key not in state:
state[key] = {'count': 0, 'window_start': window_start}
state[key]['count'] += 1
current_window = (time.time() // window_size_seconds) * window_size_seconds
completed = [k k state k[] < current_window - window_size_seconds]
k completed:
emit(state.pop(k))
handler
():
():
record records:
last_offset = checkpointer.get_offset()
record.offset <= last_offset:
transaction():
result = processor.process(record)
checkpointer.save_offset(record.offset)
result
process_with_guarantees
Mental Model
Kleppmann approaches data systems by asking:
- What are the consistency requirements? Linearizable, serializable, eventual?
- What are the access patterns? Read-heavy, write-heavy, mixed?
- How do we handle failures? Retries, idempotency, compensation?
- How does data evolve? Schema changes, backward compatibility?
- What happens at the edges? Network partitions, slow nodes?
Signature Kleppmann Moves
- Event sourcing for auditability
- Idempotency keys for safe retries
- CDC over dual writes
- Understanding isolation levels deeply
- Log-based messaging for durability
- Making trade-offs explicit