HBASE-25758 Move MetaTableAccessor out of hbase-balancer module (#3309)
Signed-off-by: Yulin Niu <niuyulin@apache.org>
This commit is contained in:
parent
c88ae3add8
commit
ed8df5eded
|
@ -73,7 +73,7 @@ import org.slf4j.LoggerFactory;
|
||||||
* family. The column family currently has one column in it, the 'state' column:
|
* family. The column family currently has one column in it, the 'state' column:
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* table:state => contains table state
|
* table:state => contains table state
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
* For the catalog family, see the comments of {@link CatalogFamilyFormat} for more details.
|
* For the catalog family, see the comments of {@link CatalogFamilyFormat} for more details.
|
||||||
|
@ -747,11 +747,12 @@ public final class MetaTableAccessor {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds daughter region infos to hbase:meta row for the specified region. Note that this does not
|
* Adds daughter region infos to hbase:meta row for the specified region.
|
||||||
* add its daughter's as different rows, but adds information about the daughters in the same row
|
* <p/>
|
||||||
* as the parent. Use
|
* Note that this does not add its daughter's as different rows, but adds information about the
|
||||||
* {@link #splitRegion(Connection, RegionInfo, long, RegionInfo, RegionInfo, ServerName, int)} if
|
* daughters in the same row as the parent. Now only used in snapshot. Use
|
||||||
* you want to do that.
|
* {@link org.apache.hadoop.hbase.master.assignment.RegionStateStore} if you want to split a
|
||||||
|
* region.
|
||||||
* @param connection connection we're using
|
* @param connection connection we're using
|
||||||
* @param regionInfo RegionInfo of parent region
|
* @param regionInfo RegionInfo of parent region
|
||||||
* @param splitA first split daughter of the parent regionInfo
|
* @param splitA first split daughter of the parent regionInfo
|
Loading…
Reference in New Issue