RegionInfoBuilder
to build RegionInfo
.@Deprecated @InterfaceAudience.Public public class HRegionInfo extends Object implements RegionInfo
Modifier and Type | Field and Description |
---|---|
(package private) static String |
DISPLAY_KEYS_KEY
Deprecated.
|
static String |
ENCODED_REGION_NAME_REGEX
Deprecated.
A non-capture group so that this can be embedded.
|
private String |
encodedName
Deprecated.
|
private byte[] |
encodedNameAsBytes
Deprecated.
|
private byte[] |
endKey
Deprecated.
|
static HRegionInfo |
FIRST_META_REGIONINFO
Deprecated.
HRegionInfo for first meta region
|
private int |
hashCode
Deprecated.
|
static byte[] |
HIDDEN_END_KEY
Deprecated.
|
static byte[] |
HIDDEN_START_KEY
Deprecated.
|
private static org.slf4j.Logger |
LOG
Deprecated.
|
private static int |
MAX_REPLICA_ID
Deprecated.
|
static String |
NO_HASH
Deprecated.
|
private boolean |
offLine
Deprecated.
|
private long |
regionId
Deprecated.
|
private byte[] |
regionName
Deprecated.
|
private int |
replicaId
Deprecated.
|
private boolean |
split
Deprecated.
|
private byte[] |
startKey
Deprecated.
|
private TableName |
tableName
Deprecated.
|
COMPARATOR, DEFAULT_REPLICA_ID, ENC_SEPARATOR, INVALID_REGION_NAME_FORMAT_MESSAGE, MD5_HEX_LENGTH, REPLICA_ID_DELIMITER, REPLICA_ID_FORMAT, UNDEFINED
Modifier | Constructor and Description |
---|---|
|
HRegionInfo(HRegionInfo other,
int replicaId)
Deprecated.
|
private |
HRegionInfo(long regionId,
TableName tableName)
Deprecated.
Private constructor used constructing HRegionInfo for the first meta regions
|
|
HRegionInfo(long regionId,
TableName tableName,
int replicaId)
Deprecated.
|
|
HRegionInfo(RegionInfo other)
Deprecated.
Construct a copy of another HRegionInfo
|
|
HRegionInfo(TableName tableName)
Deprecated.
|
|
HRegionInfo(TableName tableName,
byte[] startKey,
byte[] endKey)
Deprecated.
Construct HRegionInfo with explicit parameters
|
|
HRegionInfo(TableName tableName,
byte[] startKey,
byte[] endKey,
boolean split)
Deprecated.
Construct HRegionInfo with explicit parameters
|
|
HRegionInfo(TableName tableName,
byte[] startKey,
byte[] endKey,
boolean split,
long regionId)
Deprecated.
Construct HRegionInfo with explicit parameters
|
|
HRegionInfo(TableName tableName,
byte[] startKey,
byte[] endKey,
boolean split,
long regionId,
int replicaId)
Deprecated.
Construct HRegionInfo with explicit parameters
|
Modifier and Type | Method and Description |
---|---|
static boolean |
areAdjacent(HRegionInfo regionA,
HRegionInfo regionB)
Deprecated.
As of release 2.0.0, this will be removed in HBase 3.0.0 Use
RegionInfo.areAdjacent(RegionInfo, RegionInfo) . |
boolean |
containsRange(byte[] rangeStartKey,
byte[] rangeEndKey)
Deprecated.
Returns true if the given inclusive range of rows is fully contained by this region.
|
boolean |
containsRow(byte[] row)
Deprecated.
Returns true if the given row falls in this region.
|
(package private) org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.RegionInfo |
convert()
Deprecated.
Convert a HRegionInfo to the protobuf RegionInfo
|
static HRegionInfo |
convert(org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.RegionInfo proto)
Deprecated.
As of release 2.0.0, this will be removed in HBase 3.0.0 Use
toRegionInfo(HBaseProtos.RegionInfo) in
org.apache.hadoop.hbase.shaded.protobuf.ProtobufUtil.
|
static org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.RegionInfo |
convert(HRegionInfo info)
Deprecated.
As of release 2.0.0, this will be removed in HBase 3.0.0 Use
toRegionInfo(org.apache.hadoop.hbase.client.RegionInfo) in
org.apache.hadoop.hbase.shaded.protobuf.ProtobufUtil.
|
static byte[] |
createRegionName(TableName tableName,
byte[] startKey,
byte[] id,
boolean newFormat)
Deprecated.
As of release 2.0.0, this will be removed in HBase 3.0.0 Use
RegionInfo.createRegionName(TableName, byte[], byte[], boolean) . |
static byte[] |
createRegionName(TableName tableName,
byte[] startKey,
byte[] id,
int replicaId,
boolean newFormat)
Deprecated.
As of release 2.0.0, this will be removed in HBase 3.0.0 Use
RegionInfo.createRegionName(TableName, byte[], byte[], int, boolean) . |
static byte[] |
createRegionName(TableName tableName,
byte[] startKey,
long regionId,
boolean newFormat)
Deprecated.
As of release 2.0.0, this will be removed in HBase 3.0.0 Use
RegionInfo.createRegionName(TableName, byte[], long, boolean) . |
static byte[] |
createRegionName(TableName tableName,
byte[] startKey,
long regionId,
int replicaId,
boolean newFormat)
Deprecated.
As of release 2.0.0, this will be removed in HBase 3.0.0 Use
RegionInfo.createRegionName(TableName, byte[], long, int, boolean) . |
static byte[] |
createRegionName(TableName tableName,
byte[] startKey,
String id,
boolean newFormat)
Deprecated.
As of release 2.0.0, this will be removed in HBase 3.0.0 Use
RegionInfo.createRegionName(TableName, byte[], String, boolean) . |
static String |
encodeRegionName(byte[] regionName)
Deprecated.
As of release 2.0.0, this will be removed in HBase 3.0.0 Use
RegionInfo.encodeRegionName(byte[]) . |
boolean |
equals(Object o)
Deprecated.
|
KeyValue.KVComparator |
getComparator()
Deprecated.
Use Region#getCellComparator(). deprecated for hbase 2.0, remove for hbase 3.0
|
static String |
getDescriptiveNameFromRegionStateForDisplay(RegionState state,
org.apache.hadoop.conf.Configuration conf)
Deprecated.
As of release 2.0.0, this will be removed in HBase 3.0.0 Use
RegionInfoDisplay#getDescriptiveNameFromRegionStateForDisplay(RegionState,
Configuration) over in hbase-server module.
|
String |
getEncodedName()
Deprecated.
Returns the encoded region name
|
byte[] |
getEncodedNameAsBytes()
Deprecated.
Returns the encoded region name as an array of bytes.
|
byte[] |
getEndKey()
Deprecated.
Returns the endKey
|
static byte[] |
getEndKeyForDisplay(HRegionInfo hri,
org.apache.hadoop.conf.Configuration conf)
Deprecated.
As of release 2.0.0, this will be removed in HBase 3.0.0 Use
RegionInfoDisplay#getEndKeyForDisplay(RegionInfo, Configuration) over in
hbase-server module.
|
long |
getRegionId()
Deprecated.
Returns the regionId
|
byte[] |
getRegionName()
Deprecated.
Returns the regionName as an array of bytes.
|
String |
getRegionNameAsString()
Deprecated.
Returns Region name as a String for use in logging, etc.
|
static String |
getRegionNameAsStringForDisplay(HRegionInfo hri,
org.apache.hadoop.conf.Configuration conf)
Deprecated.
As of release 2.0.0, this will be removed in HBase 3.0.0 Use
RegionInfoDisplay#getRegionNameAsStringForDisplay(RegionInfo, Configuration) over
in hbase-server module.
|
static byte[] |
getRegionNameForDisplay(HRegionInfo hri,
org.apache.hadoop.conf.Configuration conf)
Deprecated.
As of release 2.0.0, this will be removed in HBase 3.0.0 Use
RegionInfoDisplay#getRegionNameForDisplay(RegionInfo, Configuration) over in
hbase-server module.
|
int |
getReplicaId()
Deprecated.
Returns the region replica id
|
String |
getShortNameToLog()
Deprecated.
Returns Return a short, printable name for this region (usually encoded name) for us logging.
|
static String |
getShortNameToLog(HRegionInfo... hris)
Deprecated.
As of release 2.0.0, this will be removed in HBase 3.0.0 Use
RegionInfo.getShortNameToLog(RegionInfo...) . |
static String |
getShortNameToLog(List<HRegionInfo> hris)
Deprecated.
As of release 2.0.0, this will be removed in HBase 3.0.0 Use
RegionInfo.getShortNameToLog(List) )}. |
byte[] |
getStartKey()
Deprecated.
Returns the startKey
|
static byte[] |
getStartKey(byte[] regionName)
Deprecated.
As of release 2.0.0, this will be removed in HBase 3.0.0 Use
RegionInfo.getStartKey(byte[]) . |
static byte[] |
getStartKeyForDisplay(HRegionInfo hri,
org.apache.hadoop.conf.Configuration conf)
Deprecated.
As of release 2.0.0, this will be removed in HBase 3.0.0 Use
RegionInfoDisplay#getStartKeyForDisplay(RegionInfo, Configuration) over in
hbase-server module.
|
TableName |
getTable()
Deprecated.
Get current table name of the region n
|
static TableName |
getTable(byte[] regionName)
Deprecated.
As of release 2.0.0, this will be removed in HBase 3.0.0 Use
RegionInfo.getTable(byte[]) . |
int |
hashCode()
Deprecated.
|
static boolean |
isEncodedRegionName(byte[] regionName)
Deprecated.
|
boolean |
isMetaRegion()
Deprecated.
Returns true if this region is a meta region
|
boolean |
isMetaTable()
Deprecated.
Returns true if this region is from hbase:meta
|
boolean |
isOffline()
Deprecated.
Returns true if this region is offline.
|
boolean |
isSplit()
Deprecated.
Returns true if has been split and has daughters.
|
boolean |
isSplitParent()
Deprecated.
Returns true if this is a split parent region.
|
boolean |
isSystemTable()
Deprecated.
Returns true if this region is from a system table
|
static List<HRegionInfo> |
parseDelimitedFrom(byte[] bytes,
int offset,
int length)
Deprecated.
As of release 2.0.0, this will be removed in HBase 3.0.0 Use
RegionInfo.parseDelimitedFrom(byte[], int, int) . |
static HRegionInfo |
parseFrom(byte[] bytes)
Deprecated.
As of release 2.0.0, this will be removed in HBase 3.0.0 Use
RegionInfo.parseFrom(byte[]) . |
static HRegionInfo |
parseFrom(byte[] bytes,
int offset,
int len)
Deprecated.
As of release 2.0.0, this will be removed in HBase 3.0.0 Use
RegionInfo.parseFrom(byte[], int, int) . |
static HRegionInfo |
parseFrom(DataInputStream in)
Deprecated.
|
static HRegionInfo |
parseFromOrNull(byte[] bytes)
Deprecated.
As of release 2.0.0, this will be removed in HBase 3.0.0 Use
RegionInfo.parseFromOrNull(byte[]) . |
static HRegionInfo |
parseFromOrNull(byte[] bytes,
int offset,
int len)
Deprecated.
As of release 2.0.0, this will be removed in HBase 3.0.0 Use
RegionInfo.parseFromOrNull(byte[], int, int) . |
static byte[][] |
parseRegionName(byte[] regionName)
Deprecated.
|
static String |
prettyPrint(String encodedRegionName)
Deprecated.
As of release 2.0.0, this will be removed in HBase 3.0.0 Use
RegionInfo.prettyPrint(String) . |
private void |
setHashCode()
Deprecated.
|
void |
setOffline(boolean offLine)
Deprecated.
The parent of a region split is offline while split daughters hold references to the parent.
|
void |
setSplit(boolean split)
Deprecated.
Set or clear the split status flag.
|
byte[] |
toByteArray()
Deprecated.
As of release 2.0.0, this will be removed in HBase 3.0.0 Use
RegionInfo.toByteArray(RegionInfo) . |
byte[] |
toDelimitedByteArray()
Deprecated.
As of release 2.0.0, this will be removed in HBase 3.0.0 Use
RegionInfo.toDelimitedByteArray(RegionInfo) . |
static byte[] |
toDelimitedByteArray(HRegionInfo... infos)
Deprecated.
As of release 2.0.0, this will be removed in HBase 3.0.0 Use
RegionInfo.toDelimitedByteArray(RegionInfo...) . |
String |
toString()
Deprecated.
|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
areAdjacent, compareTo, createMobRegionInfo, getRegionNameAsString, getRegionNameAsString, getShortNameToLog, getShortNameToLog, hasEncodedName, isAdjacent, isDegenerate, isFirst, isLast, isMD5Hash, isNext, isOverlap, parseRegionNameOrReturnNull, toByteArray, toDelimitedByteArray, toDelimitedByteArray
private static final org.slf4j.Logger LOG
public static final String ENCODED_REGION_NAME_REGEX
private static final int MAX_REPLICA_ID
private byte[] endKey
private boolean offLine
private long regionId
private transient byte[] regionName
private boolean split
private byte[] startKey
private int hashCode
private String encodedName
private byte[] encodedNameAsBytes
private int replicaId
static final String DISPLAY_KEYS_KEY
public static final byte[] HIDDEN_END_KEY
public static final byte[] HIDDEN_START_KEY
public static final HRegionInfo FIRST_META_REGIONINFO
private HRegionInfo(long regionId, TableName tableName)
public HRegionInfo(long regionId, TableName tableName, int replicaId)
public HRegionInfo(TableName tableName)
public HRegionInfo(TableName tableName, byte[] startKey, byte[] endKey) throws IllegalArgumentException
tableName
- the table namestartKey
- first key in regionendKey
- end of key range nIllegalArgumentException
public HRegionInfo(TableName tableName, byte[] startKey, byte[] endKey, boolean split) throws IllegalArgumentException
tableName
- the table namestartKey
- first key in regionendKey
- end of key rangesplit
- true if this region has split and we have daughter regions regions that may or
may not hold references to this region. nIllegalArgumentException
public HRegionInfo(TableName tableName, byte[] startKey, byte[] endKey, boolean split, long regionId) throws IllegalArgumentException
tableName
- the table namestartKey
- first key in regionendKey
- end of key rangesplit
- true if this region has split and we have daughter regions regions that may or
may not hold references to this region.regionId
- Region id to use.IllegalArgumentException
public HRegionInfo(TableName tableName, byte[] startKey, byte[] endKey, boolean split, long regionId, int replicaId) throws IllegalArgumentException
tableName
- the table namestartKey
- first key in regionendKey
- end of key rangesplit
- true if this region has split and we have daughter regions regions that may or
may not hold references to this region.regionId
- Region id to use.replicaId
- the replicaId to useIllegalArgumentException
public HRegionInfo(RegionInfo other)
public HRegionInfo(HRegionInfo other, int replicaId)
@Deprecated public static String encodeRegionName(byte[] regionName)
RegionInfo.encodeRegionName(byte[])
.encodeRegionName
in interface RegionInfo
public String getShortNameToLog()
getShortNameToLog
in interface RegionInfo
@Deprecated public static String getShortNameToLog(HRegionInfo... hris)
RegionInfo.getShortNameToLog(RegionInfo...)
.@Deprecated public static String getShortNameToLog(List<HRegionInfo> hris)
RegionInfo.getShortNameToLog(List)
)}.hris
(usually encoded name)
for us logging.@Deprecated @InterfaceAudience.Private public static String prettyPrint(String encodedRegionName)
RegionInfo.prettyPrint(String)
.prettyPrint
in interface RegionInfo
encodedRegionName
- The encoded regionname.hbase:meta
if passed 1028785192
else returns
encodedRegionName
private void setHashCode()
@Deprecated @InterfaceAudience.Private public static byte[] createRegionName(TableName tableName, byte[] startKey, long regionId, boolean newFormat)
RegionInfo.createRegionName(TableName, byte[], long, boolean)
.createRegionName
in interface RegionInfo
tableName
- the table namestartKey
- Can be nullregionId
- Region id (Usually timestamp from when region was created).newFormat
- should we create the region name in the new format (such that it contains its
encoded name?).@Deprecated @InterfaceAudience.Private public static byte[] createRegionName(TableName tableName, byte[] startKey, String id, boolean newFormat)
RegionInfo.createRegionName(TableName, byte[], String, boolean)
.createRegionName
in interface RegionInfo
tableName
- the table namestartKey
- Can be nullid
- Region id (Usually timestamp from when region was created).newFormat
- should we create the region name in the new format (such that it contains its
encoded name?).@Deprecated @InterfaceAudience.Private public static byte[] createRegionName(TableName tableName, byte[] startKey, long regionId, int replicaId, boolean newFormat)
RegionInfo.createRegionName(TableName, byte[], long, int, boolean)
.createRegionName
in interface RegionInfo
tableName
- the table namestartKey
- Can be nullregionId
- Region id (Usually timestamp from when region was created).newFormat
- should we create the region name in the new format (such that it contains its
encoded name?).@Deprecated @InterfaceAudience.Private public static byte[] createRegionName(TableName tableName, byte[] startKey, byte[] id, boolean newFormat)
RegionInfo.createRegionName(TableName, byte[], byte[], boolean)
.createRegionName
in interface RegionInfo
tableName
- the table namestartKey
- Can be nullid
- Region id (Usually timestamp from when region was created).newFormat
- should we create the region name in the new format (such that it contains its
encoded name?).@Deprecated @InterfaceAudience.Private public static byte[] createRegionName(TableName tableName, byte[] startKey, byte[] id, int replicaId, boolean newFormat)
RegionInfo.createRegionName(TableName, byte[], byte[], int, boolean)
.createRegionName
in interface RegionInfo
tableName
- the table namestartKey
- Can be nullid
- Region id (Usually timestamp from when region was created)newFormat
- should we create the region name in the new format@Deprecated public static TableName getTable(byte[] regionName)
RegionInfo.getTable(byte[])
.getTable
in interface RegionInfo
regionName
- to extract the table name from@Deprecated public static byte[] getStartKey(byte[] regionName) throws IOException
RegionInfo.getStartKey(byte[])
.getStartKey
in interface RegionInfo
IOException
@Deprecated @InterfaceAudience.Private public static byte[][] parseRegionName(byte[] regionName) throws IOException
RegionInfo.parseRegionName(byte[])
.parseRegionName
in interface RegionInfo
IOException
- if not parseable as regionName.@Deprecated public static boolean isEncodedRegionName(byte[] regionName) throws IOException
RegionInfo.isEncodedRegionName(byte[])
.isEncodedRegionName
in interface RegionInfo
regionName
- A Region name either encoded or not.regionName
represents an encoded name.IOException
public long getRegionId()
getRegionId
in interface RegionInfo
public byte[] getRegionName()
RegionInfo
getRegionName
in interface RegionInfo
getRegionNameAsString()
public String getRegionNameAsString()
getRegionNameAsString
in interface RegionInfo
public String getEncodedName()
getEncodedName
in interface RegionInfo
public byte[] getEncodedNameAsBytes()
RegionInfo
getEncodedNameAsBytes
in interface RegionInfo
public byte[] getStartKey()
getStartKey
in interface RegionInfo
public byte[] getEndKey()
getEndKey
in interface RegionInfo
public TableName getTable()
getTable
in interface RegionInfo
public boolean containsRange(byte[] rangeStartKey, byte[] rangeEndKey)
containsRange
in interface RegionInfo
IllegalArgumentException
- if the range passed is invalid (ie. end < start)public boolean containsRow(byte[] row)
containsRow
in interface RegionInfo
public boolean isMetaTable()
public boolean isMetaRegion()
isMetaRegion
in interface RegionInfo
public boolean isSystemTable()
public boolean isSplit()
isSplit
in interface RegionInfo
public void setSplit(boolean split)
split
- set split statuspublic boolean isOffline()
isOffline
in interface RegionInfo
public void setOffline(boolean offLine)
offLine
- Set online/offline status.public boolean isSplitParent()
isSplitParent
in interface RegionInfo
public int getReplicaId()
getReplicaId
in interface RegionInfo
public String toString()
toString
in class Object
Object.toString()
public boolean equals(Object o)
equals
in class Object
Object.equals(java.lang.Object)
public int hashCode()
hashCode
in class Object
Object.hashCode()
@Deprecated public KeyValue.KVComparator getComparator()
KeyValue
s.org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.RegionInfo convert()
@Deprecated @InterfaceAudience.Private public static org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.RegionInfo convert(HRegionInfo info)
info
- the HRegionInfo to convert@Deprecated @InterfaceAudience.Private public static HRegionInfo convert(org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.RegionInfo proto)
proto
- the RegionInfo to convert@Deprecated public byte[] toByteArray()
RegionInfo.toByteArray(RegionInfo)
.HRegionInfo
into a byte array.parseFrom(byte[])
@Deprecated public static HRegionInfo parseFromOrNull(byte[] bytes)
RegionInfo.parseFromOrNull(byte[])
.HRegionInfo
.parseFromOrNull
in interface RegionInfo
HRegionInfo
or null if we failed deserialize or passed bytes
nulltoByteArray()
@Deprecated public static HRegionInfo parseFromOrNull(byte[] bytes, int offset, int len)
RegionInfo.parseFromOrNull(byte[], int, int)
.HRegionInfo
.parseFromOrNull
in interface RegionInfo
HRegionInfo
or null if we failed deserialize or passed bytes
nulltoByteArray()
public static HRegionInfo parseFrom(byte[] bytes) throws DeserializationException
RegionInfo.parseFrom(byte[])
.HRegionInfo
.parseFrom
in interface RegionInfo
bytes
- A pb RegionInfo serialized with a pb magic prefix.HRegionInfo
n * @see #toByteArray()DeserializationException
@Deprecated public static HRegionInfo parseFrom(byte[] bytes, int offset, int len) throws DeserializationException
RegionInfo.parseFrom(byte[], int, int)
.HRegionInfo
.parseFrom
in interface RegionInfo
bytes
- A pb RegionInfo serialized with a pb magic prefix.offset
- starting point in the byte arraylen
- length to read on the byte arrayHRegionInfo
n * @see #toByteArray()DeserializationException
@Deprecated public byte[] toDelimitedByteArray() throws IOException
RegionInfo.toDelimitedByteArray(RegionInfo)
.toByteArray()
when writing to a stream and you want to use the pb
mergeDelimitedFrom (w/o the delimiter, pb reads to EOF which may not be what you want).IOException
@Deprecated @InterfaceAudience.Private public static String getDescriptiveNameFromRegionStateForDisplay(RegionState state, org.apache.hadoop.conf.Configuration conf)
RegionState
does it but with hidden startkey optionally nn
* @return descriptive string@Deprecated @InterfaceAudience.Private public static byte[] getEndKeyForDisplay(HRegionInfo hri, org.apache.hadoop.conf.Configuration conf)
@Deprecated @InterfaceAudience.Private public static byte[] getStartKeyForDisplay(HRegionInfo hri, org.apache.hadoop.conf.Configuration conf)
@Deprecated @InterfaceAudience.Private public static String getRegionNameAsStringForDisplay(HRegionInfo hri, org.apache.hadoop.conf.Configuration conf)
@Deprecated @InterfaceAudience.Private public static byte[] getRegionNameForDisplay(HRegionInfo hri, org.apache.hadoop.conf.Configuration conf)
@Deprecated @InterfaceAudience.Private public static HRegionInfo parseFrom(DataInputStream in) throws IOException
toDelimitedByteArray()
n * @return An instance of
HRegionInfo. n * @deprecated As of release 2.0.0, this will be removed in HBase 3.0.0 Use
RegionInfo.parseFrom(DataInputStream)
.parseFrom
in interface RegionInfo
IOException
@Deprecated @InterfaceAudience.Private public static byte[] toDelimitedByteArray(HRegionInfo... infos) throws IOException
RegionInfo.toDelimitedByteArray(RegionInfo...)
.toByteArray()
when
writing to a stream and you want to use the pb mergeDelimitedFrom (w/o the delimiter, pb reads
to EOF which may not be what you want). parseDelimitedFrom(byte[], int, int)
can be
used to read back the instances.infos
- HRegionInfo objects to serializeIOException
@Deprecated public static List<HRegionInfo> parseDelimitedFrom(byte[] bytes, int offset, int length) throws IOException
RegionInfo.parseDelimitedFrom(byte[], int, int)
.toDelimitedByteArray()
parseDelimitedFrom
in interface RegionInfo
bytes
- serialized bytesoffset
- the start offset into the byte[] bufferlength
- how far we should read into the byte[] bufferIOException
@Deprecated public static boolean areAdjacent(HRegionInfo regionA, HRegionInfo regionB)
RegionInfo.areAdjacent(RegionInfo, RegionInfo)
.Copyright © 2007–2020 The Apache Software Foundation. All rights reserved.