Tuning Cassandra nodes

Cassandra provides various configuration options both at column family level and system level; this lets us customize Cassandra's features to suit our requirements. Let's discuss these configuration options.

Configuring Cassandra caches

From our discussion about caches in the previous chapters, we know that Cassandra has two caching options:

  • Key cache: This caches partition keys and their respective data offset in the SSTable. When a key cache is hit, we'll save one disk seek for that SSTable search.
  • Row cache: This stores the entire row of a partition key; in the new version, we can specify the number of rows to be stored per partition key. This caches two disk seeks as the entire row is in the memory.

Both of these caches can ...

Get Apache Cassandra Essentials now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.