Path regioninfo = new Path(regionDir, HRegion.REGIONINFO_FILE);
FileSystem fs = FileSystem.get(conf);
FSDataInputStream in = fs.open(regioninfo);
byte[] tableName = Bytes.toBytes(hbi.hdfsTableName);
HRegionInfo hri = new HRegionInfo(tableName);
hri.readFields(in);
in.close();
LOG.debug("HRegionInfo read: " + hri.toString());
hbi.metaEntry = new MetaEntry(hri, null,
hbi.foundRegionDir.getModificationTime());
}