0
它看起來像我能得到中間關鍵,像這樣:HBase有沒有辦法讓我獲得一個區域的中鍵?
RegionServerServices rss = null;
final List<Region> onlineRegions = rss.getOnlineRegions(tableName);
for (Region region : onlineRegions) {
final List<Store> stores = region.getStores();
for (Store store : stores) {
final long storeSize = store.getSize();
final byte[] splitPoint = store.getSplitPoint();
}
}
}
}
但是,沒有辦法,我得到一個HRegion
或Region
或在客戶端上一個RegionServerService
。