Designing_Data_Intensive_Ap.../content/en/part-i.md
2025-08-10 16:45:07 +08:00

3.1 KiB
Raw Permalink Blame History

title weight breadcrumbs
PART I: Foundations of Data Systems 100 false

{{< callout type="warning" >}} This page is from the 1st edition 2nd edition is not available yet. {{< /callout >}}

The first five chapters go through the fundamental ideas that apply to all data systems, whether running on a single machine or distributed across a cluster of machines:

  1. Chapter 1 introduces the tradeoffs that data systems must make, such as the balance between consistency and availability, and how these tradeoffs affect system design.

  2. Chater 2 discusses the nonfunctional requirements of data systems, such as availability, consistency, and latency. And how we can try to achieve these goals.

  3. Chapter 3 compares several different data models and query languages—the most visible distinguishing factor between databases from a developers point of view. We will see how different models are appropriate to different situations.

  4. Chapter 4 turns to the internals of storage engines and looks at how databases lay out data on disk. Different storage engines are optimized for different workloads, and choosing the right one can have a huge effect on performance.

  5. Chapter 5 compares various formats for data encoding (serialization) and especially examines how they fare in an environment where application requirements change and schemas need to adapt over time.

Later, Part II will turn to the particular issues of distributed data systems.

1. Trade-offs in Data Systems Architecture

2. Defining Nonfunctional Requirements

3. Data Models and Query Languages

4. Storage and Retrieval

5. Encoding and Evolution