HBASE-21749 RS UI may throw NPE and make rs-status page inaccessible with multiwal and replication
Signed-off-by: Andrew Purtell <apurtell@apache.org>
This commit is contained in:
parent
35df6147ee
commit
f2820ea16f
|
@ -329,11 +329,16 @@ public class ReplicationSource implements ReplicationSourceInterface {
|
||||||
replicationDelay =
|
replicationDelay =
|
||||||
ReplicationLoad.calculateReplicationDelay(ageOfLastShippedOp, lastTimeStamp, queueSize);
|
ReplicationLoad.calculateReplicationDelay(ageOfLastShippedOp, lastTimeStamp, queueSize);
|
||||||
Path currentPath = shipper.getCurrentPath();
|
Path currentPath = shipper.getCurrentPath();
|
||||||
try {
|
fileSize = -1;
|
||||||
fileSize = getFileSize(currentPath);
|
if (currentPath != null) {
|
||||||
} catch (IOException e) {
|
try {
|
||||||
LOG.warn("Ignore the exception as the file size of HLog only affects the web ui", e);
|
fileSize = getFileSize(currentPath);
|
||||||
fileSize = -1;
|
} catch (IOException e) {
|
||||||
|
LOG.warn("Ignore the exception as the file size of HLog only affects the web ui", e);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
currentPath = new Path("NO_LOGS_IN_QUEUE");
|
||||||
|
LOG.warn("No replication ongoing, waiting for new log");
|
||||||
}
|
}
|
||||||
ReplicationStatus.ReplicationStatusBuilder statusBuilder = ReplicationStatus.newBuilder();
|
ReplicationStatus.ReplicationStatusBuilder statusBuilder = ReplicationStatus.newBuilder();
|
||||||
statusBuilder.withPeerId(this.getPeerId())
|
statusBuilder.withPeerId(this.getPeerId())
|
||||||
|
|
Loading…
Reference in New Issue