-
Notifications
You must be signed in to change notification settings - Fork 8.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HDFS-16517 Distance metric is wrong for non-DN machines in 2.10. #4091
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
💔 -1 overall
This message was automatically generated. |
💔 -1 overall
This message was automatically generated. |
omalley
force-pushed
the
hdfs-16517-2.10
branch
from
March 22, 2022 21:25
1d7220b
to
1326ef2
Compare
💔 -1 overall
This message was automatically generated. |
xinglin
suggested changes
Mar 23, 2022
hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/net/NetworkTopology.java
Outdated
Show resolved
Hide resolved
💔 -1 overall
This message was automatically generated. |
goiri
approved these changes
Mar 23, 2022
When I created the PR, I hadn't found the upstream jira, which is https://issues.apache.org/jira/browse/HADOOP-16161 . |
…port of HADOOP-16161. Fixes apache#4091 Signed-off-by: Owen O'Malley <[email protected]>
omalley
force-pushed
the
hdfs-16517-2.10
branch
from
March 23, 2022 21:51
c4db7fe
to
f1c3018
Compare
💔 -1 overall
This message was automatically generated. |
omalley
added a commit
that referenced
this pull request
Mar 28, 2022
…d in HADOOP-16161, but this test case adds value to ensure the two getWeight methods stay in sync. Fixes #4091 Signed-off-by: Owen O'Malley <[email protected]>
omalley
added a commit
that referenced
this pull request
Mar 30, 2022
…d in HADOOP-16161, but this test case adds value to ensure the two getWeight methods stay in sync. Fixes #4091 Signed-off-by: Owen O'Malley <[email protected]>
HarshitGupta11
pushed a commit
to HarshitGupta11/hadoop
that referenced
this pull request
Nov 28, 2022
…d in HADOOP-16161, but this test case adds value to ensure the two getWeight methods stay in sync. Fixes apache#4091 Signed-off-by: Owen O'Malley <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description of PR
The distance metric used for machines in 2.10 that aren't in the NetworkTopology, because they aren't running DataNodes, is wrong. It means that off-rack and on-rack, but off-node, are both given a weight of 2. In normal Hadoop clusters, this isn't a big problem because they don't have clients that are on-rack but without DataNodes. For clusters that are striped (federated HDFS going across racks) or separate compute and storage that share racks are both really bad with this bug.
How was this patch tested?
Unit test added.