Skip to content
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

TEZ-4339: Expose real-time memory consumption of AM and task containers via DagClient #157

Merged
merged 2 commits into from
Nov 2, 2021

Conversation

abstractdog
Copy link
Contributor

No description provided.

@tez-yetus

This comment has been minimized.

@tez-yetus

This comment has been minimized.

@tez-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Comment
+0 🆗 reexec 16m 49s Docker mode activated.
_ Prechecks _
+1 💚 dupname 0m 0s No case conflicting files found.
+0 🆗 prototool 0m 0s prototool was not available.
+1 💚 @author 0m 0s The patch does not contain any @author tags.
+1 💚 test4tests 0m 0s The patch appears to include 2 new or modified test files.
_ master Compile Tests _
+0 🆗 mvndep 4m 18s Maven dependency ordering for branch
+1 💚 mvninstall 8m 59s master passed
+1 💚 compile 2m 20s master passed with JDK Ubuntu-11.0.11+9-Ubuntu-0ubuntu2.20.04
+1 💚 compile 2m 10s master passed with JDK Private Build-1.8.0_292-8u292-b10-0ubuntu1~20.04-b10
+1 💚 checkstyle 2m 10s master passed
+1 💚 javadoc 2m 20s master passed with JDK Ubuntu-11.0.11+9-Ubuntu-0ubuntu2.20.04
+1 💚 javadoc 2m 4s master passed with JDK Private Build-1.8.0_292-8u292-b10-0ubuntu1~20.04-b10
+0 🆗 spotbugs 0m 40s Used deprecated FindBugs config; considering switching to SpotBugs.
+1 💚 findbugs 3m 57s master passed
_ Patch Compile Tests _
+0 🆗 mvndep 0m 9s Maven dependency ordering for patch
+1 💚 mvninstall 1m 23s the patch passed
+1 💚 compile 1m 28s the patch passed with JDK Ubuntu-11.0.11+9-Ubuntu-0ubuntu2.20.04
+1 💚 cc 1m 28s the patch passed
+1 💚 javac 1m 28s the patch passed
+1 💚 compile 1m 17s the patch passed with JDK Private Build-1.8.0_292-8u292-b10-0ubuntu1~20.04-b10
+1 💚 cc 1m 17s the patch passed
+1 💚 javac 1m 17s the patch passed
+1 💚 checkstyle 0m 14s tez-api: The patch generated 0 new + 78 unchanged - 5 fixed = 78 total (was 83)
-0 ⚠️ checkstyle 0m 9s tez-runtime-internals: The patch generated 1 new + 4 unchanged - 0 fixed = 5 total (was 4)
-0 ⚠️ checkstyle 0m 23s tez-dag: The patch generated 1 new + 183 unchanged - 0 fixed = 184 total (was 183)
+1 💚 checkstyle 0m 12s The patch passed checkstyle in tez-tests
+1 💚 whitespace 0m 0s The patch has no whitespace issues.
+1 💚 javadoc 1m 14s the patch passed with JDK Ubuntu-11.0.11+9-Ubuntu-0ubuntu2.20.04
+1 💚 javadoc 1m 8s the patch passed with JDK Private Build-1.8.0_292-8u292-b10-0ubuntu1~20.04-b10
+1 💚 findbugs 3m 24s the patch passed
_ Other Tests _
+1 💚 unit 2m 1s tez-api in the patch passed.
+1 💚 unit 0m 33s tez-runtime-internals in the patch passed.
+1 💚 unit 4m 18s tez-dag in the patch passed.
-1 ❌ unit 42m 53s tez-tests in the patch failed.
+1 💚 asflicense 0m 43s The patch does not generate ASF License warnings.
108m 26s
Reason Tests
Failed junit tests tez.test.TestRecovery
Subsystem Report/Notes
Docker ClientAPI=1.41 ServerAPI=1.41 base: https://ci-hadoop.apache.org/job/tez-multibranch/job/PR-157/3/artifact/out/Dockerfile
GITHUB PR #157
JIRA Issue TEZ-4339
Optional Tests dupname asflicense javac javadoc unit spotbugs findbugs checkstyle compile cc prototool
uname Linux b8562b6e5388 4.15.0-112-generic #113-Ubuntu SMP Thu Jul 9 23:41:39 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality personality/tez.sh
git revision master / 3326978
Default Java Private Build-1.8.0_292-8u292-b10-0ubuntu1~20.04-b10
Multi-JDK versions /usr/lib/jvm/java-11-openjdk-amd64:Ubuntu-11.0.11+9-Ubuntu-0ubuntu2.20.04 /usr/lib/jvm/java-8-openjdk-amd64:Private Build-1.8.0_292-8u292-b10-0ubuntu1~20.04-b10
checkstyle https://ci-hadoop.apache.org/job/tez-multibranch/job/PR-157/3/artifact/out/diff-checkstyle-tez-runtime-internals.txt
checkstyle https://ci-hadoop.apache.org/job/tez-multibranch/job/PR-157/3/artifact/out/diff-checkstyle-tez-dag.txt
unit https://ci-hadoop.apache.org/job/tez-multibranch/job/PR-157/3/artifact/out/patch-unit-tez-tests.txt
Test Results https://ci-hadoop.apache.org/job/tez-multibranch/job/PR-157/3/testReport/
Max. process+thread count 1381 (vs. ulimit of 5500)
modules C: tez-api tez-runtime-internals tez-dag tez-tests U: .
Console output https://ci-hadoop.apache.org/job/tez-multibranch/job/PR-157/3/console
versions git=2.25.1 maven=3.6.3 findbugs=3.0.1
Powered by Apache Yetus 0.12.0 https://yetus.apache.org

This message was automatically generated.

@@ -61,6 +61,13 @@ public void addVertexProgress(String name, ProgressBuilder progress) {
getBuilder().addVertexProgress(builder.build());
}

//TODO: let this be a map of values in protobuf 3.x
Copy link
Contributor

Choose a reason for hiding this comment

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

What is this todo for? or am i missing something here?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I wanted to put these memory related stuff into a map, which can be dinamically extended later with other metrics if needed, but unfortunately the protoc compiler which is used in protobuf 2.5 doesn't support maps

Copy link
Contributor

@rbalamohan rbalamohan left a comment

Choose a reason for hiding this comment

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

LGTM. +1

@abstractdog abstractdog merged commit f39a51e into apache:master Nov 2, 2021
Sign up for free to 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