Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
0.11.1
-
None
Description
Now, the hbase storage code is below. Tajo uses the getRegionLocator() method of HTable, HBase 1.1.0 version.
I wish getRegionLocator() method to remove for HBase 1.0.0 compatibility. HTable already implements RegionLocator interface.
Thank you.
public RegionSizeCalculator(HTable table) throws IOException {
HBaseAdmin admin = new HBaseAdmin(table.getConfiguration());
try
finally
{ admin.close(); }}
to
public RegionSizeCalculator(HTable table) throws IOException {
HBaseAdmin admin = new HBaseAdmin(table.getConfiguration());
try { init(table, admin); } finally { admin.close(); }
}