STRATEGIES OF COMPACTION

STRATEGIES OF COMPACTION ▪️ Unified Compaction Strategy (UCS) ▪️ Size-Tiered Compaction Strategy (STCS) ▪️ Leveled Compaction Strategy (LCS) ▪️ Time Window Compaction Strategy (TWCS)   UNIFIED COMPACTION STRATEGY: For the majority of workloads, including mixed read-write, time-series, read-heavy, and write-heavy workloads, the UnifiedCompactionStrategy (UCS) is… Read More

CHANGE DATA CAPTURE

CHANGE DATA CAPTURE When a configurable size-on-disk for the CDC log is reached, Change Data Capture (CDC) offers a technique to refuse writes to certain tables and flag them for archiving. By setting the table property cdc=true (either when creating the table or modifying it),… Read More

APACHE CASSANDRA INSTALLATIONS

APACHE CASSANDRA INSTALLATIONS These are the guidelines for setting up the supported Apache Cassandra releases on Linux systems. Cassandra runs on a wide array of Linux distributions including (but not limited to): ⦁ Ubuntu, most notably LTS releases 16.04 to 18.04. ⦁ CentOS & RedHat… Read More

BLOOM FILTERS

BLOOM FILTERS WHAT ARE BLOOM FILTERS: Cassandra combines data from RAM (in memtables) and disk (in SSTables) in the read path. Cassandra uses a data structure called a bloom filter to avoid having to go through each and every SSTable data file to find the… Read More

CASSANDRA BACKUPS

CASSANDRA BACKUPS WHAT ARE BACKUPS: Immutable SSTable files are used by Apache Cassandra to store data. The backup copies of the database data that are kept as SSTable files in the Apache Cassandra database are called backups. There are various uses for backups, some of… Read More

COLLECTION DATATYPES IN CQL

COLLECTION DATATYPES IN CQL Collections are designed to store and denormalize modest amounts of data. They are useful for things like “labels applied to an email,” “the phone numbers of a given user,” and so on. However, collections are inappropriate in situations when items are… Read More