<?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>question Re: transfer file using kafka in Support Questions</title>
    <link>https://community.cloudera.com/t5/Support-Questions/transfer-file-using-kafka/m-p/165777#M128139</link>
    <description>&lt;P&gt;please follow &lt;/P&gt;&lt;P&gt;&lt;A href="https://kafka.apache.org/documentation.html"&gt;https://kafka.apache.org/documentation.html&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 22 Dec 2016 17:17:26 GMT</pubDate>
    <dc:creator>rajkumar_singh</dc:creator>
    <dc:date>2016-12-22T17:17:26Z</dc:date>
    <item>
      <title>transfer file using kafka</title>
      <link>https://community.cloudera.com/t5/Support-Questions/transfer-file-using-kafka/m-p/165770#M128132</link>
      <description>&lt;P&gt;Hi - i wanna transfer a complete file from one system to other using KAFKA ? can you please help in doing it ?&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;sathish&lt;/P&gt;</description>
      <pubDate>Wed, 21 Dec 2016 14:57:05 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/transfer-file-using-kafka/m-p/165770#M128132</guid>
      <dc:creator>Sathish Jeganathan</dc:creator>
      <dc:date>2016-12-21T14:57:05Z</dc:date>
    </item>
    <item>
      <title>Re: transfer file using kafka</title>
      <link>https://community.cloudera.com/t5/Support-Questions/transfer-file-using-kafka/m-p/165771#M128133</link>
      <description>&lt;P&gt;tailf a file a pipe it to kafka console producer&lt;/P&gt;&lt;P&gt;tailf install.log | /usr/hdp/current/kafka-broker/bin/kafka-console-producer.sh --broker-list `hostname -f`:6667 --topic kafkatopic&lt;/P&gt;&lt;P&gt;or cat a file and pipe it to console producer&lt;/P&gt;&lt;P&gt;cat install.log | /usr/hdp/current/kafka-broker/bin/kafka-console-producer.sh --broker-list `hostname -f`:6667 --topic kafkatopic&lt;/P&gt;</description>
      <pubDate>Wed, 21 Dec 2016 15:01:15 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/transfer-file-using-kafka/m-p/165771#M128133</guid>
      <dc:creator>rajkumar_singh</dc:creator>
      <dc:date>2016-12-21T15:01:15Z</dc:date>
    </item>
    <item>
      <title>Re: transfer file using kafka</title>
      <link>https://community.cloudera.com/t5/Support-Questions/transfer-file-using-kafka/m-p/165772#M128134</link>
      <description>&lt;A rel="user" href="https://community.cloudera.com/users/8919/rajkumarsingh.html" nodeid="8919"&gt;@Rajkumar Singh&lt;/A&gt;&lt;P&gt; i should have been more specific on my asks... sorry for that... actually i want to ingest/load/insert data from kafka producer to hdfs consumer... is there a way to do it with normal kafka commands or any tools available to do it ?&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;sathish &lt;/P&gt;</description>
      <pubDate>Thu, 22 Dec 2016 12:47:25 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/transfer-file-using-kafka/m-p/165772#M128134</guid>
      <dc:creator>Sathish Jeganathan</dc:creator>
      <dc:date>2016-12-22T12:47:25Z</dc:date>
    </item>
    <item>
      <title>Re: transfer file using kafka</title>
      <link>https://community.cloudera.com/t5/Support-Questions/transfer-file-using-kafka/m-p/165773#M128135</link>
      <description>&lt;A rel="user" href="https://community.cloudera.com/users/14920/sathishkumarjdba.html" nodeid="14920"&gt;@sathish jeganathan&lt;/A&gt;&lt;P&gt;for such data ingestion case I will suggest you to use apache nifi, you can use putkafka and puthdfs processor, with the help of these processor you can write your files directly on hdfs.&lt;/P&gt;&lt;P&gt;to refer putHDFS you can follow this document&lt;/P&gt;&lt;P&gt;&lt;A href="https://nifi.apache.org/docs/nifi-docs/components/org.apache.nifi.processors.hadoop.PutHDFS/" target="_blank"&gt;https://nifi.apache.org/docs/nifi-docs/components/org.apache.nifi.processors.hadoop.PutHDFS/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Dec 2016 13:04:34 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/transfer-file-using-kafka/m-p/165773#M128135</guid>
      <dc:creator>rajkumar_singh</dc:creator>
      <dc:date>2016-12-22T13:04:34Z</dc:date>
    </item>
    <item>
      <title>Re: transfer file using kafka</title>
      <link>https://community.cloudera.com/t5/Support-Questions/transfer-file-using-kafka/m-p/165774#M128136</link>
      <description>&lt;P style="margin-left: 40px;"&gt;@Rajkumar Singh  - how about kafka connect. kafka connect is the official one i believe... how those two (nifi &amp;amp; kafka connect) differs from one another.. ?&lt;/P&gt;&lt;P style="margin-left: 40px;"&gt;thanks,&lt;/P&gt;&lt;P style="margin-left: 40px;"&gt;sathish&lt;/P&gt;</description>
      <pubDate>Thu, 22 Dec 2016 13:26:06 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/transfer-file-using-kafka/m-p/165774#M128136</guid>
      <dc:creator>Sathish Jeganathan</dc:creator>
      <dc:date>2016-12-22T13:26:06Z</dc:date>
    </item>
    <item>
      <title>Re: transfer file using kafka</title>
      <link>https://community.cloudera.com/t5/Support-Questions/transfer-file-using-kafka/m-p/165775#M128137</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/14920/sathishkumarjdba.html" nodeid="14920"&gt;@sathish jeganathan &lt;/A&gt;kafka connect is good if you have source and destination kafka cluster, this way you can stream the data between both clusters, I have not tried it so can't comment on pros/cons of it but certainly a NiFi has quite rich set of processor with the help of these you can stream the data along with transformation/enrichment of the data&lt;/P&gt;</description>
      <pubDate>Thu, 22 Dec 2016 13:33:23 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/transfer-file-using-kafka/m-p/165775#M128137</guid>
      <dc:creator>rajkumar_singh</dc:creator>
      <dc:date>2016-12-22T13:33:23Z</dc:date>
    </item>
    <item>
      <title>Re: transfer file using kafka</title>
      <link>https://community.cloudera.com/t5/Support-Questions/transfer-file-using-kafka/m-p/165776#M128138</link>
      <description>&lt;P&gt;@Rajkumar Singh  can you please let me know if there is any doc which talks more about kafka ? also i wanted to understand more about data streaming between kafka clusters... and how kafka clusters communicates with each other ?&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;sathish &lt;/P&gt;</description>
      <pubDate>Thu, 22 Dec 2016 17:14:29 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/transfer-file-using-kafka/m-p/165776#M128138</guid>
      <dc:creator>Sathish Jeganathan</dc:creator>
      <dc:date>2016-12-22T17:14:29Z</dc:date>
    </item>
    <item>
      <title>Re: transfer file using kafka</title>
      <link>https://community.cloudera.com/t5/Support-Questions/transfer-file-using-kafka/m-p/165777#M128139</link>
      <description>&lt;P&gt;please follow &lt;/P&gt;&lt;P&gt;&lt;A href="https://kafka.apache.org/documentation.html"&gt;https://kafka.apache.org/documentation.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Dec 2016 17:17:26 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/transfer-file-using-kafka/m-p/165777#M128139</guid>
      <dc:creator>rajkumar_singh</dc:creator>
      <dc:date>2016-12-22T17:17:26Z</dc:date>
    </item>
  </channel>
</rss>

