-
Notifications
You must be signed in to change notification settings - Fork 425
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
Conversation
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
tez-runtime-internals/src/main/java/org/apache/tez/runtime/task/TaskReporter.java
Outdated
Show resolved
Hide resolved
tez-runtime-internals/src/main/java/org/apache/tez/runtime/task/TaskReporter.java
Outdated
Show resolved
Hide resolved
💔 -1 overall
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 |
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
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
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. +1
No description provided.