Please note that the command you provide creates 15 regions, not 8: create 't1', 'f1', {NUMREGIONS => 15, SPLITALGO => 'HexStringSplit'}
You can split regions using the split command:
hbase(main):001:0> split Here is some help for this command: Split entire table or pass a region to split individual region. With the second parameter, you can specify an explicit split key for the region. Examples: split 'tableName' split 'regionName'
You should use split 'regionName', 'splitKey' or split 'tableName', 'splitKey' , just remember to provide the appropriate SplitKey (middle) for each region to ensure even distribution. You can see the current regions in http: // your-hbase-master: 60010 / table.jsp? Name = your-table
ie: if you have an area with StartKey 20,000,000 and EndKey 40,000,000, your splitKey will be 30,000,000, or if you have an area with StartKey 20,000,000 and EndKey 30,000,000, your SplitKey will be 28,000,000 (remember this is a HEX)
Please try first with test patterns until you feel confident enough in the process.
source share