3.1 KiB
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:
-
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.
-
Chater 2 discusses the nonfunctional requirements of data systems, such as availability, consistency, and latency. And how we can try to achieve these goals.
-
Chapter 3 compares several different data models and query languages—the most visible distinguishing factor between databases from a developer’s point of view. We will see how different models are appropriate to different situations.
-
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.
-
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
- Analytical versus Operational Systems
- Cloud versus Self-Hosting
- Distributed versus Single-Node Systems
- Data Systems, Law, and Society
- Summary
2. Defining Nonfunctional Requirements
- Case Study: Social Network Home Timelines
- Describing Performance
- Reliability and Fault Tolerance
- Scalability
- Maintainability
- Summary
3. Data Models and Query Languages
- Relational Model versus Document Model
- Graph-Like Data Models
- Event Sourcing and CQRS
- Dataframes, Matrices, and Arrays
- Summary
4. Storage and Retrieval
- Storage and Indexing for OLTP
- Data Storage for Analytics
- Multidimensional and Full-Text Indexes
- Summary