ibessonov commented on code in PR #2218:
URL: https://github.com/apache/ignite-3/pull/2218#discussion_r1234971871
##########
modules/metastorage/src/main/java/org/apache/ignite/internal/metastorage/server/persistence/RocksDbKeyValueStorage.java:
##########
@@ -239,20 +243,25 @@ public void start() {
}
private static List<ColumnFamilyDescriptor> cfDescriptors() {
- Options dataOptions = new Options().setCreateIfMissing(true)
+ Options sharedOptions = new Options()
+ .setCreateIfMissing(true)
+ .setNumLevels(4)
Review Comment:
Done
--
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]