HBASE-25898 RS getting aborted due to NPE in Replication WALEntryStream (#3292)
Signed-off-by: Viraj Jasani <vjasani@apache.org> Signed-off-by: Rushabh Shah <shahrs87@gmail.com>
This commit is contained in:
parent
a7e6cac7a0
commit
0df3deab92
|
@ -373,8 +373,8 @@ class WALEntryStream implements Closeable {
|
||||||
handleFileNotFound(path, (FileNotFoundException)ioe);
|
handleFileNotFound(path, (FileNotFoundException)ioe);
|
||||||
} catch (LeaseNotRecoveredException lnre) {
|
} catch (LeaseNotRecoveredException lnre) {
|
||||||
// HBASE-15019 the WAL was not closed due to some hiccup.
|
// HBASE-15019 the WAL was not closed due to some hiccup.
|
||||||
LOG.warn("Try to recover the WAL lease " + currentPath, lnre);
|
LOG.warn("Try to recover the WAL lease " + path, lnre);
|
||||||
recoverLease(conf, currentPath);
|
recoverLease(conf, path);
|
||||||
reader = null;
|
reader = null;
|
||||||
} catch (NullPointerException npe) {
|
} catch (NullPointerException npe) {
|
||||||
// Workaround for race condition in HDFS-4380
|
// Workaround for race condition in HDFS-4380
|
||||||
|
|
Loading…
Reference in New Issue