HBASE-22097 Modify the description of split command in shell

Signed-off-by: Peter Somogyi <psomogyi@apache.org>
Signed-off-by: Xu Cang <xucang@apache.org>
This commit is contained in:
Toshihiro Suzuki 2019-03-24 00:56:10 +09:00
parent caa9650a70
commit a330394eec
1 changed files with 6 additions and 5 deletions

View File

@ -25,11 +25,12 @@ module Shell
Split entire table or pass a region to split individual region. With the 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. second parameter, you can specify an explicit split key for the region.
Examples: Examples:
split 'tableName' split 'TABLENAME'
split 'namespace:tableName' split 'REGIONNAME'
split 'regionName' # format: 'tableName,startKey,id' split 'ENCODED_REGIONNAME'
split 'tableName', 'splitKey' split 'TABLENAME', 'splitKey'
split 'regionName', 'splitKey' split 'REGIONNAME', 'splitKey'
split 'ENCODED_REGIONNAME', 'splitKey'
EOF EOF
end end