HDFS-3240. Drop log level of "heartbeat: ..." in BPServiceActor to DEBUG. Contributed by Todd Lipcon.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1311577 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
53dc8546d4
commit
df3e1a3158
|
@ -350,6 +350,9 @@ Release 2.0.0 - UNRELEASED
|
||||||
HDFS-3211. Add fence(..) and replace NamenodeRegistration with JournalInfo
|
HDFS-3211. Add fence(..) and replace NamenodeRegistration with JournalInfo
|
||||||
and epoch in JournalProtocol. (suresh via szetszwo)
|
and epoch in JournalProtocol. (suresh via szetszwo)
|
||||||
|
|
||||||
|
HDFS-3240. Drop log level of "heartbeat: ..." in BPServiceActor to DEBUG
|
||||||
|
(todd)
|
||||||
|
|
||||||
OPTIMIZATIONS
|
OPTIMIZATIONS
|
||||||
|
|
||||||
HDFS-3024. Improve performance of stringification in addStoredBlock (todd)
|
HDFS-3024. Improve performance of stringification in addStoredBlock (todd)
|
||||||
|
|
|
@ -417,7 +417,9 @@ class BPServiceActor implements Runnable {
|
||||||
|
|
||||||
|
|
||||||
HeartbeatResponse sendHeartBeat() throws IOException {
|
HeartbeatResponse sendHeartBeat() throws IOException {
|
||||||
LOG.info("heartbeat: " + this);
|
if (LOG.isDebugEnabled()) {
|
||||||
|
LOG.debug("Sending heartbeat from service actor: " + this);
|
||||||
|
}
|
||||||
// reports number of failed volumes
|
// reports number of failed volumes
|
||||||
StorageReport[] report = { new StorageReport(bpRegistration.getStorageID(),
|
StorageReport[] report = { new StorageReport(bpRegistration.getStorageID(),
|
||||||
false,
|
false,
|
||||||
|
|
Loading…
Reference in New Issue