Reputation: 11
I am trying to migrate Cassandra 2 to 3, but I am having troubles with TimeWindowCompactionStrategy
.
Cassandra 2
compaction = {'compaction_window_size': '3', 'compaction_window_unit': 'DAYS', 'class': 'TimeWindowCompactionStrategy'}
Any idea in Cassandra 3? Thank you!
Upvotes: 1
Views: 85
Reputation: 165
Following works for me in Cassandra 3.0
compaction = {'class': 'org.apache.cassandra.db.compaction.TimeWindowCompactionStrategy', 'compaction_window_size': '3', 'compaction_window_unit': 'DAYS'}
Upvotes: 2