Skip to content

[TEZ-4019] Modify Tez shuffle handler to use AuxiliaryLocalPathHandler instead of LocalDirAllocator - #355

Merged
abstractdog merged 1 commit into
apache:masterfrom
jteagles:TEZ-4019
May 14, 2024
Merged

[TEZ-4019] Modify Tez shuffle handler to use AuxiliaryLocalPathHandler instead of LocalDirAllocator#355
abstractdog merged 1 commit into
apache:masterfrom
jteagles:TEZ-4019

Conversation

@jteagles

@jteaglesjteagles commented May 9, 2024

Copy link
Copy Markdown
Contributor

No description provided.

@tez-yetus

This comment was marked as outdated.

@jteaglesjteagles changed the title [TEZ-4019] Modify Tez shuffle handler to use AuxiliaryLocalPathHandle…[TEZ-4019] Modify Tez shuffle handler to use AuxiliaryLocalPathHandler instead of LocalDirAllocatorMay 10, 2024
@tez-yetus

This comment was marked as outdated.

@jteagles

Copy link
Copy Markdown
ContributorAuthor

@abstractdog , do you know who might be good to review this ShuffleHandler change? Handles cases where drives go bad or are added back after being fixed

@tez-yetus

Copy link
Copy Markdown

🎊 +1 overall

VoteSubsystemRuntimeComment
+0 🆗reexec30m 35sDocker mode activated.
_ Prechecks _
+1 💚dupname0m 0sNo case conflicting files found.
+1 💚@author0m 0sThe patch does not contain any @author tags.
+1 💚test4tests0m 0sThe patch appears to include 1 new or modified test files.
_ master Compile Tests _
+1 💚mvninstall19m 0smaster passed
+1 💚compile0m 29smaster passed with JDK Ubuntu-11.0.22+7-post-Ubuntu-0ubuntu222.04.1
+1 💚compile0m 27smaster passed with JDK Private Build-1.8.0_402-8u402-ga-2ubuntu1~22.04-b06
+1 💚checkstyle1m 30smaster passed
+1 💚javadoc0m 35smaster passed with JDK Ubuntu-11.0.22+7-post-Ubuntu-0ubuntu222.04.1
+1 💚javadoc0m 21smaster passed with JDK Private Build-1.8.0_402-8u402-ga-2ubuntu1~22.04-b06
+0 🆗spotbugs1m 16sUsed deprecated FindBugs config; considering switching to SpotBugs.
+1 💚findbugs1m 14smaster passed
_ Patch Compile Tests _
+1 💚mvninstall0m 29sthe patch passed
+1 💚compile0m 18sthe patch passed with JDK Ubuntu-11.0.22+7-post-Ubuntu-0ubuntu222.04.1
+1 💚javac0m 18sthe patch passed
+1 💚compile0m 16sthe patch passed with JDK Private Build-1.8.0_402-8u402-ga-2ubuntu1~22.04-b06
+1 💚javac0m 16sthe patch passed
+1 💚checkstyle0m 9stez-plugins/tez-aux-services: The patch generated 0 new + 65 unchanged - 1 fixed = 65 total (was 66)
+1 💚whitespace0m 0sThe patch has no whitespace issues.
+1 💚javadoc0m 9sthe patch passed with JDK Ubuntu-11.0.22+7-post-Ubuntu-0ubuntu222.04.1
+1 💚javadoc0m 9sthe patch passed with JDK Private Build-1.8.0_402-8u402-ga-2ubuntu1~22.04-b06
+1 💚findbugs0m 36sthe patch passed
_ Other Tests _
+1 💚unit2m 55stez-aux-services in the patch passed.
+1 💚asflicense0m 16sThe patch does not generate ASF License warnings.
60m 29s
SubsystemReport/Notes
DockerClientAPI=1.44 ServerAPI=1.44 base: https://ci-hadoop.apache.org/job/tez-multibranch/job/PR-355/3/artifact/out/Dockerfile
GITHUB PR#355
JIRA IssueTEZ-4019
Optional Testsdupname asflicense javac javadoc unit spotbugs findbugs checkstyle compile
unameLinux 49defce6224b 5.15.0-94-generic #104-Ubuntu SMP Tue Jan 9 15:25:40 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux
Build toolmaven
Personalitypersonality/tez.sh
git revisionmaster / 9a6757b
Default JavaPrivate Build-1.8.0_402-8u402-ga-2ubuntu1~22.04-b06
Multi-JDK versions/usr/lib/jvm/java-11-openjdk-amd64:Ubuntu-11.0.22+7-post-Ubuntu-0ubuntu222.04.1 /usr/lib/jvm/java-8-openjdk-amd64:Private Build-1.8.0_402-8u402-ga-2ubuntu1~22.04-b06
Test Resultshttps://ci-hadoop.apache.org/job/tez-multibranch/job/PR-355/3/testReport/
Max. process+thread count1498 (vs. ulimit of 5500)
modulesC: tez-plugins/tez-aux-services U: tez-plugins/tez-aux-services
Console outputhttps://ci-hadoop.apache.org/job/tez-multibranch/job/PR-355/3/console
versionsgit=2.34.1 maven=3.6.3 findbugs=3.0.1
Powered byApache Yetus 0.12.0 https://yetus.apache.org

This message was automatically generated.

@jteagles

Copy link
Copy Markdown
ContributorAuthor

Checkstyle issues have been addressed.

@jteagles
jteagles requested a review from abstractdogMay 13, 2024 15:45
@abstractdog

Copy link
Copy Markdown
Contributor

@abstractdog , do you know who might be good to review this ShuffleHandler change? Handles cases where drives go bad or are added back after being fixed

thanks for this patch @jteagles!
basically I'm fine to switch from LocalDirAllocator to AuxiliaryLocalPathHandler, by looking at YARN-7244 I feel that AuxiliaryLocalPathHandler is kind of the successor of the LocalDirAllocator

what's the default used in hadoop nowadays?

@jteagles

Copy link
Copy Markdown
ContributorAuthor

@abstractdog , do you know who might be good to review this ShuffleHandler change? Handles cases where drives go bad or are added back after being fixed

thanks for this patch @jteagles! basically I'm fine to switch from LocalDirAllocator to AuxiliaryLocalPathHandler, by looking at YARN-7244 I feel that AuxiliaryLocalPathHandler is kind of the successor of the LocalDirAllocator

what's the default used in hadoop nowadays?

AuxiliaryLocalPathHandler is the default for some time in Hadoop and it gives MapReduce shuffle handler the same insight into the disk that the node manager has, meaning the shuffle handler will have the same view of disks as the jobs launched

@abstractdog
abstractdog removed their request for review May 14, 2024 07:35

@abstractdogabstractdog left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@abstractdog
abstractdog merged commit a1fcddb into apache:masterMay 14, 2024
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants

@jteagles@tez-yetus@abstractdog