Questions et réponses d'entretien les plus demandées et tests en ligne
Plateforme d'apprentissage pour la preparation aux entretiens, les tests en ligne, les tutoriels et la pratique en direct

Developpez vos competences grace a des parcours cibles, des tests blancs et un contenu pret pour l'entretien.

WithoutBook rassemble des questions d'entretien par sujet, des tests pratiques en ligne, des tutoriels et des guides de comparaison dans un espace d'apprentissage reactif.

Chapter 9

Compaction, SSTables, Memtables, Tombstones, and Storage Engine Basics

Understand how Cassandra stores data under the hood and why storage engine behavior directly affects performance and maintenance.

Inside this chapter

  1. Why Internal Storage Matters
  2. Write Path Components
  3. Tombstones and Their Cost
  4. Compaction Strategy Awareness

Series navigation

Study the chapters in order for the clearest path from beginner Cassandra concepts to advanced distributed operations. Use the navigation at the bottom of each page to move through the full series.

Tutorial Home

Chapter 9

Why Internal Storage Matters

Students can start with CQL, but long-term Cassandra success depends on understanding storage internals. SSTables, memtables, commit logs, compaction, and tombstones all shape performance and operational behavior.

Chapter 9

Write Path Components

  • Commit log for durability
  • Memtable for in-memory writes
  • SSTables for immutable on-disk storage
  • Compaction for merging and cleanup over time
Chapter 9

Tombstones and Their Cost

Deletes and TTL expirations create tombstones. Too many tombstones can make reads slower and repairs heavier. This is a major practical Cassandra topic and one reason data lifecycle design matters so much.

Chapter 9

Compaction Strategy Awareness

Different compaction strategies suit different workloads. Time-series workloads, high-update workloads, and mixed read/write systems may need different choices. Advanced teams tune these based on observed behavior instead of default assumptions alone.

Copyright © 2026, WithoutBook.