DATA MODELING IN CASSANDRA

DATA MODELING IN CASSANDRA: Data modeling is the process of identifying entities and their relationships. In relational databases, data is placed in normalized tables with foreign keys used to reference related data in other tables. Queries that the application will make are driven by the… Read More

READ OPERATIONS IN CASSANDRA

READ OPERATIONS IN CASSANDRA In Cassandra read operation performs through different stages to find the data starting from MEMTABLE (RAM) to the end of the data present in SS TABLES(DISK) COMPONENTS USED TO PASS THE READ QUERY: ▪️ Memtable ▪️ Row cache ▪️ Key cache ▪️… Read More