<?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: tUnite work within the Talend job in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/tUnite-work-within-the-Talend-job/m-p/2327967#M97292</link>
    <description>I think its a bug in Talend...&lt;BR /&gt;Please try this...&lt;BR /&gt;Split the input based on 3 conditions and create 3 diff outputs. Try to join all the 3 outputs to a tUnite component. It wont allow us to join the 2nd and 3rd outputs.</description>
    <pubDate>Mon, 03 Mar 2014 16:19:01 GMT</pubDate>
    <dc:creator>bkar81</dc:creator>
    <dc:date>2014-03-03T16:19:01Z</dc:date>
    <item>
      <title>tUnite work within the Talend job</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tUnite-work-within-the-Talend-job/m-p/2327962#M97287</link>
      <description>Hi, 
&lt;BR /&gt;As the result of another post (see below) I have been told that the tUnite component cannot unite data if it has been split inside the same job. The recommendation to me was to write the split files out to real files on disk and then bring them back inside my Talend job using the tUnite component. This seems a bit long winded. 
&lt;BR /&gt;I'd like the tUnite component to be able to re-combine data from multiple streams even if those streams come from a single stream in the same Talend job. 
&lt;BR /&gt;Below is my original post which led to the above comment and describes what I'm trying to achieve. 
&lt;BR /&gt;************************** start of original post ***************************************** 
&lt;BR /&gt;Hi folks, 
&lt;BR /&gt;I'm fairly new to TOS and am putting together my first 'real' job. I know what I'm trying to achieve but I'm not sure if I'm going about it the right way. 
&lt;BR /&gt;I have an input file which contains multiple record types. Different record type have different numbers of columns. 
&lt;BR /&gt;What I'm trying to do is to write out a single file with the columns of each record type moved such that each column in the output file has a single data type. 
&lt;BR /&gt;For example: 
&lt;BR /&gt;- input file may contain the following 3 records 
&lt;BR /&gt;RT1,20100101,fred 
&lt;BR /&gt;RT2,12345,david 
&lt;BR /&gt;RT3,abc,1234 
&lt;BR /&gt;My output file needs to be in the following format: 
&lt;BR /&gt;- column#1 should be string (is my record type) 
&lt;BR /&gt;- column#2 should be a date 
&lt;BR /&gt;- column#3 should be a string 
&lt;BR /&gt;- column#4 should be numeric. 
&lt;BR /&gt;Using my sample data from above my output file will be as follows: 
&lt;BR /&gt;RT1,20100101,fred 
&lt;BR /&gt;RT2,,david,12345 
&lt;BR /&gt;RT3,,abc,1234 
&lt;BR /&gt;I am using tMap to split the input file based on the record type (RT1, RT2 etc) and for testing have written those to tLogRow so I know I'm doing the correct processing. 
&lt;BR /&gt;How do I merge them back into one file ? I realise that I could write them all out to different files and then iterate through a filelist, but that seems like overkill to me. I'm typically processing less than 10 rows on each execution of the job. 
&lt;BR /&gt;I tried to use tUnite directly from the output of tMap but couldn't get it to accept multiple inputs. Seems strange but I could not get it to work. The first output from tMap dropped onto the tUnite component ok, but subsequent ones would not connect to it. The icon being shown was the "not allowed" one. 
&lt;BR /&gt;I then considered using a tBufferOutput from each row type of tMap, this is ok, but again trying to use tUnite to mwerge them back together I'm hitting the same problem. 
&lt;BR /&gt;What's the best way to achieve this ? All ideas and suggestions gratefully received. 
&lt;BR /&gt;************************** end of original post ***************************************** 
&lt;BR /&gt;How about allowing the tUnite to read from multuple tOutputBuffer/tInputBuffer components within the same Talend job ? 
&lt;BR /&gt;Cheers, 
&lt;BR /&gt;Dave</description>
      <pubDate>Sat, 16 Nov 2024 13:34:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tUnite-work-within-the-Talend-job/m-p/2327962#M97287</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T13:34:37Z</dc:date>
    </item>
    <item>
      <title>Re: tUnite work within the Talend job</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tUnite-work-within-the-Talend-job/m-p/2327963#M97288</link>
      <description>Hello, 
&lt;BR /&gt;I encounter exactly the same problem. It is not possible to use tUnite when the data to combine have been splitted within the same job. 
&lt;BR /&gt;Is there a reason or is it a bug ? 
&lt;BR /&gt;Does it mean that the only way is to first write down all input data in files and then read them back ?</description>
      <pubDate>Tue, 31 Aug 2010 17:46:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tUnite-work-within-the-Talend-job/m-p/2327963#M97288</guid>
      <dc:creator>joreun</dc:creator>
      <dc:date>2010-08-31T17:46:35Z</dc:date>
    </item>
    <item>
      <title>Re: tUnite work within the Talend job</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tUnite-work-within-the-Talend-job/m-p/2327964#M97289</link>
      <description>I am a new TOS user and now in Dave's same boat. I have input data which has multiple contacts per account all in one row (not a great format, I know, but I inherited it.) My job is to split all the contact columns into separate streams with the same schema (easy enough with a tMap) and then re-merge the split data flows in the same way as a UNION operator would in SQL, so I have one nice data flow of contacts. 
&lt;BR /&gt;I do NOT think it's practical or desirable to have to write these streams out to file/database, then make new inputs and pump them all into the tUnite component. 
&lt;BR /&gt;WHY can't the tUnite component accept multiple inputs which happen to have been split off from a single input earlier upstream? This kind of operation would be really great to be able to accomplish simply. Are we all missing something, or has this still not been addressed? 
&lt;BR /&gt;- pat</description>
      <pubDate>Fri, 24 Jun 2011 23:33:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tUnite-work-within-the-Talend-job/m-p/2327964#M97289</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-06-24T23:33:44Z</dc:date>
    </item>
    <item>
      <title>Re: tUnite work within the Talend job</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tUnite-work-within-the-Talend-job/m-p/2327965#M97290</link>
      <description>&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;I am a new TOS user and now in Dave's same boat. I have input data which has multiple contacts per account all in one row (not a great format, I know, but I inherited it.) My job is to split all the contact columns into separate streams with the same schema (easy enough with a tMap) and then re-merge the split data flows in the same way as a UNION operator would in SQL, so I have one nice data flow of contacts.&lt;BR /&gt;I do NOT think it's practical or desirable to have to write these streams out to file/database, then make new inputs and pump them all into the tUnite component.&lt;BR /&gt;WHY can't the tUnite component accept multiple inputs which happen to have been split off from a single input earlier upstream? This kind of operation would be really great to be able to accomplish simply. Are we all missing something, or has this still not been addressed?&lt;BR /&gt;- pat&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt;Can you upload a screenshot of job? so that we could know what you are trying to do? 
&lt;BR /&gt;Best regards 
&lt;BR /&gt;Shong</description>
      <pubDate>Sat, 25 Jun 2011 03:02:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tUnite-work-within-the-Talend-job/m-p/2327965#M97290</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-06-25T03:02:47Z</dc:date>
    </item>
    <item>
      <title>Re: tUnite work within the Talend job</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tUnite-work-within-the-Talend-job/m-p/2327966#M97291</link>
      <description>Inside tMap, click the green plus to add an output table but instead of using the default new output create a join table from your main/first output table.  You can do this as many times as you want and the output from each will be united for you by tMap and sent through the first output flow.&lt;BR /&gt;Or you can use tSplitRow in v4.2.x.</description>
      <pubDate>Tue, 28 Jun 2011 05:57:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tUnite-work-within-the-Talend-job/m-p/2327966#M97291</guid>
      <dc:creator>alevy</dc:creator>
      <dc:date>2011-06-28T05:57:28Z</dc:date>
    </item>
    <item>
      <title>Re: tUnite work within the Talend job</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tUnite-work-within-the-Talend-job/m-p/2327967#M97292</link>
      <description>I think its a bug in Talend...&lt;BR /&gt;Please try this...&lt;BR /&gt;Split the input based on 3 conditions and create 3 diff outputs. Try to join all the 3 outputs to a tUnite component. It wont allow us to join the 2nd and 3rd outputs.</description>
      <pubDate>Mon, 03 Mar 2014 16:19:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tUnite-work-within-the-Talend-job/m-p/2327967#M97292</guid>
      <dc:creator>bkar81</dc:creator>
      <dc:date>2014-03-03T16:19:01Z</dc:date>
    </item>
    <item>
      <title>Re: tUnite work within the Talend job</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tUnite-work-within-the-Talend-job/m-p/2327968#M97293</link>
      <description>Hi bkar81, &lt;BR /&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Split the input based on 3 conditions and create 3 diff outputs. Try to join all the 3 outputs to a tUnite component. It wont allow us to join the 2nd and 3rd outputs.&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;Actually it is not a bug. &lt;BR /&gt;Regarding your job design, there must be a "Circle" in work flow which don't be allowed by talend.&lt;BR /&gt;Please have a look at KB article &lt;A href="https://help.talend.com/pages/viewpage.action?pageId=5671105" target="_blank" rel="nofollow noopener noreferrer"&gt;TalendHelpCenter:Can I create a Job with multiple paths from a single source to the same target?&lt;/A&gt;.&lt;BR /&gt;Best regards&lt;BR /&gt;Sabrina</description>
      <pubDate>Tue, 04 Mar 2014 07:35:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tUnite-work-within-the-Talend-job/m-p/2327968#M97293</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-03-04T07:35:03Z</dc:date>
    </item>
    <item>
      <title>Re: tUnite work within the Talend job</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tUnite-work-within-the-Talend-job/m-p/2327969#M97294</link>
      <description>Yep, after posting, i went through the Forums and understood the feature restrictions and found out that this can be achieved using Hash components.</description>
      <pubDate>Tue, 04 Mar 2014 07:43:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tUnite-work-within-the-Talend-job/m-p/2327969#M97294</guid>
      <dc:creator>bkar81</dc:creator>
      <dc:date>2014-03-04T07:43:21Z</dc:date>
    </item>
    <item>
      <title>Re: tUnite work within the Talend job</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tUnite-work-within-the-Talend-job/m-p/2327970#M97295</link>
      <description>Hi, &lt;BR /&gt;It's great. Feel free post your issue and difficulty in forum.&lt;BR /&gt;Best regards&lt;BR /&gt;Sabrina</description>
      <pubDate>Tue, 04 Mar 2014 07:47:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tUnite-work-within-the-Talend-job/m-p/2327970#M97295</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-03-04T07:47:22Z</dc:date>
    </item>
    <item>
      <title>Re: tUnite work within the Talend job</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tUnite-work-within-the-Talend-job/m-p/2327971#M97296</link>
      <description>Can the tMap and tUnite components have a configurable option to enable or disable this cyclic effect and by default it will be disabled.  Its upto the developers to take care of this or handle the situation...&lt;BR /&gt;Its just my opinion, though donno how far it would be feasible or necessary.</description>
      <pubDate>Tue, 04 Mar 2014 08:22:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tUnite-work-within-the-Talend-job/m-p/2327971#M97296</guid>
      <dc:creator>bkar81</dc:creator>
      <dc:date>2014-03-04T08:22:06Z</dc:date>
    </item>
    <item>
      <title>Re: tUnite work within the Talend job</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tUnite-work-within-the-Talend-job/m-p/2327972#M97297</link>
      <description>I have a doubt as well. 
&lt;BR /&gt;Will tHastInput wait for tHashOutput or do we need to explicitly pass on the OnSubjobOk to one of the tHashInputs?</description>
      <pubDate>Tue, 04 Mar 2014 08:35:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tUnite-work-within-the-Talend-job/m-p/2327972#M97297</guid>
      <dc:creator>bkar81</dc:creator>
      <dc:date>2014-03-04T08:35:13Z</dc:date>
    </item>
    <item>
      <title>Re: tUnite work within the Talend job</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tUnite-work-within-the-Talend-job/m-p/2327973#M97298</link>
      <description>Hi, &lt;BR /&gt;There are related scenarios in component reference &lt;A href="https://help.talend.com/search/all?query=tHashInput&amp;amp;content-lang=en" target="_blank" rel="nofollow noopener noreferrer"&gt;TalendHelpCenter:tHashInput&lt;/A&gt;, hope it will be helpful for you.&lt;BR /&gt;Best regards&lt;BR /&gt;Sabrina</description>
      <pubDate>Tue, 04 Mar 2014 10:36:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tUnite-work-within-the-Talend-job/m-p/2327973#M97298</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-03-04T10:36:20Z</dc:date>
    </item>
    <item>
      <title>Re: tUnite work within the Talend job</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tUnite-work-within-the-Talend-job/m-p/2327974#M97299</link>
      <description>Thanks. But there also the example shows only OnSubJobOK. So I think I need to go only about that.</description>
      <pubDate>Wed, 05 Mar 2014 11:28:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tUnite-work-within-the-Talend-job/m-p/2327974#M97299</guid>
      <dc:creator>bkar81</dc:creator>
      <dc:date>2014-03-05T11:28:30Z</dc:date>
    </item>
  </channel>
</rss>

