HDFS-4359. Slow RPC responses from NN can prevent metrics collection on DNs. Contributed by liang xie.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1435299 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Aaron Myers 2013-01-18 18:39:24 +00:00
parent f85b583731
commit d3d350ef0f
2 changed files with 4 additions and 1 deletions

View File

@ -722,6 +722,9 @@ Release 2.0.3-alpha - Unreleased
HDFS-4415. HostnameFilter should handle hostname resolution failures and HDFS-4415. HostnameFilter should handle hostname resolution failures and
continue processing. (Robert Kanter via atm) continue processing. (Robert Kanter via atm)
HDFS-4359. Slow RPC responses from NN can prevent metrics collection on
DNs. (liang xie via atm)
BREAKDOWN OF HDFS-3077 SUBTASKS BREAKDOWN OF HDFS-3077 SUBTASKS
HDFS-3077. Quorum-based protocol for reading and writing edit logs. HDFS-3077. Quorum-based protocol for reading and writing edit logs.

View File

@ -395,7 +395,7 @@ class BPOfferService {
} }
@VisibleForTesting @VisibleForTesting
synchronized List<BPServiceActor> getBPServiceActors() { List<BPServiceActor> getBPServiceActors() {
return Lists.newArrayList(bpServices); return Lists.newArrayList(bpServices);
} }