HDFS-11003. Expose XmitsInProgress through DataNodeMXBean. Contributed By Brahma Reddy Battula
(cherry picked from commit 5f4ae85bd8
)
This commit is contained in:
parent
34469cd98d
commit
1c473898aa
|
@ -2066,8 +2066,9 @@ public class DataNode extends ReconfigurableBase
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
int getXmitsInProgress() {
|
||||
|
||||
@Override //DataNodeMXBean
|
||||
public int getXmitsInProgress() {
|
||||
return xmitsInProgress.get();
|
||||
}
|
||||
|
||||
|
|
|
@ -93,6 +93,12 @@ public interface DataNodeMXBean {
|
|||
*/
|
||||
public int getXceiverCount();
|
||||
|
||||
/**
|
||||
* Returns an estimate of the number of data replication/reconstruction tasks
|
||||
* running currently.
|
||||
*/
|
||||
public int getXmitsInProgress();
|
||||
|
||||
/**
|
||||
* Gets the network error counts on a per-Datanode basis.
|
||||
*/
|
||||
|
|
|
@ -80,7 +80,11 @@ public class TestDataNodeMXBean {
|
|||
int xceiverCount = (Integer)mbs.getAttribute(mxbeanName,
|
||||
"XceiverCount");
|
||||
Assert.assertEquals(datanode.getXceiverCount(), xceiverCount);
|
||||
|
||||
// Ensure mxbean's XmitsInProgress is same as the DataNode's
|
||||
// live value.
|
||||
int xmitsInProgress =
|
||||
(Integer) mbs.getAttribute(mxbeanName, "XmitsInProgress");
|
||||
Assert.assertEquals(datanode.getXmitsInProgress(), xmitsInProgress);
|
||||
String bpActorInfo = (String)mbs.getAttribute(mxbeanName,
|
||||
"BPServiceActorInfo");
|
||||
Assert.assertEquals(datanode.getBPServiceActorInfo(), bpActorInfo);
|
||||
|
|
Loading…
Reference in New Issue