saintstack commented on a change in pull request #1774: URL: https://github.com/apache/hbase/pull/1774#discussion_r437875533
########## File path: hbase-server/src/main/java/org/apache/hadoop/hbase/master/MasterServices.java ########## @@ -552,4 +553,12 @@ default SplitWALManager getSplitWALManager(){ * @return The state of the load balancer, or false if the load balancer isn't defined. */ boolean isBalancerOn(); + + /** + * Get locations for all meta regions. + * @param excludeOfflinedSplitParents don't return split parents + * @return The locations of all the meta regions + */ + List<RegionLocations> getAllMetaRegionLocations(boolean excludeOfflinedSplitParents) Review comment: Ok. Helps. I dislike this parameter. It has the smell of 'more' params being needed as we progress... but perhaps not... We have method like this already over in Meta Accessor. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org