HDFS-7916. 'reportBadBlocks' from datanodes to standby Node BPServiceActor goes for infinite loop (Contributed by Vinayakumar B)
Reverted earlier commit
This commit is contained in:
parent
338e88a19e
commit
318081ccd7
|
@ -664,9 +664,6 @@ Release 2.7.1 - UNRELEASED
|
||||||
HDFS-8179. DFSClient#getServerDefaults returns null within 1
|
HDFS-8179. DFSClient#getServerDefaults returns null within 1
|
||||||
hour of system start. (Xiaoyu Yao via Arpit Agarwal)
|
hour of system start. (Xiaoyu Yao via Arpit Agarwal)
|
||||||
|
|
||||||
HDFS-7916. 'reportBadBlocks' from datanodes to standby Node BPServiceActor
|
|
||||||
goes for infinite loop (vinayakumarb)
|
|
||||||
|
|
||||||
HDFS-8163. Using monotonicNow for block report scheduling causes
|
HDFS-8163. Using monotonicNow for block report scheduling causes
|
||||||
test failures on recently restarted systems. (Arpit Agarwal)
|
test failures on recently restarted systems. (Arpit Agarwal)
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,6 @@ import org.apache.hadoop.hdfs.protocol.ExtendedBlock;
|
||||||
import org.apache.hadoop.hdfs.protocol.LocatedBlock;
|
import org.apache.hadoop.hdfs.protocol.LocatedBlock;
|
||||||
import org.apache.hadoop.hdfs.protocolPB.DatanodeProtocolClientSideTranslatorPB;
|
import org.apache.hadoop.hdfs.protocolPB.DatanodeProtocolClientSideTranslatorPB;
|
||||||
import org.apache.hadoop.hdfs.server.protocol.DatanodeRegistration;
|
import org.apache.hadoop.hdfs.server.protocol.DatanodeRegistration;
|
||||||
import org.apache.hadoop.ipc.StandbyException;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ReportBadBlockAction is an instruction issued by {{BPOfferService}} to
|
* ReportBadBlockAction is an instruction issued by {{BPOfferService}} to
|
||||||
|
@ -60,9 +59,6 @@ public class ReportBadBlockAction implements BPServiceActorAction {
|
||||||
|
|
||||||
try {
|
try {
|
||||||
bpNamenode.reportBadBlocks(locatedBlock);
|
bpNamenode.reportBadBlocks(locatedBlock);
|
||||||
} catch (StandbyException e) {
|
|
||||||
DataNode.LOG.warn("Failed to report bad block " + block
|
|
||||||
+ " to standby namenode");
|
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
throw new BPServiceActorActionException("Failed to report bad block "
|
throw new BPServiceActorActionException("Failed to report bad block "
|
||||||
+ block + " to namenode: ");
|
+ block + " to namenode: ");
|
||||||
|
|
Loading…
Reference in New Issue