ibessonov commented on a change in pull request #402:
URL: https://github.com/apache/ignite-3/pull/402#discussion_r731792797
##########
File path:
modules/storage-rocksdb/src/main/java/org/apache/ignite/internal/storage/rocksdb/RocksDbTableStorage.java
##########
@@ -142,17 +154,17 @@ public RocksDbTableStorage(
.setWriteBufferManager(dataRegion.writeBufferManager())
);
+ maxPartitions = tableCfg.value().partitions();
+
+ partitions = new AtomicReferenceArray<>(maxPartitions);
+
try {
db = addToCloseableResources(RocksDB.open(dbOptions,
tablePath.toAbsolutePath().toString(), cfDescriptors, cfHandles));
}
catch (RocksDBException e) {
- throw new StorageException("Failed to initialize RocksDB
instance.", e);
+ throw new StorageException("Failed to initialize RocksDB instance.
" + System.currentTimeMillis(), e);
Review comment:
Sorry, that was for debugging
--
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]