@SuppressWarnings("deprecation") public IndexedRegion(final Path basedir, final HLog log, final FileSystem fs, final Configuration conf, final HRegionInfo regionInfo, final FlushRequester flushListener) throws IOException { super(basedir, log, fs, conf, regionInfo, flushListener); this.indexTableDescriptor = new IndexedTableDescriptor( regionInfo.getTableDesc()); this.conf = conf; this.tablePool = new HTablePool(); }
@Override public FlushRequester getFlushRequester() { // TODO Auto-generated method stub return null; }
@Override public FlushRequester getFlushRequester() { return null; }
/** * @param basedir * @param log * @param fs * @param conf * @param regionInfo * @param flushListener */ public TransactionalRegion(final Path basedir, final HLog log, final FileSystem fs, final Configuration conf, final HRegionInfo regionInfo, final FlushRequester flushListener) { oldTransactionFlushTrigger = conf.getInt(OLD_TRANSACTION_FLUSH, DEFAULT_OLD_TRANSACTION_FLUSH); }