Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
RMotta2408
Creator
Creator

Talend Studio: Job hierarchy - How do I know if a Job is a Master Job?

Hello everyone,

How do I know if a Job is a "Master" Job, meaning it is not being called from any other Job?
I'm using Talend Studio and I know there is an option accessible by right-clicking on a Job to "Open Job Hierarchy". It shows the flow starting from that Job onwards. But it doesn't show if that particular Job is being called by another Job.
So, my question is: how do I know if a Job I'm looking at is being called by another Job, thus being its child.

 

Thank you so much.

Rui
 

Labels (2)
3 Replies
jeoste
Creator
Creator

Hello,
I don't think that exists, you have to open each job and make your own hierarchy by determining the master job.

RMotta2408
Creator
Creator
Author

Hello,

Thank you for replying.
That is actually what I've been doing but I thought there was a better way of establishing a project hierarchy.

 

billimmer
Creator III
Creator III

use the built in variable "isChildJob".   

Try it in a tjava component:  

System.out.println(isChildJob);