use of org.apache.hudi.common.util.collection.RocksDBDAO in project hudi by apache.
the class RocksDbBasedFileSystemView method resetViewState.
@Override
protected void resetViewState() {
LOG.info("Deleting all rocksdb data associated with table filesystem view");
rocksDB.close();
rocksDB = new RocksDBDAO(metaClient.getBasePath(), config.getRocksdbBasePath());
}
Aggregations