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
Regardless of the version of Rocksdb, the overall time required for unit testing should be similar, or is there any configuration that can shorten the time?
Actual behavior
When I was conducting unit testing on Mac OS using different versions of Rocksdb, I found that the overall CI time for version 7.7.3 was much longer than that for version 5.15.10
Steps to reproduce the behavior
@Test
public void testOpen() throws RocksDBException {
for (int i = 0; i < 60; i++) {
long start = System.currentTimeMillis();
try(RocksDB db = RocksDB.open("test-open-" + i)) {
System.out.println("RocksDB.open() cost:" + (System.currentTimeMillis() - start));
} finally {
RocksDB.destroyDB("test-open-" +i, new Options());
}
}
}
Expected behavior
Regardless of the version of Rocksdb, the overall time required for unit testing should be similar, or is there any configuration that can shorten the time?
Actual behavior
When I was conducting unit testing on Mac OS using different versions of Rocksdb, I found that the overall CI time for version 7.7.3 was much longer than that for version 5.15.10
Steps to reproduce the behavior
View database loading logs
Version 7.7.3
Version 5.15.10
My project has many single test cases using Rocksdb, and I hope that upgrading the version can shorten the time. Can you tell me what to do?
The text was updated successfully, but these errors were encountered: