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

sql - text truncated using perl DBI insert -

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

php - Pass object by reference or value -