Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Ameyy
Contributor
Contributor

Good approach to check for refresh date to start my ETL jobs

I am creating a staging area to land tables from ODS. What would be a good approach to check if ODS data load is complete.

ODS ETL RUN TABLE:

NAME START TIME END TIME.

Essentially I want to poll the end time and once it has the current date I can start executing my jobs.

Thanks

1 Solution

Accepted Solutions
Anonymous
Not applicable

Hi

In the beginning of job, read the end time from ODS and check it with current date, if it matches the condition, trigger another child job using runIf connector, eg:

tDBInput-main--tJavaRow--runIf---ETL jobs (call by tRunJob component)

 

I think you need to schedule the job to run time to time to check for the refresh date.

 

Regards

Shong

View solution in original post

3 Replies
Anonymous
Not applicable

Hi

In the beginning of job, read the end time from ODS and check it with current date, if it matches the condition, trigger another child job using runIf connector, eg:

tDBInput-main--tJavaRow--runIf---ETL jobs (call by tRunJob component)

 

I think you need to schedule the job to run time to time to check for the refresh date.

 

Regards

Shong

Ameyy
Contributor
Contributor
Author

Shong,

 

Can we do this as part of PreJob?

Anonymous
Not applicable

Yes, you can do this as part of PreJob.