Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
i want to schedule the talend job (.sh) file using cron tab by creating dependencies between jobs like after successful execution of one job only other job should execute. Can any one tell me how to do it.
Use this with nohup to start in background and return to your prompt:
nohup sh <yourjob>.sh --context_param acontextvariable1='2018-07-21' --context_param acontextvariable2='2018-07-21' --context_param acontextvariable3='clientstable' > /data/log/<yourlogfilename>.log 2>&1 </dev/null &
Hi Dijke,
Thanks for your reply. i want to create dependency between two jobs after success of one job only other job should execute otherwise should not execute.
can you explain the command you posted.