jojochuang commented on PR #7957:
URL: https://github.com/apache/ozone/pull/7957#issuecomment-2683109793
I'd like to suggest adding an option to support compaction to the bottom
most level. Sample code:
```
try (RocksDB db = RocksDB.open(new Options().setCreateIfMissing(true),
"/path/to/db")) {
CompactRangeOptions compactOptions = new CompactRangeOptions();
compactOptions.setBottommostLevelCompaction(CompactRangeOptions.BottommostLevelCompaction.FORCE);
db.compactRange(compactOptions, null, null);
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]