Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I want to schedule a talend job at TAC by running the same job every time as soon as the same job is completed
Pls kindly help me out
As explained in documentation "If you want to execute a task on a file-based event, such as the presence, creation, modification of the file, you can use the File trigger. For more information on how to use File triggers, see How to add a File trigger."
I thiink that's the answer.
is it not possible to do other way without creating file ?
You may also create a new task using the MetaServlet API.
Here again you have to refere the documentation.
I've used it in the past to restart automatically web services 1 time per day.
It should be an alternative.
Does this help?
If so please mark this case as solved (Kudos also accepted).
is this issue resolved?
I agree to the touch file method with file trigger, as its easy to implement. You can create a touch file on the job server where you are running the job.
else I got a wild idea.. you can create a master job having tInfiniteLoop followed by your subjob(the one which you want to run back to back)
tInfiniteLoop>>tRunJob
Then run this master job once from TAC.. and it will go on.
But not sure how you want your job to behave in case of error.