HBASE-12337 Import tool fails with NullPointerException if clusterIds is not initialized
This commit is contained in:
parent
3f6b734635
commit
0eb07609b6
|
@ -231,18 +231,26 @@ public class Import extends Configured implements Tool {
|
|||
}
|
||||
// TODO: This is kind of ugly doing setup of ZKW just to read the clusterid.
|
||||
ZooKeeperWatcher zkw = null;
|
||||
Exception ex = null;
|
||||
try {
|
||||
zkw = new ZooKeeperWatcher(conf, context.getTaskAttemptID().toString(), null);
|
||||
clusterIds = Collections.singletonList(ZKClusterId.getUUIDForCluster(zkw));
|
||||
} catch (ZooKeeperConnectionException e) {
|
||||
ex = e;
|
||||
LOG.error("Problem connecting to ZooKeper during task setup", e);
|
||||
} catch (KeeperException e) {
|
||||
ex = e;
|
||||
LOG.error("Problem reading ZooKeeper data during task setup", e);
|
||||
} catch (IOException e) {
|
||||
ex = e;
|
||||
LOG.error("Problem setting up task", e);
|
||||
} finally {
|
||||
if (zkw != null) zkw.close();
|
||||
}
|
||||
if (clusterIds == null) {
|
||||
// exit early if setup fails
|
||||
throw new RuntimeException(ex);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue