HDFS-8391. NN should consider current EC tasks handling count from DN while assigning new tasks. Contributed by Uma Maheswara Rao G.
This commit is contained in:
parent
bba15e06d2
commit
c99c337928
@ -212,3 +212,6 @@
|
||||
|
||||
HDFS-8364. Erasure coding: fix some minor bugs in EC CLI
|
||||
(Walter Su via vinayakumarb)
|
||||
|
||||
HDFS-8391. NN should consider current EC tasks handling count from DN while
|
||||
assigning new tasks. (umamahesh)
|
||||
|
@ -1909,6 +1909,21 @@ void incrDatanodeNetworkErrors(String host) {
|
||||
int getXmitsInProgress() {
|
||||
return xmitsInProgress.get();
|
||||
}
|
||||
|
||||
/**
|
||||
* Increments the xmitsInProgress count. xmitsInProgress count represents the
|
||||
* number of data replication/reconstruction tasks running currently.
|
||||
*/
|
||||
public void incrementXmitsInProgress() {
|
||||
xmitsInProgress.getAndIncrement();
|
||||
}
|
||||
|
||||
/**
|
||||
* Decrements the xmitsInProgress count
|
||||
*/
|
||||
public void decrementXmitsInProgress() {
|
||||
xmitsInProgress.getAndDecrement();
|
||||
}
|
||||
|
||||
private void reportBadBlock(final BPOfferService bpos,
|
||||
final ExtendedBlock block, final String msg) {
|
||||
@ -2128,7 +2143,7 @@ private class DataTransfer implements Runnable {
|
||||
*/
|
||||
@Override
|
||||
public void run() {
|
||||
xmitsInProgress.getAndIncrement();
|
||||
incrementXmitsInProgress();
|
||||
Socket sock = null;
|
||||
DataOutputStream out = null;
|
||||
DataInputStream in = null;
|
||||
@ -2207,7 +2222,7 @@ public void run() {
|
||||
// check if there are any disk problem
|
||||
checkDiskErrorAsync();
|
||||
} finally {
|
||||
xmitsInProgress.getAndDecrement();
|
||||
decrementXmitsInProgress();
|
||||
IOUtils.closeStream(blockSender);
|
||||
IOUtils.closeStream(out);
|
||||
IOUtils.closeStream(in);
|
||||
|
@ -312,6 +312,7 @@ private long getBlockLen(ExtendedBlock blockGroup, int i) {
|
||||
|
||||
@Override
|
||||
public void run() {
|
||||
datanode.incrementXmitsInProgress();
|
||||
try {
|
||||
// Store the indices of successfully read source
|
||||
// This will be updated after doing real read.
|
||||
@ -397,8 +398,9 @@ public void run() {
|
||||
// Currently we don't check the acks for packets, this is similar as
|
||||
// block replication.
|
||||
} catch (Throwable e) {
|
||||
LOG.warn("Failed to recover striped block: " + blockGroup);
|
||||
LOG.warn("Failed to recover striped block: " + blockGroup, e);
|
||||
} finally {
|
||||
datanode.decrementXmitsInProgress();
|
||||
// close block readers
|
||||
for (StripedReader stripedReader : stripedReaders) {
|
||||
closeBlockReader(stripedReader.blockReader);
|
||||
|
Loading…
Reference in New Issue
Block a user