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

OBJECT ORIENTED PROGRAMMING IN PYTHON

OBJECT ORIENTED PROGRAMMING IN PYTHON Object-Oriented Programming (OOP) is a powerful paradigm that allows developers to structure their code in a more organized and modular way. In Python, OOP is implemented through classes and objects, which encapsulate data and behavior into reusable components. Python is… Read More

FUNCTIONS IN PYTHON

FUNCTIONS IN PYTHON FUNCTION: ▪️ A function is a block of code that performs a specific task. ▪️ Functions are defined by using the def keyword which follows by function name and parentheses which may have parameters. ▪️ Any function can accept zero or more… Read More

Exceptional Handling in python

Exceptional Handling in python Exception handling allows developers to manage errors and unexpected situations. Exception handling is the process of managing errors and unexpected events that occur during the execution of a program. When a Python program encounters an error, it raises an exception, which… 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

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