org.apache.hadoop.hbase.regionserver.FlushRequester Java Examples
The following examples show how to use
org.apache.hadoop.hbase.regionserver.FlushRequester.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: IndexedRegion.java From hbase-secondary-index with GNU General Public License v3.0 | 5 votes |
@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(); }
Example #2
Source File: TransactionProcessorTest.java From phoenix-tephra with Apache License 2.0 | 4 votes |
@Override public FlushRequester getFlushRequester() { return null; }
Example #3
Source File: TransactionProcessorTest.java From phoenix-tephra with Apache License 2.0 | 4 votes |
@Override public FlushRequester getFlushRequester() { return null; }
Example #4
Source File: MockRegionServer.java From hbase with Apache License 2.0 | 4 votes |
@Override public FlushRequester getFlushRequester() { return null; }
Example #5
Source File: MockRegionServerServices.java From hbase with Apache License 2.0 | 4 votes |
@Override public FlushRequester getFlushRequester() { return null; }
Example #6
Source File: TransactionalRegion.java From hbase-secondary-index with GNU General Public License v3.0 | 2 votes |
/** * @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); }