I am currently trying to run a Talend job from the command line. Since my production environment parameters are different from what I have on my local workstation, I have to provide context parameters when launching the job on the target server:
kaffein@coffeeshop:~$ ./job_run.sh --context_param port=1234 --context_param server=myserver
When I exported the job though, Talend Open Studio (for data integration) generated Default.properties files for all my subjob folders. These files contain my local default context parameters.
Launching my job with the production parameters (like shown above) then fails because it seems that the "local" parameters cannot be overriden by the command-line parameters (--context_param arguments) provided.
Can someone help me on this issue please ?
It may be easier to use
Implicit context load
underJob Settings
in theProject Settings
.Here you can define a file (such as a CSV) of environment parameters such as connection settings and as long as they share the same file path you can then just put the different context variables in the file on the different environments and have Talend load them as part of the job.
Now when you run the job it should use the environment specific context variables as they are loaded from the file.