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: 
Pardhu123
Contributor
Contributor

Trigger Talend jobs based on data available in Power PLATFORM

Hi

How do we trigger Talend Jobs when a new data is requested/available in Power platforms with the help of REST endpoints.

When a new data is requested in power platform, Talend should know by its own that new data is available in source system and Talend on its own should be triggered without manual intervention of running talend job.

Labels (4)
2 Replies
Anonymous
Not applicable

Hi

If you want to achieve it through Talend Job, call the REST API every once in a while to see if there are new data available, if yes, trigger another job. The jobs looks like:

tInfiniteLoop--iterate--tRest--main--tJavaRow--runIf--tRunJob(call another Talend Job)

 

tInfiniteLoop: creates an infinite loop.

tJavaRow: get the response and parse it, check if the response contains new data.

 

RunIf: trigger another Talend Job based on the result of checking whether new data is available.

 

Regards

Shong

 

 

 

Pardhu123
Contributor
Contributor
Author

Hi

I have url, username, password, clientid of power platform. How to make use of these values in tRest.

Do we need anything apart from the above mentioned values?

Also how do we modify the above values in URL parameter and https headers of tRest component?

 

Regards

Pardhu