Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi ,
So I developed my job on my local machine, then I export the job script and move it to the linux server to execute it and without installing Talend on it.
But the problem that I have In the Job an excel file (path:on my local machine) so even If I copy that excel file on the server, the path mentionned in the extracted job script is on my local machine, so the server won't find it while execution. What should I do ?
Thank you
Hi
The file should be located in the same file path on different server if you set a fixed file path, the best practices is to define the file path using context variable, pass a new value to context variable when executing the job if the file path changes. eg:
>./jobName.sh --context=Default --context_param varName=newValue
Regards
Shong