Package org.apache.hadoop.hbase.regionserver

Examples of org.apache.hadoop.hbase.regionserver.IndexSplitTransaction$LoggingProgressable


        if (tableDesc.getValue(MetaDataUtil.IS_LOCAL_INDEX_TABLE_PROP_BYTES) == null
                || !Boolean.TRUE.equals(PDataType.BOOLEAN.toObject(tableDesc
                        .getValue(MetaDataUtil.IS_LOCAL_INDEX_TABLE_PROP_BYTES)))) {
            HRegion indexRegion = IndexUtil.getIndexRegion(environment);
            if (indexRegion == null) return;
            st = new IndexSplitTransaction(indexRegion, splitKey);
            if (!st.prepare()) {
                LOG.error("Prepare for the table " + indexRegion.getTableDesc().getNameAsString()
                        + " failed. So returning null. ");
                ctx.bypass();
                return;
View Full Code Here

TOP

Related Classes of org.apache.hadoop.hbase.regionserver.IndexSplitTransaction$LoggingProgressable

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.