Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 hbase 0.94.0。我正在尝试使用以下功能
public void move(byte[] encodedRegionName,byte[] destServerName)
destServerName我使用getServerName函数检索。
destServerName
getServerName
现在我如何得到encodedRegionName?有没有这方面的API?
encodedRegionName
谢谢。
HBaseAdmin 类的 getOnlineRegions() 或 getTableRegions() 方法可以给出 HRegionInfo 的列表,其中有 getEncodedNameAsBytes() 方法。