0

What happens when I insert empty column families in cassandra. How many memtables and sstables will be created ?

1 Answers1

0

This depends on how many inserts you will perform, because you still need to keep the data for primary key in the memory, even if all other columns are empty... SSTables will be generated when your data fill memtable, or when you issue nodetool flush command.

Alex Ott
  • 316
  • 1
  • 5