rmatharu commented on a change in pull request #1083: SAMZA-2251: Minor
diagnostics manager change to emit additional job details
URL: https://github.com/apache/samza/pull/1083#discussion_r296416176
##########
File path:
samza-core/src/main/scala/org/apache/samza/diagnostics/DiagnosticsManager.java
##########
@@ -141,36 +171,83 @@ public void addExceptionEvent(DiagnosticsExceptionEvent
diagnosticsExceptionEven
this.exceptions.add(diagnosticsExceptionEvent);
}
+ public void addProcessorStopEvent(String processorId, String resourceId,
String host, int exitStatus) {
+ this.containerStops.add(new ProcessorStopEvent(processorId, resourceId,
host, exitStatus));
+ LOG.info("Added stop event for Container Id: {}, resource Id: {}, host:
{}, exitStatus: {}", processorId,
+ resourceId, host, exitStatus);
+ }
+
private class DiagnosticsStreamPublisher implements Runnable {
@Override
public void run() {
+
+ Map<String, Map<String, Object>> metricsMessage = new HashMap<>();
+
+ // Publish job-related params (if not already published)
Review comment:
in case of the reader being diagnostics, it is handled.
in case of autosizing being the reader, it will be handled.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services