You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Compaction will cut the amount of SSTables for a column family in half by pairing, merging and removing expired and tombstoned keys for the specified column family, with a specified number of threads.
195
+
196
+
```python
197
+
db.compact_sstables("my_column_family", max_threads=4) # max threads is refering to amount of threads used for compaction process
198
+
# 4 threads means 2 sstables being paired per thread which is faster than a lone thread say.
0 commit comments