cassandra - Does the SSTable change when I update a column? -


i understand insert operations come commitlog first, , memtable second, after compacted sstable.

after compaction sstable, perform update operation existing column. must sstable changed update value of column?

http://wiki.apache.org/cassandra/memtablesstable says:

once flushed, sstable files immutable; no further writes may done

your updated value written commitlog, , memtable, , flushed new sstable on-disk. later, sstable may merged other sstables form new larger sstable (and old ones discarded) - compaction stage.


Comments

Popular posts from this blog

c++ - Is it possible to compile a VST on linux? -

java - Output of Eclipse is rubbish -

jquery - Confused with JSON data and normal data in Django ajax request -