FileSystem fs = FSUtils.getCurrentFileSystem(conf);
Path path = getTableInfoFilePath(conf, tableName, fs);
if (null != path) {
fsDataInputStream = fs.open(path);
tableDescriptor = new IndexedHTableDescriptor();
tableDescriptor.readFields(fsDataInputStream);
}
} catch (IOException e) {
if (e instanceof EOFException) {
if (LOG.isDebugEnabled()) {
LOG.debug("Error reading data from the table descriptor . Got " + e + " exception");