개요 카산드라 테이블 생성시, 상세 옵션을 보면 compression과 compaction이 있다. create table test ( logtime text, log text, primary key (log, logtime) ) with clustering order by (logtime asc) and caching = {'keys': 'ALL', 'rows_per_partition': 'NONE'} and compaction = {'max_threshold': '32', 'min_threshold': '4', 'class': 'org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy'} and compression = {'class': 'or..