GLOBUSZ BOOKSDesigning Data-Intensive Applications: The Big Ideas Behind Reliable, Scalable, and Maintainable SystemsMartin Kleppmann

A Globusz Books discovery

Designing Data-Intensive Applications: The Big Ideas Behind Reliable, Scalable, and Maintainable Systems

Martin Kleppmann · English

Data systems aren’t just about databases and code—they’re about wrestling with chaos, trade-offs, and relentless real-world messiness. Martin Kleppmann’s book doesn’t sugarcoat the headache of building applications that handle mountains of data reliably and at scale. It’s like a grizzled mechanic’s manual for the data engine under your app’s hood—no fluff, just the gritty essentials you actually need to know.

3 min summary599 wordsAccessible difficulty
Technical masteryCritical thinkingSystem reliabilityScalability awarenessInformed decision-making

Globusz Books summary

What the book is about

3 min read

If you’ve ever built or maintained an application that needs to juggle a ton of data, you know it’s no walk in the park. Designing Data-Intensive Applications is Martin Kleppmann’s deep dive into the nuts and bolts of creating systems that aren’t just fast, but also reliable and maintainable when the pressure’s on. This book doesn’t chase shiny new frameworks or hype up buzzwords. Instead, it gets down to the real business of understanding the foundational ideas behind data systems—things like consistency, fault tolerance, scalability, and how to keep your data sane when everything else is falling apart.

Kleppmann starts by making you rethink what a data system even is. It’s not just a database or a server; it’s a whole ecosystem that must handle failures gracefully and keep serving users without turning into a dumpster fire. He’s brutally honest about trade-offs—no silver bullets here. For example, you’ll learn why picking a data model isn’t just about preferences but about how your app’s logic and performance demands fit together. Relational databases have their strengths, but so do NoSQL systems, and understanding when and why to use each is key.

Storage and retrieval are more than just 'write this, read that.' Kleppmann unpacks how data gets laid down on disks, how indexing works, and why different storage engines behave the way they do. This part feels like the backstage tour of your data’s journey, revealing why some queries are fast and others crawl painfully. It’s the kind of knowledge that saves you from blindly trusting your database vendor’s marketing.

Replication and partitioning are where things get really interesting. If you want your system to scale and survive hardware failures or network hiccups, you need to spread data across machines and keep copies synchronized. Kleppmann walks you through the messy reality of replication models—from the straightforward master-slave setups to more complex multi-leader configurations—and the inevitable trade-offs with consistency and latency. Partitioning (or sharding) isn’t just splitting data; it’s about balancing load without breaking your app’s logic.

Speaking of consistency, this book is a must-read just for Kleppmann’s clear-headed explanation of consistency models and transactions. Forget the jargon-heavy, academic treatments. Here you get a practical sense of what linearizability, eventual consistency, and other guarantees mean for your application’s correctness and user experience. It’s the kind of clarity that helps you avoid designing systems that silently corrupt data or confuse users.

Finally, Kleppmann tackles batch and stream processing, two ways of handling data workflows. Batch processing is the old-school, big-bang approach—think crunching logs overnight. Streaming is the shiny new kid, processing data in real-time as it arrives. The book doesn’t pick favorites but lays out when each makes sense and how to architect systems that handle both smoothly.

This book is dense. Not the kind of bedtime reading you skim on the couch. It expects you to have some background and to care about the problems it describes. Some examples may feel a bit dated since the book came out in 2017, but the core principles—those stubborn truths about data systems—stand firm. It won’t teach you machine learning or AI pipelines, but if you want to understand the infrastructure beneath those models, this is a solid foundation.

In a world where everyone wants to slap a NoSQL sticker on their project and call it scalable, Kleppmann’s book is a reality check. It’s not about the latest shiny tool but about understanding the deep trade-offs and design decisions that make or break data systems in the wild. If you’re building anything that touches serious data, you’ll find this book a tough but rewarding companion.

Beyond the summary

What might this book awaken in you?

This book is not a friendly stroll through data systems. It’s a tough, no-nonsense guide that respects your intelligence and expects you to care about the messy realities of building reliable, scalable apps. If you want to stop guessing and start understanding why your data systems behave the way they do, Kleppmann’s work is a rare gem. Just be ready to put in the effort—it’s dense but worth it.

Before you commit

Why you might read this

Data systems aren’t just about databases and code—they’re about wrestling with chaos, trade-offs, and relentless real-world messiness. Martin Kleppmann’s book doesn’t sugarcoat the headache of building applications that handle mountains of data reliably and at scale. It’s like a grizzled mechanic’s manual for the data engine under your app’s hood—no fluff, just the gritty essentials you actually need to know.

Globusz summaryAbout 3 minutes
DifficultyAccessible
Especially worth considering if…Software engineers and system architects building or maintaining applications that handle large-scale data.
Spoiler sensitivity: lowThis is a nonfiction summary.

Themes worth noticing

Reliability vs. Scalability

The constant tension between making systems fault-tolerant and able to handle growth without breaking.

Consistency and Correctness

Understanding how data stays accurate and synchronized across distributed systems, and what compromises are acceptable.

System Design Trade-Offs

Every architectural choice has consequences; recognizing and managing these trade-offs is key.

Data Storage Mechanics

How data is physically stored and retrieved, shaping performance and reliability.

Data Processing Paradigms

Comparing batch and streaming approaches to handle varying data workloads.

Key ideas, explained

Data Systems Are About Trade-Offs, Not Silver Bullets

Kleppmann makes it clear that no single technology or approach solves all problems. Reliability, scalability, and maintainability pull in different directions, and every design choice involves compromises. Understanding these trade-offs is crucial to building systems that don’t collapse under pressure.

Consistency Isn’t One-Size-Fits-All

The book demystifies consistency models, showing that strong guarantees like linearizability come with costs, and weaker models like eventual consistency can work if you design your app carefully. It’s about matching your consistency needs to your system’s realities.

Replication and Partitioning Are the Backbone of Scalability

To survive failures and grow, systems copy data across nodes and split it into partitions. Kleppmann breaks down how different replication strategies affect performance and correctness, and why partitioning isn’t just technical but also a business and logic challenge.

Storage Engines and Indexes Matter More Than You Think

The journey of your data—how it’s stored, indexed, and retrieved—is not magic. Kleppmann explains the mechanics behind these processes, helping you understand why some queries are slow, and how storage design impacts overall system behavior.

Batch and Stream Processing Serve Different Needs

Data workflows can be about crunching large volumes at once or processing data in real-time. Kleppmann lays out the strengths and weaknesses of both, helping you design pipelines that fit your application’s timing and complexity requirements.

How to Use This Book in Real Life

Don’t Assume Your Database Will Handle Everything Perfectly

Learn the limits of your data store’s consistency and durability guarantees. Design your application logic to handle failures and inconsistencies gracefully instead of hoping the database will magically save you.

Choose Your Data Model Based on Your Workload, Not Trends

Relational or NoSQL? The answer depends on your data’s shape and how you need to query it. Understand the pros and cons of each before blindly picking the latest fashionable option.

Plan for Failure and Scale From the Start

Replication and partitioning are not afterthoughts. Think about how your system will behave when parts go down or traffic spikes, and design your data distribution accordingly.

Match Consistency Guarantees to Your Application’s Needs

Not every app needs strict consistency. Sometimes eventual consistency is fine, and knowing when to relax guarantees can save you complexity and improve performance.

Understand Your Data Processing Patterns Before Choosing Tools

Batch and streaming systems are different beasts. Pick the right processing model for your use case instead of shoehorning data into a tool just because it’s popular.

What the book does especially well

  • Deep, clear explanations of complex distributed systems concepts without drowning in jargon.
  • Focuses on practical trade-offs and real-world design decisions rather than hype or buzzwords.
  • Covers a broad range of foundational topics, giving readers a solid framework for understanding data systems.
  • Bridges theory with practice, helping engineers make informed decisions rather than blindly following trends.

Where the book gets shaky

  • Dense and technical; not friendly for beginners or casual readers without prior exposure to distributed systems.
  • Examples and ecosystem references are somewhat dated since the first edition came out in 2017.
  • Does not cover machine learning infrastructure or AI-specific data challenges.
  • Some readers might find the breadth overwhelming without hands-on experience to anchor the concepts.

Questions to carry with you

  • What trade-offs am I making when choosing a data model or storage engine?
  • How does my system handle failures and maintain consistency under stress?
  • Am I designing for scale and reliability from the beginning, or patching problems later?
  • What consistency guarantees does my application truly need, and what can I relax?
  • Is my data processing approach suited to my workload’s timing and complexity?

The bottom line

This book is not a friendly stroll through data systems. It’s a tough, no-nonsense guide that respects your intelligence and expects you to care about the messy realities of building reliable, scalable apps. If you want to stop guessing and start understanding why your data systems behave the way they do, Kleppmann’s work is a rare gem. Just be ready to put in the effort—it’s dense but worth it.

Reader feedback

Was this summary useful?

Rate the Globusz summary of Designing Data-Intensive Applications: The Big Ideas Behind Reliable, Scalable, and Maintainable Systems, not the book itself.

Loading reader ratings…

Keep exploring

Related collections

Follow the broader question instead of stopping at one book.

Where to go next

Don’t just read the nearest look-alike.

These recommendations serve different purposes: stay with the author, follow the closest idea, find an easier entry, go deeper, or deliberately change perspective.

Browse all books
Closest matchContinuous Observability: A Practical Guide to Microservices Observability in the CloudBen Sigelman, Yuri Shkuro, Gardner Montgomery

Strong overlap in themes, life-impact signals, mood, or the questions the books raise.

Microservices in the cloud are like a sprawling city with millions of moving parts—and no one’s handing out maps. Continuous observability is the messy, relentless work of making sense of it all before things blow up. This book doesn’t sugarcoat it: if you want your cloud-native systems to behave, you need more than just dashboards and alerts—you need a whole new way of watching your software breathe and stumble.Read this summary →
Also worth exploringThe Psychology of Intelligence AnalysisRichard J. Heuer

Related through the themes, questions, or life-impact signals surrounding this book.

Richard Heuer’s book dives into why intelligence analysts—experts at reading between the lines—still fall prey to mental traps. It exposes how our brains, built for survival, stumble over complexity and bias. Can smart thinking alone outwit these hidden pitfalls?Read this summary →
Also worth exploringProgramming PearlsJon Bentley

Related through the themes, questions, or life-impact signals surrounding this book.

Programming isn’t just banging out lines of code until something works. Jon Bentley’s "Programming Pearls" throws you right into the gritty reality that good programming is about crafting clever, efficient solutions—pearls, if you will—out of messy problems. This book doesn’t hand you magic spells or trendy frameworks; it forces you to think like a problem solver, not a code monkey.Read this summary →
Also worth exploringPsychology of Intelligence AnalysisRichard J. Heuer

Related through the themes, questions, or life-impact signals surrounding this book.

Richard Heuer’s book pulls back the curtain on why even the smartest analysts stumble when faced with uncertain, incomplete intelligence. Human brains aren’t wired for the fog of deception and ambiguity that intelligence work demands. How do you stop your own mind from sabotaging the very analysis you’re trying to make?Read this summary →
Also worth exploringMaking Software: What Really Works, and Why We Believe ItAndy Oram, Greg Wilson (Editors)

Related through the themes, questions, or life-impact signals surrounding this book.

Software development is famously full of opinions dressed as gospel truths. This book dares to ask: what if we actually looked at the data instead of just trusting the loudest voices? "Making Software" pulls back the curtain on some of the most sacred cows in coding, testing, and teamwork—showing what really works and what’s mostly just noise.Read this summary →

Follow the idea

Explore books that may matter for similar reasons.

Technology relevance

Still relevant in 2026: Yes

Highly relevant for building robust data-driven applications today.

Topics: data engineering · databases · system design

Browse current Technology books.

Continue the journey

Read the original when you are ready.

Summaries can give you the gist, but Kleppmann’s book delivers a thorough, nuanced exploration of complex topics that you won’t get elsewhere. The full text offers detailed examples, thoughtful analysis, and a common vocabulary that engineers use to communicate about distributed systems. It’s the kind of book you’ll return to repeatedly as your projects grow in complexity. Plus, the practical guidance helps you avoid costly mistakes and build systems that survive real-world chaos, not just idealized scenarios.