<?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: Guess schema for the Output component in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Guess-schema-for-the-Output-component/m-p/2248381#M149271</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.qlik.com/s/profile/0053p000007LP9EAAW"&gt;@Venkat_C&lt;/A&gt;&amp;nbsp;,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Did you install the component - not just the jar but the .car? If you are in global mode for your maven repository you must ensure this dependency is in your local maven repository. If not, it must be located in the studio repository (in configuration folder). Finally, ensure that in the project they are in scope compile (or worse case "runtime") otherwise they are ignored.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Romain&lt;/P&gt;</description>
    <pubDate>Mon, 13 May 2019 09:33:12 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-05-13T09:33:12Z</dc:date>
    <item>
      <title>Guess schema for the Output component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Guess-schema-for-the-Output-component/m-p/2248374#M149264</link>
      <description>&lt;P&gt;Hello folks,&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I have created Input component using TaCoKit, where I can discover the schema of my DTOs (based on which endpoint user selected) using the @DiscoverSchema annotated method:&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;@DiscoverSchema(family = "Family", value = "guessInputSchema")
public Schema guessInputSchema(
final InputDataSet inputDataSet, // contains endpoint info
final RecordBuilderFactory recordBuilderFactory) { // for schema builder

return _service.getEndpointTalendSchema(
inputDataSet, recordBuilderFactory);
}&lt;/PRE&gt; 
&lt;P&gt;&lt;BR /&gt;Now I'm working on Output component where user can choose an endpoint based on action he wants (e.g. DELETE, UPDATE, CREATE), and my idea was that using another method like the one I showed above, I can generate new Schema for my Output component. For example, if user selects DELETE method&amp;nbsp;and appropriate endpoint then my output component schema would only have 1 entry, e.g. name: ID, type:long (the only info I need for my DELETE endpoints). In that case, a user would map its record ID to my output component's ID, and all other fields would be ignored.&lt;/P&gt; 
&lt;P&gt;Unfortunately, a new method annotated with&amp;nbsp;@DiscoverSchema never gets triggered when I click "guess Schema" for the Output component (in TOS 7.1.1). Is this the intended behavior, am I breaking some patterns by trying to set a schema for Output component, and if not, how can I programmatically set the schema for the Output component?&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Thank you,&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Matija&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jan 2026 14:45:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Guess-schema-for-the-Output-component/m-p/2248374#M149264</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2026-01-02T14:45:42Z</dc:date>
    </item>
    <item>
      <title>Re: Guess schema for the Output component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Guess-schema-for-the-Output-component/m-p/2248375#M149265</link>
      <description>Hi 
&lt;A href="https://community.qlik.com/s/profile/0053p000007LPPSAA4"&gt;@matijapetanjek&lt;/A&gt; 
&lt;BR /&gt; 
&lt;BR /&gt;Yes, output schema comes from previous component output link by propagation. 
&lt;BR /&gt; 
&lt;BR /&gt;If you want to provide a mutation, you can provide a mapper component (processor with one input and one output). You can also just ignore other fields in your implementation. 
&lt;BR /&gt; 
&lt;BR /&gt;Hope it helps. 
&lt;BR /&gt;</description>
      <pubDate>Mon, 06 May 2019 08:35:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Guess-schema-for-the-Output-component/m-p/2248375#M149265</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-05-06T08:35:35Z</dc:date>
    </item>
    <item>
      <title>Re: Guess schema for the Output component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Guess-schema-for-the-Output-component/m-p/2248376#M149266</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.qlik.com/s/profile/0053p000007LMHOAA4"&gt;@rmannibucau&lt;/A&gt;&amp;nbsp;,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;We want to achieve similar functionality that the &lt;EM&gt;tSalesforceOutput&lt;/EM&gt; component has.&lt;/P&gt; 
&lt;P&gt;1) User select a Resource / Module&lt;/P&gt; 
&lt;P&gt;2) The component dynamically creates a schema for it based on the&amp;nbsp;@&lt;EM&gt;GuessSchema&lt;/EM&gt; annotated method.&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;	@ElementListener
	public void onNext(
		@Input final Record inputRecord,
		@Output final OutputEmitter&amp;lt;Record&amp;gt; mainFlowEmitter,
		@Output("REJECT") final OutputEmitter&amp;lt;Record&amp;gt; rejectFlowOutputEmitter) {
		//...
	}&lt;/PRE&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;The use-case is the following:&lt;/P&gt; 
&lt;P&gt;1) We cannot really depend on the schema propagation, as the previous component's schema may not provide enough information for the output component to be able to construct the request for the endpoint.&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;2) Output component gets the Record from&amp;nbsp;&lt;EM&gt;inputRecord&lt;/EM&gt;. Of course it has the schema, but we should make sure that the record has a schema that the output component can understand to be able to construct the payload for the request.&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;3) That's why we want first to Guess the Schema for the selected resource / operation in the Output component that would be a hint for the User what are the expected field names to be able to construct the payload (a JsonObject in the backend).&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt; 
&lt;P&gt;Our question is, is it possible to make these buttons work in the Output component? If so, what's the proper way to do it?&lt;BR /&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="rejGuess.jpg" style="width: 932px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M4Rp.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/150884i50322DC697BAB916/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M4Rp.jpg" alt="0683p000009M4Rp.jpg" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Thank you,&lt;/P&gt; 
&lt;P&gt;Zoltán&lt;/P&gt;</description>
      <pubDate>Mon, 06 May 2019 15:08:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Guess-schema-for-the-Output-component/m-p/2248376#M149266</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-05-06T15:08:03Z</dc:date>
    </item>
    <item>
      <title>Re: Guess schema for the Output component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Guess-schema-for-the-Output-component/m-p/2248377#M149267</link>
      <description>Ok, so first this is *not* an output for talend component kit since you emit records so it is a mapper or transformation component from its topology.
&lt;BR /&gt;
&lt;BR /&gt;Currently these components only support dynamic evaluation - guess schema - to enforce schema accuracy since they are structurally generally not having their own schema.
&lt;BR /&gt;</description>
      <pubDate>Mon, 06 May 2019 19:57:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Guess-schema-for-the-Output-component/m-p/2248377#M149267</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-05-06T19:57:21Z</dc:date>
    </item>
    <item>
      <title>Re: Guess schema for the Output component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Guess-schema-for-the-Output-component/m-p/2248378#M149268</link>
      <description>&lt;P&gt;Hi &lt;A href="https://community.qlik.com/s/profile/0053p000007LMHOAA4"&gt;@rmannibucau&lt;/A&gt;, thank you for answering.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Can you please clarify one thing...How can I work with Record in my&amp;nbsp;&lt;STRONG&gt;Output&lt;/STRONG&gt;&amp;nbsp;component if I don't know its schema in front?&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;If I can only propagate schema from a previous input component then, based on input component, each time I will get a Record with different schema.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;For example, I want to have output component that will delete a record entry:&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;@ElementListener
public void onNext(@Input final Record inputRecord) {
long id = inputRecord.getLong("I_NEED_TO_KNOW_THE_NAME_OF_THIS_FIELD");&lt;BR /&gt;_myRESTservice.delete(id);
}&amp;nbsp;&lt;/PRE&gt; 
&lt;P&gt;&amp;nbsp;I'm just trying to understand the concept before getting into implementation details...If every user can pass a record that has a different "id" column name, how can I read that long value if I don't know by which name to fetch that long value?&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Tue, 07 May 2019 07:50:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Guess-schema-for-the-Output-component/m-p/2248378#M149268</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-05-07T07:50:43Z</dc:date>
    </item>
    <item>
      <title>Re: Guess schema for the Output component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Guess-schema-for-the-Output-component/m-p/2248379#M149269</link>
      <description>Record provides a getSchema where you have entries and you properties/configuration can contain a built in suggestable to select the column to use for your logic.</description>
      <pubDate>Tue, 07 May 2019 08:23:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Guess-schema-for-the-Output-component/m-p/2248379#M149269</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-05-07T08:23:38Z</dc:date>
    </item>
    <item>
      <title>Re: Guess schema for the Output component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Guess-schema-for-the-Output-component/m-p/2248380#M149270</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;A href="https://community.qlik.com/s/profile/0053p000007LPPSAA4"&gt;@matijapetanjek&lt;/A&gt;&amp;nbsp;,&lt;/P&gt; 
&lt;P&gt;Yes, Me also facing same issue and also I'm not able to share my input some one for testing.When I'm sharing maven project folder for them,they getting dependency files are missing errors.Because I have added some jar files into project folder,all jars are showing&amp;nbsp; them&amp;nbsp; missing like.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Failed to execute goal on project vtigercrm-components: Could not resolve dependencies for project org.talend.components:vtigercrm-components:jar:0.0.1-SNAPSHOT: The following artifacts could not be resolved: com.vtiger:vtwslip:jar:1.5, com.apache-mime4j:apache-mime4j:jar:0.6: Could not find artifact com.vtiger:vtwslip:jar:1.5 in central (&lt;A href="https://repo.maven.apache.org/maven2" target="_blank" rel="nofollow noopener noreferrer"&gt;https://repo.maven.apache.org/maven2&lt;/A&gt;) -&amp;gt; [Help 1]&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Thanks,&lt;/P&gt; 
&lt;P&gt;Venkat&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009LvSm"&gt;Error.png&lt;/A&gt;</description>
      <pubDate>Mon, 13 May 2019 08:10:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Guess-schema-for-the-Output-component/m-p/2248380#M149270</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-05-13T08:10:23Z</dc:date>
    </item>
    <item>
      <title>Re: Guess schema for the Output component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Guess-schema-for-the-Output-component/m-p/2248381#M149271</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.qlik.com/s/profile/0053p000007LP9EAAW"&gt;@Venkat_C&lt;/A&gt;&amp;nbsp;,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Did you install the component - not just the jar but the .car? If you are in global mode for your maven repository you must ensure this dependency is in your local maven repository. If not, it must be located in the studio repository (in configuration folder). Finally, ensure that in the project they are in scope compile (or worse case "runtime") otherwise they are ignored.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Romain&lt;/P&gt;</description>
      <pubDate>Mon, 13 May 2019 09:33:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Guess-schema-for-the-Output-component/m-p/2248381#M149271</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-05-13T09:33:12Z</dc:date>
    </item>
    <item>
      <title>Re: Guess schema for the Output component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Guess-schema-for-the-Output-component/m-p/2248382#M149272</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@&lt;/P&gt;&lt;P&gt;Yes, I have installed successfully into TOS using&amp;nbsp; two commands&amp;nbsp;&lt;/P&gt;&lt;P&gt;1.mvnw clean install&lt;/P&gt;&lt;P&gt;2.`mvnw talend-component:deploy-in-studio -Dtalend.component.studioHome="&amp;lt;path to Talend Open Studio home&amp;gt;"&lt;/P&gt;&lt;P&gt;for me working when will change .m2 folder in TOS configuration folder.for others facing jars are missing like above.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Venkat&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 May 2019 11:20:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Guess-schema-for-the-Output-component/m-p/2248382#M149272</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-05-13T11:20:09Z</dc:date>
    </item>
    <item>
      <title>Re: Guess schema for the Output component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Guess-schema-for-the-Output-component/m-p/2248383#M149273</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Deploy in studio goal only supports&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;&lt;SPAN&gt;studioHome/&lt;/SPAN&gt;&lt;SPAN&gt;configuration/.m2/repository/&lt;/SPAN&gt;&lt;/PRE&gt; 
&lt;P&gt;as maven repository.&lt;/P&gt; 
&lt;P&gt;1.1.10 will enable to customize it but is not yet released - a snapshot should be available on&lt;A href="https://oss.sonatype.org/service/local/repositories/snapshots/content" target="_blank" rel="nofollow noopener noreferrer"&gt;https://oss.sonatype.org/service/local/repositories/snapshots/content&lt;/A&gt;&amp;nbsp;tomorrow.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Romain&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 May 2019 13:10:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Guess-schema-for-the-Output-component/m-p/2248383#M149273</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-05-13T13:10:46Z</dc:date>
    </item>
  </channel>
</rss>

