<?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: Confluent Kafka connection in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Confluent-Kafka-connection/m-p/2377824#M139635</link>
    <description />
    <pubDate>Tue, 01 Feb 2022 23:27:58 GMT</pubDate>
    <dc:creator>suresh_gopalan</dc:creator>
    <dc:date>2022-02-01T23:27:58Z</dc:date>
    <item>
      <title>Confluent Kafka connection</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Confluent-Kafka-connection/m-p/2377820#M139631</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Env: Talend Cloud /Talend Fabric 8.0 &lt;/P&gt;&lt;P&gt;I am trying to confligure tKafkaInput component to read messages from our Confluent Kafka Topic&lt;/P&gt;&lt;P&gt;I selected version Kafka 2.2.1 from the drop down&lt;/P&gt;&lt;P&gt;Given Broker list, Topic Name, Consumer Group ID&lt;/P&gt;&lt;P&gt;We are using SASL/PLAIN for security. &lt;/P&gt;&lt;P&gt;Where do we set this?&lt;/P&gt;&lt;P&gt;What are the minimum set of properties needed to set (assuming it is in Advanced Settings) to read messages from Confluent Kafka Topic? &lt;/P&gt;&lt;P&gt;How to set them here?&lt;/P&gt;&lt;P&gt;I saw a 2 year old post &lt;/P&gt;&lt;P&gt;&lt;A href="https://community.talend.com/s/question/0D53p00007vCx5kCAC/how-to-define-a-jaas-config-file-for-use-with-kafka-in-talend-big-data?language=en_US" alt="https://community.talend.com/s/question/0D53p00007vCx5kCAC/how-to-define-a-jaas-config-file-for-use-with-kafka-in-talend-big-data?language=en_US" target="_blank"&gt;https://community.talend.com/s/question/0D53p00007vCx5kCAC/how-to-define-a-jaas-config-file-for-use-with-kafka-in-talend-big-data?language=en_US&lt;/A&gt;&lt;/P&gt;&lt;P&gt;In this, the suggestion is to create a custom component. Now also, Is this the only solution, so NO support out of the box?&lt;/P&gt;&lt;P&gt;Please help.&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2024 23:15:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Confluent-Kafka-connection/m-p/2377820#M139631</guid>
      <dc:creator>suresh_gopalan</dc:creator>
      <dc:date>2024-11-15T23:15:40Z</dc:date>
    </item>
    <item>
      <title>Re: Confluent Kafka connection</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Confluent-Kafka-connection/m-p/2377821#M139632</link>
      <description>&lt;P&gt;These precise settings may not work for you, but this will be the way to attempt this. I have to admit that I haven't done this and don't have a system to test this on. So I am passing this on as something that I would try if I could....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Go to your Advanced Settings and look at the Kafka Properties box. Then experiment with the following properties....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;bootstrap.servers=localhost:9092&lt;/P&gt;&lt;P&gt;ssl.enabled.protocols=TLSv1.2,TLSv1.1,TLSv1&lt;/P&gt;&lt;P&gt;ssl.truststore.location=/path/to/truststore&lt;/P&gt;&lt;P&gt;ssl.truststore.password=password&lt;/P&gt;&lt;P&gt;ssl.protocol=TLS&lt;/P&gt;&lt;P&gt;&lt;B&gt;security.protocol=SASL_SSL&lt;/B&gt;&lt;/P&gt;&lt;P&gt;sasl.mechanism=PLAIN&lt;/P&gt;&lt;P&gt;sasl.jaas.config=org.apache.kafka.common.security.scram.ScramLoginModule required username="admin" password="admin-secret"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Feb 2022 18:20:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Confluent-Kafka-connection/m-p/2377821#M139632</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-02-01T18:20:24Z</dc:date>
    </item>
    <item>
      <title>Re: Confluent Kafka connection</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Confluent-Kafka-connection/m-p/2377822#M139633</link>
      <description>&lt;P&gt;Talend Support helped. Below settings worked&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt; Created a config file named "KafkaClient.conf" with below content and save it to a local folder&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;KafkaClient {&lt;/P&gt;&lt;P&gt;org.apache.kafka.common.security.plain.PlainLoginModule required&lt;/P&gt;&lt;P&gt;username="&amp;lt;your api key&amp;gt;"&amp;nbsp;&lt;/P&gt;&lt;P&gt;password="&amp;lt;your secret&amp;gt;"&lt;B&gt;;&lt;/B&gt;&lt;/P&gt;&lt;P&gt;};&lt;/P&gt;&lt;P&gt;1) In tKafkaInput's Basic Settings tab, give Broker List, Topic Name and Consumer Group ID&lt;/P&gt;&lt;P&gt;2) In Advanced settings -&amp;gt; Kafka properties, add the following Names, Values&lt;/P&gt;&lt;P&gt; "security.protocol" , "SASL_SSL"&lt;/P&gt;&lt;P&gt; "sasl.mechanism", "PLAIN"&lt;/P&gt;&lt;P&gt; In Advanced settings -&amp;gt; Use Specific JVM Arguments, enter below&lt;/P&gt;&lt;P&gt; -Djava.security.auth.login.config=&amp;lt;File Path&amp;gt;/KafkaClient.conf&lt;/P&gt;&lt;P&gt; 3) Run the job&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you are NOT sure about the security config of Confluent Kafka Account then run the job in debug mode and see the properties. By default Talend expect Kerberos config. To overcome we need to set the properties in Advanced settings. &lt;/P&gt;&lt;P&gt;I am attaching few screenshots for reference&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Feb 2022 23:09:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Confluent-Kafka-connection/m-p/2377822#M139633</guid>
      <dc:creator>suresh_gopalan</dc:creator>
      <dc:date>2022-02-01T23:09:56Z</dc:date>
    </item>
    <item>
      <title>Re: Confluent Kafka connection</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Confluent-Kafka-connection/m-p/2377823#M139634</link>
      <description>&lt;P&gt;See screenshots for kafka input settings&lt;/P&gt;</description>
      <pubDate>Tue, 01 Feb 2022 23:25:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Confluent-Kafka-connection/m-p/2377823#M139634</guid>
      <dc:creator>suresh_gopalan</dc:creator>
      <dc:date>2022-02-01T23:25:36Z</dc:date>
    </item>
    <item>
      <title>Re: Confluent Kafka connection</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Confluent-Kafka-connection/m-p/2377824#M139635</link>
      <description />
      <pubDate>Tue, 01 Feb 2022 23:27:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Confluent-Kafka-connection/m-p/2377824#M139635</guid>
      <dc:creator>suresh_gopalan</dc:creator>
      <dc:date>2022-02-01T23:27:58Z</dc:date>
    </item>
    <item>
      <title>Re: Confluent Kafka connection</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Confluent-Kafka-connection/m-p/2377825#M139636</link>
      <description />
      <pubDate>Tue, 01 Feb 2022 23:28:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Confluent-Kafka-connection/m-p/2377825#M139636</guid>
      <dc:creator>suresh_gopalan</dc:creator>
      <dc:date>2022-02-01T23:28:15Z</dc:date>
    </item>
    <item>
      <title>Re: Confluent Kafka connection</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Confluent-Kafka-connection/m-p/2377826#M139637</link>
      <description />
      <pubDate>Tue, 01 Feb 2022 23:28:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Confluent-Kafka-connection/m-p/2377826#M139637</guid>
      <dc:creator>suresh_gopalan</dc:creator>
      <dc:date>2022-02-01T23:28:32Z</dc:date>
    </item>
    <item>
      <title>Re: Confluent Kafka connection</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Confluent-Kafka-connection/m-p/2377827#M139638</link>
      <description />
      <pubDate>Tue, 01 Feb 2022 23:28:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Confluent-Kafka-connection/m-p/2377827#M139638</guid>
      <dc:creator>suresh_gopalan</dc:creator>
      <dc:date>2022-02-01T23:28:50Z</dc:date>
    </item>
    <item>
      <title>Re: Confluent Kafka connection</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Confluent-Kafka-connection/m-p/2377828#M139639</link>
      <description>&lt;P&gt;@Suresh Gopalan​&amp;nbsp;thanks for posting this solution!&lt;/P&gt;</description>
      <pubDate>Wed, 02 Feb 2022 09:32:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Confluent-Kafka-connection/m-p/2377828#M139639</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-02-02T09:32:40Z</dc:date>
    </item>
  </channel>
</rss>

