<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Talend job for Windows and Linux in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Talend-job-for-Windows-and-Linux/m-p/2304572#M76330</link>
    <description>&lt;BLOCKQUOTE&gt;
 &lt;TABLE border="1"&gt;
  &lt;TBODY&gt;
   &lt;TR&gt;
    &lt;TD&gt;Please let me know your thoughts on what I need to do in order to run the .sh and have it reference the linux context file rather than the windows one. Thanks,&lt;/TD&gt;
   &lt;/TR&gt;
  &lt;/TBODY&gt;
 &lt;/TABLE&gt;
&lt;/BLOCKQUOTE&gt;
&lt;BR /&gt;You can specify the context by modify the job script. For example:
&lt;BR /&gt;
&lt;PRE&gt;java -Xms256M -Xmx1024M -cp classpath.jar ....Your Job sequenceur ..... --context=ContextName&lt;/PRE&gt;</description>
    <pubDate>Mon, 04 Feb 2013 17:58:03 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2013-02-04T17:58:03Z</dc:date>
    <item>
      <title>Talend job for Windows and Linux</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-job-for-Windows-and-Linux/m-p/2304567#M76325</link>
      <description>I have a talend job that runs fine in Windows.  It also needs to be able to run in Linux.  Can anyone tell me the steps that I need to take in order to be able to run the job from both Windows and Linux?  I use a context file to load the context variables into the job.</description>
      <pubDate>Fri, 01 Feb 2013 14:52:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-job-for-Windows-and-Linux/m-p/2304567#M76325</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-02-01T14:52:02Z</dc:date>
    </item>
    <item>
      <title>Re: Talend job for Windows and Linux</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-job-for-Windows-and-Linux/m-p/2304568#M76326</link>
      <description>Hi 
&lt;BR /&gt;Use context variable for the component parameter which may be changed while the job runs on different system, such as the file path. Define different contexts for different system, for example, we have a variable called filepath, it has two contexts with corresponding value. (see my screenshot), please read 
&lt;A href="https://help.talend.com/search/all?query=Talend+Open+Studio+Big+Data+User+Guide&amp;amp;content-lang=en/4.4" target="_blank" rel="nofollow noopener noreferrer"&gt;how to configure context&lt;/A&gt;. 
&lt;BR /&gt;When you are going to execute the job, specify the context first. 
&lt;BR /&gt;Shong 
&lt;BR /&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MDZa.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/148776i7EBB4B47B67470F4/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MDZa.png" alt="0683p000009MDZa.png" /&gt;&lt;/span&gt;</description>
      <pubDate>Fri, 01 Feb 2013 16:44:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-job-for-Windows-and-Linux/m-p/2304568#M76326</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-02-01T16:44:54Z</dc:date>
    </item>
    <item>
      <title>Re: Talend job for Windows and Linux</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-job-for-Windows-and-Linux/m-p/2304569#M76327</link>
      <description>This all makes sense.  One thing, though....The job is going to be exported and executed through the shell script (the .sh created by the export) on the linux machine.  Can you tell me how to have the .sh call the correct context file at runtime?</description>
      <pubDate>Fri, 01 Feb 2013 18:07:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-job-for-Windows-and-Linux/m-p/2304569#M76327</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-02-01T18:07:26Z</dc:date>
    </item>
    <item>
      <title>Re: Talend job for Windows and Linux</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-job-for-Windows-and-Linux/m-p/2304570#M76328</link>
      <description>Please let me know your thoughts on what I need to do in order to run the .sh and have it reference the linux context file rather than the windows one.  Thanks,</description>
      <pubDate>Mon, 04 Feb 2013 13:47:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-job-for-Windows-and-Linux/m-p/2304570#M76328</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-02-04T13:47:32Z</dc:date>
    </item>
    <item>
      <title>Re: Talend job for Windows and Linux</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-job-for-Windows-and-Linux/m-p/2304571#M76329</link>
      <description>hi all 
&lt;BR /&gt;for example you can tell that the context is the dev one, and if you are using a config file you can notice the path to it 
&lt;BR /&gt; 
&lt;PRE&gt;java -Xms256M -Xmx1024M -cp classpath.jar ....Your Job sequenceur ..... --context=Default --context_param ConfigFileName=/opt/talend/config/dev.conf&lt;/PRE&gt; 
&lt;BR /&gt;it's just an example about param you can use ! 
&lt;BR /&gt;regards 
&lt;BR /&gt;laurent</description>
      <pubDate>Mon, 04 Feb 2013 16:38:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-job-for-Windows-and-Linux/m-p/2304571#M76329</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-02-04T16:38:57Z</dc:date>
    </item>
    <item>
      <title>Re: Talend job for Windows and Linux</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-job-for-Windows-and-Linux/m-p/2304572#M76330</link>
      <description>&lt;BLOCKQUOTE&gt;
 &lt;TABLE border="1"&gt;
  &lt;TBODY&gt;
   &lt;TR&gt;
    &lt;TD&gt;Please let me know your thoughts on what I need to do in order to run the .sh and have it reference the linux context file rather than the windows one. Thanks,&lt;/TD&gt;
   &lt;/TR&gt;
  &lt;/TBODY&gt;
 &lt;/TABLE&gt;
&lt;/BLOCKQUOTE&gt;
&lt;BR /&gt;You can specify the context by modify the job script. For example:
&lt;BR /&gt;
&lt;PRE&gt;java -Xms256M -Xmx1024M -cp classpath.jar ....Your Job sequenceur ..... --context=ContextName&lt;/PRE&gt;</description>
      <pubDate>Mon, 04 Feb 2013 17:58:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-job-for-Windows-and-Linux/m-p/2304572#M76330</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-02-04T17:58:03Z</dc:date>
    </item>
  </channel>
</rss>

