org.apache.hadoop.hbase.catalog.CatalogTracker Java Examples

The following examples show how to use org.apache.hadoop.hbase.catalog.CatalogTracker. 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: TransactionalRegionServer.java    From hbase-secondary-index with GNU General Public License v3.0 5 votes vote down vote up
@Override
public void postOpenDeployTasks(final HRegion r, final CatalogTracker ct,
		final boolean daughter) throws KeeperException, IOException {
	if (r instanceof TransactionalRegion) {
		TransactionalRegion trxRegion = (TransactionalRegion) r;
		trxRegion.setTransactionLog(trxHLog);
		trxRegion.setTransactionalLeases(getTransactionalLeases());
	}
	super.postOpenDeployTasks(r, ct, daughter);
}
 
Example #2
Source File: BaseHRegionServer.java    From DataLink with Apache License 2.0 4 votes vote down vote up
@Override
public CatalogTracker getCatalogTracker() {
    return null;
}
 
Example #3
Source File: TransactionProcessorTest.java    From phoenix-tephra with Apache License 2.0 4 votes vote down vote up
@Override
public void postOpenDeployTasks(HRegion r, CatalogTracker ct) throws KeeperException, IOException {
}
 
Example #4
Source File: TransactionProcessorTest.java    From phoenix-tephra with Apache License 2.0 4 votes vote down vote up
@Override
public CatalogTracker getCatalogTracker() {
  return null;
}
 
Example #5
Source File: TransactionProcessorTest.java    From phoenix-tephra with Apache License 2.0 4 votes vote down vote up
@Override
public void postOpenDeployTasks(HRegion r, CatalogTracker ct) throws KeeperException, IOException {
}
 
Example #6
Source File: TransactionProcessorTest.java    From phoenix-tephra with Apache License 2.0 4 votes vote down vote up
@Override
public CatalogTracker getCatalogTracker() {
  return null;
}