InterviewSolution
Saved Bookmarks
| 1. |
When ___________ contents exceed a configurable threshold, the memtable data, which includes indexes, is put in a queue to be flushed to disk.(a) subtable(b) memtable(c) intable(d) memorytableThe question was asked in my homework.The query is from Cassandra with Hadoop topic in division ZooKeeper, Sqoop and Cassandra of Hadoop |
|
Answer» RIGHT OPTION is (b) memtable To explain: You can CONFIGURE the LENGTH of the queue by changing memtable_flush_queue_size in the cassandra.yaml. |
|