Question-169: Suppose there are two Database tables in your Cassandra cluster, HE_VISIT and HE_SIGNUP. As you can see that HE_VISIT table has a high throughput, frequent write operations for this table. Which of the following statements are correct with regards to memtable flush for each table?
- Table HE_VISIT’s memtable fills up rapidly and gets flushed frequently the table HE_SIGNUP.
- Get all Questions and Answer from here
- You need to have paid subscription to access all questions
- Thanks for considering Python Certification Material
Ans: A,B,C,D
Exp: Suppose you have two tables table A and table B, where write to the table A is very high and table B has a very low write. In this case the commit log would have write from both the table. And memtable of table A get filled very rapidly so it got flush frequently. But in case of table B table fills slowly and flushed very rarely.
You can access to full explanation to question and answer from this page.