MINOR: Upgrade RocksDB to 5.13.4 (#5309)

Reviewers: Bill Bejeck <bill@confluent.io>, Matthias J. Sax <matthias@confluent.io>
This commit is contained in:
Guozhang Wang 2018-06-29 11:10:21 -07:00 committed by GitHub
parent 98e546611a
commit 7947c94140
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 6 deletions

View File

@ -76,7 +76,7 @@ versions += [
// PowerMock 1.x doesn't support Java 9, so use PowerMock 2.0.0 beta
powermock: "2.0.0-beta.5",
reflections: "0.9.11",
rocksDB: "5.7.3",
rocksDB: "5.13.4",
scalatest: "3.0.5",
scoverage: "1.3.1",
slf4j: "1.7.25",

View File

@ -248,11 +248,6 @@ public class RocksDBStore implements KeyValueStore<Bytes, byte[]> {
} catch (final RocksDBException e) {
throw new ProcessorStateException("Error while range compacting during restoring store " + this.name, e);
}
// we need to re-open with the old num.levels again, this is a workaround
// until https://github.com/facebook/rocksdb/pull/2740 is merged in rocksdb
close();
openDB(internalProcessorContext);
}
}