use of org.apache.hadoop.hbase.regionserver.compactions.DateTieredCompactor in project hbase by apache.
the class DateTieredStoreEngine method createComponents.
@Override
protected void createComponents(Configuration conf, Store store, CellComparator kvComparator) throws IOException {
this.compactionPolicy = new DateTieredCompactionPolicy(conf, store);
this.storeFileManager = new DefaultStoreFileManager(kvComparator, StoreFile.Comparators.SEQ_ID_MAX_TIMESTAMP, conf, compactionPolicy.getConf());
this.storeFlusher = new DefaultStoreFlusher(conf, store);
this.compactor = new DateTieredCompactor(conf, store);
}
Aggregations