public static class RegionSplitter.HexStringSplit extends Object implements RegionSplitter.SplitAlgorithm
RegionSplitter.SplitAlgorithm for choosing region
 boundaries. The format of a HexStringSplit region boundary is the ASCII
 representation of an MD5 checksum, or any other uniformly distributed
 hexadecimal value. Row are hex-encoded long values in the range
 "00000000" => "FFFFFFFF" and are left-padded with zeros to keep the
 same order lexicographically as if they were binary.
 Since this split algorithm uses hex strings as keys, it is easy to read &
 write in the shell but takes up more space and may be non-intuitive.| Constructor and Description | 
|---|
| RegionSplitter.HexStringSplit() | 
| Modifier and Type | Method and Description | 
|---|---|
| BigInteger | convertToBigInteger(byte[] row)Returns the BigInteger represented by the byte array | 
| byte[] | convertToByte(BigInteger bigInteger)Returns the bytes corresponding to the BigInteger | 
| static byte[] | convertToByte(BigInteger bigInteger,
             int pad)Returns the bytes corresponding to the BigInteger | 
| byte[][] | convertToBytes(BigInteger[] bigIntegers)Returns an array of bytes corresponding to an array of BigIntegers | 
| byte[] | firstRow()In HBase, the first row is represented by an empty byte array. | 
| byte[] | lastRow()In HBase, the last row is represented by an empty byte array. | 
| String | rowToStr(byte[] row) | 
| String | separator() | 
| void | setFirstRow(byte[] userInput)Set the first row | 
| void | setFirstRow(String userInput)In HBase, the last row is represented by an empty byte array. | 
| void | setLastRow(byte[] userInput)Set the last row | 
| void | setLastRow(String userInput)In HBase, the last row is represented by an empty byte array. | 
| byte[] | split(byte[] start,
     byte[] end)Split a pre-existing region into 2 regions. | 
| byte[][] | split(int n)Split an entire table. | 
| BigInteger | split2(BigInteger a,
      BigInteger b)Divide 2 numbers in half (for split algorithm) | 
| byte[] | strToRow(String in) | 
| String | toString() | 
public byte[] split(byte[] start,
           byte[] end)
RegionSplitter.SplitAlgorithmsplit in interface RegionSplitter.SplitAlgorithmstart - first row (inclusive)end - last row (exclusive)public byte[][] split(int n)
RegionSplitter.SplitAlgorithmsplit in interface RegionSplitter.SplitAlgorithmn - number of regions to split the table intopublic byte[] firstRow()
RegionSplitter.SplitAlgorithmfirstRow in interface RegionSplitter.SplitAlgorithmpublic byte[] lastRow()
RegionSplitter.SplitAlgorithmlastRow in interface RegionSplitter.SplitAlgorithmpublic void setFirstRow(String userInput)
RegionSplitter.SplitAlgorithmsetFirstRow in interface RegionSplitter.SplitAlgorithmuserInput - raw user input (may throw RuntimeException on parse failure)public void setLastRow(String userInput)
RegionSplitter.SplitAlgorithmsetLastRow in interface RegionSplitter.SplitAlgorithmuserInput - raw user input (may throw RuntimeException on parse failure)public byte[] strToRow(String in)
strToRow in interface RegionSplitter.SplitAlgorithmin - user or file input for rowpublic String rowToStr(byte[] row)
rowToStr in interface RegionSplitter.SplitAlgorithmrow - byte array representing a row in HBasepublic String separator()
separator in interface RegionSplitter.SplitAlgorithmpublic void setFirstRow(byte[] userInput)
RegionSplitter.SplitAlgorithmsetFirstRow in interface RegionSplitter.SplitAlgorithmuserInput - byte array of the row key.public void setLastRow(byte[] userInput)
RegionSplitter.SplitAlgorithmsetLastRow in interface RegionSplitter.SplitAlgorithmuserInput - byte array of the row key.public BigInteger split2(BigInteger a, BigInteger b)
a - number #1b - number #2public byte[][] convertToBytes(BigInteger[] bigIntegers)
bigIntegers - numbers to convertpublic static byte[] convertToByte(BigInteger bigInteger, int pad)
bigInteger - number to convertpad - padding lengthpublic byte[] convertToByte(BigInteger bigInteger)
bigInteger - number to convertpublic BigInteger convertToBigInteger(byte[] row)
row - byte array representing rowCopyright © 2007-2016 The Apache Software Foundation. All Rights Reserved.