Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
taka1
Partner - Contributor III
Partner - Contributor III

[resolved] How to modify the classpath setting in a Talend Shell Launcher Script

Hi,  Let me ask a quick question.
Is there any way to modify the classpath setting
in a Talend Shell Launcher Script, which is generated by Export Job in TOS 5.6.2?
I would like to change
cd `dirname $0`
ROOT_PATH=`pwd`
java -Xms256M -Xmx1024M -cp $ROOT_PATH/../lib/dom4j-1.6.1.jar:...
to
cd `dirname $0`
ROOT_PATH=`pwd`
java -Xms256M -Xmx1024M -cp /lib/my.jar:$ROOT_PATH/../lib/dom4j-1.6.1.jar:...
in order to add /lib/my.jar at the beginning of the classpath.
Thank you
Labels (3)
1 Solution

Accepted Solutions
Anonymous
Not applicable

The only way to do this is adding the library per tLoadLibrary to you job. This will take care the lib is inside the classpath and it is also already deployed.

View solution in original post

3 Replies
Anonymous
Not applicable

The only way to do this is adding the library per tLoadLibrary to you job. This will take care the lib is inside the classpath and it is also already deployed.
taka1
Partner - Contributor III
Partner - Contributor III
Author

Hi jlolling, Thank you for the information. I appreciate your help.
roalro
Contributor III
Contributor III

Hi jlolling.

 

How I know what is the classpath wich my talend is using? Is it the same this classpath that the hadoop classpath if hadoop is installed in other machine?

 

Thanks.