NamsB7 commented on code in PR #4121:
URL: https://github.com/apache/gobblin/pull/4121#discussion_r2221900763


##########
gobblin-service/src/main/java/org/apache/gobblin/service/monitoring/KafkaJobStatusMonitor.java:
##########
@@ -234,8 +248,31 @@ protected void 
processMessage(DecodeableKafkaRecord<byte[],byte[]> message) {
           boolean retryRequired = modifyStateIfRetryRequired(jobStatus);
 
           if (updatedJobStatus.getRight() == NewState.FINISHED && 
!retryRequired) {
-            // do not send event if retry is required, because it can alert 
users to re-submit a job that is already set to be retried by GaaS
-            this.eventProducer.emitObservabilityEvent(jobStatus);
+            if (isErrorClassificationEnabled) {
+              long startTime = System.currentTimeMillis();
+              if 
(jobStatus.getProp(JobStatusRetriever.EVENT_NAME_FIELD).equals(ExecutionStatus.FAILED.name()))
 {
+                List<Issue> issues = 
jobIssueEventHandler.getErrorListForClassification(
+                    
TroubleshooterUtils.getContextIdForJob(jobStatus.getProperties()));
+                    long process_duration = System.currentTimeMillis() - 
startTime;
+                    log.info("Processing issues for job: {}, duration: {} ms", 
jobStatus, flowName, flowExecutionId, jobName, process_duration);

Review Comment:
   Resolved. 



-- 
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.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to