Reputation: 1883
I created a Talend Open Studio Job and would like to run it with arguments from inside a java application. How would I go about doing that?
Upvotes: 0
Views: 7373
Reputation: 181
Talend Studio allows you to export a job and to call it from external Java applications.
This link explains how to call a Talend job from a Java program using the Eclipse IDE:
https://help.talend.com/display/KB/Calling+a+Talend+Job+from+an+external+Java+application
Calling a Talend Job from an external Java application
Upvotes: 1
Reputation: 2389
You have to export the job as a standalone job
. You can follow the tutorial provided by TalendForge http://www.talendforge.org/tutorials/tutorial.php?idTuto=17#s10
After the export you will obtain a jar
file per job.
Upvotes: 3