Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
RV1652730475
Contributor
Contributor

how to check the progress of Child Job

Hello,

I've a parent job that is calling multiple jobs. When I'm running the job I can see the progress of the parent job but not able to see how the child job is progressing. I've to wait until the parent job completes.

Is there any way to check for the progress.

Labels (3)
1 Solution

Accepted Solutions
Anonymous
Not applicable

Hi

You can use tStatCatcher component in child job to capture the execution statistics and log them to somewhere, or print logs messages on tJava in the end of job, eg:

System.out.println("the child job finishes successfully...");

 

Regards

Shong

View solution in original post

1 Reply
Anonymous
Not applicable

Hi

You can use tStatCatcher component in child job to capture the execution statistics and log them to somewhere, or print logs messages on tJava in the end of job, eg:

System.out.println("the child job finishes successfully...");

 

Regards

Shong