This is an automated email from the ASF dual-hosted git repository.
weichiu pushed a commit to branch branch-3.3
in repository https://gitbox.apache.org/repos/asf/hadoop.git
The following commit(s) were added to refs/heads/branch-3.3 by this push:
new d6c48f8 HDFS-15295. AvailableSpaceBlockPlacementPolicy should use
chooseRandomWithStorageTypeTwoTrial() for better performance. Contributed by
Jinglun.
d6c48f8 is described below
commit d6c48f81009eaf9462cb6ad1ec1cbe609b223cb2
Author: Wei-Chiu Chuang <[email protected]>
AuthorDate: Fri Apr 24 11:53:24 2020 -0700
HDFS-15295. AvailableSpaceBlockPlacementPolicy should use
chooseRandomWithStorageTypeTwoTrial() for better performance. Contributed by
Jinglun.
(cherry picked from commit 453771f170a062265b7687b31b2a3735827958fb)
---
.../server/blockmanagement/AvailableSpaceBlockPlacementPolicy.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/blockmanagement/AvailableSpaceBlockPlacementPolicy.java
b/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/blockmanagement/AvailableSpaceBlockPlacementPolicy.java
index 21c110f..ad6fa0f 100644
---
a/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/blockmanagement/AvailableSpaceBlockPlacementPolicy.java
+++
b/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/blockmanagement/AvailableSpaceBlockPlacementPolicy.java
@@ -87,9 +87,9 @@ public class AvailableSpaceBlockPlacementPolicy extends
Preconditions.checkArgument(clusterMap instanceof DFSNetworkTopology);
DFSNetworkTopology dfsClusterMap = (DFSNetworkTopology)clusterMap;
DatanodeDescriptor a = (DatanodeDescriptor) dfsClusterMap
- .chooseRandomWithStorageType(scope, excludedNode, type);
+ .chooseRandomWithStorageTypeTwoTrial(scope, excludedNode, type);
DatanodeDescriptor b = (DatanodeDescriptor) dfsClusterMap
- .chooseRandomWithStorageType(scope, excludedNode, type);
+ .chooseRandomWithStorageTypeTwoTrial(scope, excludedNode, type);
return select(a, b, false);
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]