davidradl commented on code in PR #26525:
URL: https://github.com/apache/flink/pull/26525#discussion_r2074244461


##########
flink-clients/src/main/java/org/apache/flink/client/program/rest/RestClusterClient.java:
##########
@@ -330,6 +333,20 @@ public CompletableFuture<JobDetailsInfo> 
getJobDetails(JobID jobId) {
         return sendRequest(detailsHeaders, params);
     }
 
+    /**
+     * Requests the job exception history.
+     *
+     * @param jobID The job id
+     * @return Job exceptions
+     */
+    public CompletableFuture<JobExceptionsInfoWithHistory> 
getJobExceptions(JobID jobID) {

Review Comment:
   I am curious what happens if there are loops / repeated exceptions - will 
this cause an issue with the rest call. Is there a case to have a paging API 
here to avoid large responses? 



-- 
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: issues-unsubscr...@flink.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to