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 ?