COMPRESSION IN CASSANDRA

COMPRESSION IN CASSANDRA Operators can set up compression on a per-table basis with Cassandra. By compressing the SSTable in user-configurable compression chunk_length_in_kb, compression minimizes the amount of data on disk. The CPU cost of compressing data is only required when the SSTable is written since… Read More

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

CASSANDRA QUERY LANGUAGE

CASSANDRA QUERY LANGUAGE WHAT IS CASSANDRA QUERY LANGUAGE? The computer languages used to create queries in databases and information systems are known as query languages. The main query language used to interact with the Apache Cassandra database is called Cassandra Query Language. A model resembling… Read More

CASSANDRA DATA MODELING TOOLS

CASSANDRA DATA MODELING TOOLS You can create queries and maintain your Cassandra schema with a number of available tools. KASHLEV DATA MODELER: The data modeling process outlined in this paper, which includes defining access patterns, conceptual, logical, and physical data modeling, and schema development, is automated… Read More