<?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: Where I can find the Kafka integration dependencies to implement a Storm Spout? in Archives of Support Questions (Read Only)</title>
    <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Where-I-can-find-the-Kafka-integration-dependencies-to/m-p/162639#M33304</link>
    <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/11297/lvaldeavellano.html" nodeid="11297"&gt;@Luis Valdeavellano&lt;/A&gt;&lt;/P&gt;&lt;P&gt;seems required dependency is not available at runtime,can you try running this after building a fat jar. to build a fat jar you need to add build configuration in pom.xml and build using mvn package&lt;/P&gt;&lt;PRE&gt;&amp;lt;build&amp;gt;
        &amp;lt;finalName&amp;gt;mytestapp&amp;lt;/finalName&amp;gt;
        &amp;lt;plugins&amp;gt;
            &amp;lt;!-- Set a compiler level --&amp;gt;
            &amp;lt;plugin&amp;gt;
                &amp;lt;groupId&amp;gt;org.apache.maven.plugins&amp;lt;/groupId&amp;gt;
                &amp;lt;artifactId&amp;gt;maven-compiler-plugin&amp;lt;/artifactId&amp;gt;
                &amp;lt;version&amp;gt;2.3.2&amp;lt;/version&amp;gt;
                &amp;lt;configuration&amp;gt;
                    &amp;lt;source&amp;gt;1.7&amp;lt;/source&amp;gt;
                    &amp;lt;target&amp;gt;1.7&amp;lt;/target&amp;gt;
                &amp;lt;/configuration&amp;gt;
            &amp;lt;/plugin&amp;gt;

            &amp;lt;!-- Maven Assembly Plugin --&amp;gt;
            &amp;lt;plugin&amp;gt;
                &amp;lt;groupId&amp;gt;org.apache.maven.plugins&amp;lt;/groupId&amp;gt;
                &amp;lt;artifactId&amp;gt;maven-assembly-plugin&amp;lt;/artifactId&amp;gt;
                &amp;lt;version&amp;gt;2.4.1&amp;lt;/version&amp;gt;
                &amp;lt;configuration&amp;gt;
                    &amp;lt;!-- get all project dependencies --&amp;gt;
                    &amp;lt;descriptorRefs&amp;gt;
                        &amp;lt;descriptorRef&amp;gt;jar-with-dependencies&amp;lt;/descriptorRef&amp;gt;
                    &amp;lt;/descriptorRefs&amp;gt;
                    &amp;lt;!-- MainClass in mainfest make a executable jar --&amp;gt;
                    &amp;lt;archive&amp;gt;
                        &amp;lt;manifest&amp;gt;
                            &amp;lt;mainClass&amp;gt;HiveJdbcClient&amp;lt;/mainClass&amp;gt;
                        &amp;lt;/manifest&amp;gt;
                    &amp;lt;/archive&amp;gt;

                &amp;lt;/configuration&amp;gt;
                &amp;lt;executions&amp;gt;
                    &amp;lt;execution&amp;gt;
                        &amp;lt;id&amp;gt;make-assembly&amp;lt;/id&amp;gt;
                        &amp;lt;!-- bind to the packaging phase --&amp;gt;
                        &amp;lt;phase&amp;gt;package&amp;lt;/phase&amp;gt;
                        &amp;lt;goals&amp;gt;
                            &amp;lt;goal&amp;gt;single&amp;lt;/goal&amp;gt;
                        &amp;lt;/goals&amp;gt;
                    &amp;lt;/execution&amp;gt;
                &amp;lt;/executions&amp;gt;
            &amp;lt;/plugin&amp;gt;

        &amp;lt;/plugins&amp;gt;
    &amp;lt;/build&amp;gt;



&lt;/PRE&gt;</description>
    <pubDate>Wed, 29 Jun 2016 15:52:31 GMT</pubDate>
    <dc:creator>rajkumar_singh</dc:creator>
    <dc:date>2016-06-29T15:52:31Z</dc:date>
    <item>
      <title>Where I can find the Kafka integration dependencies to implement a Storm Spout?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Where-I-can-find-the-Kafka-integration-dependencies-to/m-p/162636#M33301</link>
      <description>&lt;P&gt;
	I'm trying to implement a Kafka Spout inside a Storm Topology.&lt;/P&gt;&lt;P&gt;
	After looking at various tutorials this is the code I finished with:&lt;/P&gt;&lt;PRE&gt;import java.util.UUID;

import backtype.storm.tuple.Fields;
import backtype.storm.tuple.Values;

//import storm configuration packages
import backtype.storm.Config;
import backtype.storm.LocalCluster;
import backtype.storm.topology.TopologyBuilder;

import storm.kafka.KafkaSpout;
import storm.kafka.SpoutConfig;
import storm.kafka.ZkHosts;
import backtype.storm.spout.SchemeAsMultiScheme;

//Create main class TestTopo submit topology.
public class TestTopo {
    public static void main(String[] args) throws Exception{
       
        String zkHost = "sandbox.hortonworks.com:2181";
       
        //Create Config instance for cluster configuration
        Config config = new Config();
        config.setDebug(true);

        TopologyBuilder builder = new TopologyBuilder();
        
        SpoutConfig MyKafkaConfig = new SpoutConfig(new ZkHosts(zkHost), "topic", "", UUID.randomUUID().toString());
        builder.setSpout("MyKafkaSpout", new KafkaSpout(MyKafkaConfig));


        builder.setBolt("consoleOutputBolt", new ConsoleBolt())
         .shuffleGrouping("MyKafkaSpout");
            
        LocalCluster cluster = new LocalCluster();
        cluster.submitTopology("TestTopo", config, builder.createTopology());
        Thread.sleep(10000);

        //Stop the topology
        cluster.shutdown();
    }
}
&lt;/PRE&gt;&lt;P&gt;The main problem I have is that there is a dependency problem with the storm.kafka library which looks like is not available with the main storm functionality. It looks like it is not included in the Sandbox. Where I can find this implementation??&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jun 2016 14:08:52 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Where-I-can-find-the-Kafka-integration-dependencies-to/m-p/162636#M33301</guid>
      <dc:creator>lvaldeavellano</dc:creator>
      <dc:date>2016-06-29T14:08:52Z</dc:date>
    </item>
    <item>
      <title>Re: Where I can find the Kafka integration dependencies to implement a Storm Spout?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Where-I-can-find-the-Kafka-integration-dependencies-to/m-p/162637#M33302</link>
      <description>&lt;P&gt;can you try adding this dependency in your pom.xml&lt;/P&gt;&lt;PRE&gt;&amp;lt;dependency&amp;gt;
&amp;lt;groupId&amp;gt;org.apache.storm&amp;lt;/groupId&amp;gt;
&amp;lt;artifactId&amp;gt;storm-kafka&amp;lt;/artifactId&amp;gt;
&amp;lt;version&amp;gt;0.10.0.2.4.0.0-169&amp;lt;/version&amp;gt;
&amp;lt;/dependency&amp;gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 29 Jun 2016 14:13:02 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Where-I-can-find-the-Kafka-integration-dependencies-to/m-p/162637#M33302</guid>
      <dc:creator>rajkumar_singh</dc:creator>
      <dc:date>2016-06-29T14:13:02Z</dc:date>
    </item>
    <item>
      <title>Re: Where I can find the Kafka integration dependencies to implement a Storm Spout?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Where-I-can-find-the-Kafka-integration-dependencies-to/m-p/162638#M33303</link>
      <description>&lt;P&gt;Thanks, this was a lot of help! As a confession, I have to tell I wasn't using Maven nor even had any idea of its existence.&lt;/P&gt;&lt;P&gt;Now I have my maven project working and it seems it was built using the appropriate dependencies (thanks for that). There is still an error shown when I try to run the topology:&lt;/P&gt;&lt;PRE&gt;[root@sandbox mytestapp]# java -cp target/mytestapp-1.0-SNAPSHOT.jar com.martinexsa.tigopoc.MyTestApp
Exception in thread "main" java.lang.NoClassDefFoundError: storm/kafka/BrokerHosts
        at java.lang.Class.getDeclaredMethods0(Native Method)
        at java.lang.Class.privateGetDeclaredMethods(Class.java:2625)
        at java.lang.Class.getMethod0(Class.java:2866)
        at java.lang.Class.getMethod(Class.java:1676)
        at sun.launcher.LauncherHelper.getMainMethod(LauncherHelper.java:494)
        at sun.launcher.LauncherHelper.checkAndLoadMain(LauncherHelper.java:486)
Caused by: java.lang.ClassNotFoundException: storm.kafka.BrokerHosts
        at java.net.URLClassLoader$1.run(URLClassLoader.java:366)
        at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
        at java.security.AccessController.doPrivileged(Native Method)
        at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:425)
        at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:358)
        ... 6 more
&lt;/PRE&gt;&lt;P&gt;The error shows a ClassNotFoundException for the storm.kafka.BrokerHosts dependency, although I do not directly import that class. I assume it is a dependency of the storm-kafka package but I'm not sure where to look for it.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jun 2016 15:25:38 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Where-I-can-find-the-Kafka-integration-dependencies-to/m-p/162638#M33303</guid>
      <dc:creator>lvaldeavellano</dc:creator>
      <dc:date>2016-06-29T15:25:38Z</dc:date>
    </item>
    <item>
      <title>Re: Where I can find the Kafka integration dependencies to implement a Storm Spout?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Where-I-can-find-the-Kafka-integration-dependencies-to/m-p/162639#M33304</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/11297/lvaldeavellano.html" nodeid="11297"&gt;@Luis Valdeavellano&lt;/A&gt;&lt;/P&gt;&lt;P&gt;seems required dependency is not available at runtime,can you try running this after building a fat jar. to build a fat jar you need to add build configuration in pom.xml and build using mvn package&lt;/P&gt;&lt;PRE&gt;&amp;lt;build&amp;gt;
        &amp;lt;finalName&amp;gt;mytestapp&amp;lt;/finalName&amp;gt;
        &amp;lt;plugins&amp;gt;
            &amp;lt;!-- Set a compiler level --&amp;gt;
            &amp;lt;plugin&amp;gt;
                &amp;lt;groupId&amp;gt;org.apache.maven.plugins&amp;lt;/groupId&amp;gt;
                &amp;lt;artifactId&amp;gt;maven-compiler-plugin&amp;lt;/artifactId&amp;gt;
                &amp;lt;version&amp;gt;2.3.2&amp;lt;/version&amp;gt;
                &amp;lt;configuration&amp;gt;
                    &amp;lt;source&amp;gt;1.7&amp;lt;/source&amp;gt;
                    &amp;lt;target&amp;gt;1.7&amp;lt;/target&amp;gt;
                &amp;lt;/configuration&amp;gt;
            &amp;lt;/plugin&amp;gt;

            &amp;lt;!-- Maven Assembly Plugin --&amp;gt;
            &amp;lt;plugin&amp;gt;
                &amp;lt;groupId&amp;gt;org.apache.maven.plugins&amp;lt;/groupId&amp;gt;
                &amp;lt;artifactId&amp;gt;maven-assembly-plugin&amp;lt;/artifactId&amp;gt;
                &amp;lt;version&amp;gt;2.4.1&amp;lt;/version&amp;gt;
                &amp;lt;configuration&amp;gt;
                    &amp;lt;!-- get all project dependencies --&amp;gt;
                    &amp;lt;descriptorRefs&amp;gt;
                        &amp;lt;descriptorRef&amp;gt;jar-with-dependencies&amp;lt;/descriptorRef&amp;gt;
                    &amp;lt;/descriptorRefs&amp;gt;
                    &amp;lt;!-- MainClass in mainfest make a executable jar --&amp;gt;
                    &amp;lt;archive&amp;gt;
                        &amp;lt;manifest&amp;gt;
                            &amp;lt;mainClass&amp;gt;HiveJdbcClient&amp;lt;/mainClass&amp;gt;
                        &amp;lt;/manifest&amp;gt;
                    &amp;lt;/archive&amp;gt;

                &amp;lt;/configuration&amp;gt;
                &amp;lt;executions&amp;gt;
                    &amp;lt;execution&amp;gt;
                        &amp;lt;id&amp;gt;make-assembly&amp;lt;/id&amp;gt;
                        &amp;lt;!-- bind to the packaging phase --&amp;gt;
                        &amp;lt;phase&amp;gt;package&amp;lt;/phase&amp;gt;
                        &amp;lt;goals&amp;gt;
                            &amp;lt;goal&amp;gt;single&amp;lt;/goal&amp;gt;
                        &amp;lt;/goals&amp;gt;
                    &amp;lt;/execution&amp;gt;
                &amp;lt;/executions&amp;gt;
            &amp;lt;/plugin&amp;gt;

        &amp;lt;/plugins&amp;gt;
    &amp;lt;/build&amp;gt;



&lt;/PRE&gt;</description>
      <pubDate>Wed, 29 Jun 2016 15:52:31 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Where-I-can-find-the-Kafka-integration-dependencies-to/m-p/162639#M33304</guid>
      <dc:creator>rajkumar_singh</dc:creator>
      <dc:date>2016-06-29T15:52:31Z</dc:date>
    </item>
    <item>
      <title>Re: Where I can find the Kafka integration dependencies to implement a Storm Spout?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Where-I-can-find-the-Kafka-integration-dependencies-to/m-p/162640#M33305</link>
      <description>&lt;P&gt;Thanks Rajkumar, &lt;/P&gt;&lt;P&gt;I tried to read more about the build element at the pom.xml and didn't understood a lot. I tried adding the build configuration you posted to my pom.xml, although that didn't work. I just modified pom.xml to add this code after the `&amp;lt;/dependencies&amp;gt;` tag, then run `mvn package` and then `java -cp target/mytestapp-1.0-SNAPSHOT.jar com.mycompany.app.App`.&lt;/P&gt;&lt;P&gt;Is there something I'm missing? I keep receiving the same error. Here is my pom.xml:&lt;/P&gt;&lt;PRE&gt;&amp;lt;project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"&amp;gt;
  &amp;lt;modelVersion&amp;gt;4.0.0&amp;lt;/modelVersion&amp;gt;
  
  &amp;lt;groupId&amp;gt;com.mycompany.app&amp;lt;/groupId&amp;gt;
  &amp;lt;artifactId&amp;gt;mytestapp&amp;lt;/artifactId&amp;gt;
  &amp;lt;packaging&amp;gt;jar&amp;lt;/packaging&amp;gt;
  &amp;lt;version&amp;gt;1.0-SNAPSHOT&amp;lt;/version&amp;gt;
  
  &amp;lt;name&amp;gt;mytestapp&amp;lt;/name&amp;gt;
  &amp;lt;url&amp;gt;http://maven.apache.org&amp;lt;/url&amp;gt;
  
  &amp;lt;dependencies&amp;gt;
  
    &amp;lt;dependency&amp;gt;
      &amp;lt;groupId&amp;gt;junit&amp;lt;/groupId&amp;gt;
      &amp;lt;artifactId&amp;gt;junit&amp;lt;/artifactId&amp;gt;
      &amp;lt;version&amp;gt;3.8.1&amp;lt;/version&amp;gt;
      &amp;lt;scope&amp;gt;test&amp;lt;/scope&amp;gt;
    &amp;lt;/dependency&amp;gt;
    
    &amp;lt;dependency&amp;gt;
		&amp;lt;groupId&amp;gt;org.apache.storm&amp;lt;/groupId&amp;gt;
		&amp;lt;artifactId&amp;gt;storm-core&amp;lt;/artifactId&amp;gt;
		&amp;lt;version&amp;gt;0.10.0&amp;lt;/version&amp;gt;
		&amp;lt;scope&amp;gt;provided&amp;lt;/scope&amp;gt;
		&amp;lt;exclusions&amp;gt;
			&amp;lt;exclusion&amp;gt; 
    			&amp;lt;groupId&amp;gt;org.slf4j&amp;lt;/groupId&amp;gt;
    			&amp;lt;artifactId&amp;gt;slf4j-log4j12&amp;lt;/artifactId&amp;gt;
  			&amp;lt;/exclusion&amp;gt;
  			&amp;lt;exclusion&amp;gt; 
    			&amp;lt;groupId&amp;gt;log4j&amp;lt;/groupId&amp;gt;
    			&amp;lt;artifactId&amp;gt;log4j&amp;lt;/artifactId&amp;gt;
  			&amp;lt;/exclusion&amp;gt;
  		&amp;lt;/exclusions&amp;gt;
    &amp;lt;/dependency&amp;gt;
    
    &amp;lt;dependency&amp;gt;
		&amp;lt;groupId&amp;gt;org.apache.storm&amp;lt;/groupId&amp;gt;
		&amp;lt;artifactId&amp;gt;storm-kafka&amp;lt;/artifactId&amp;gt;
		&amp;lt;version&amp;gt;0.10.0&amp;lt;/version&amp;gt;
		&amp;lt;exclusions&amp;gt;
			&amp;lt;exclusion&amp;gt; 
    			&amp;lt;groupId&amp;gt;org.slf4j&amp;lt;/groupId&amp;gt;
    			&amp;lt;artifactId&amp;gt;slf4j-log4j12&amp;lt;/artifactId&amp;gt;
  			&amp;lt;/exclusion&amp;gt;
  			&amp;lt;exclusion&amp;gt; 
    			&amp;lt;groupId&amp;gt;log4j&amp;lt;/groupId&amp;gt;
    			&amp;lt;artifactId&amp;gt;log4j&amp;lt;/artifactId&amp;gt;
  			&amp;lt;/exclusion&amp;gt;
  		&amp;lt;/exclusions&amp;gt;
	&amp;lt;/dependency&amp;gt;
  &amp;lt;/dependencies&amp;gt;
  
  &amp;lt;!-- Build Settings --&amp;gt;
  &amp;lt;build&amp;gt;
        &amp;lt;finalName&amp;gt;empirix&amp;lt;/finalName&amp;gt;
        &amp;lt;plugins&amp;gt;
            &amp;lt;!-- Set a compiler level --&amp;gt;
            &amp;lt;plugin&amp;gt;
                &amp;lt;groupId&amp;gt;org.apache.maven.plugins&amp;lt;/groupId&amp;gt;
                &amp;lt;artifactId&amp;gt;maven-compiler-plugin&amp;lt;/artifactId&amp;gt;
                &amp;lt;version&amp;gt;2.3.2&amp;lt;/version&amp;gt;
                &amp;lt;configuration&amp;gt;
                    &amp;lt;source&amp;gt;1.7&amp;lt;/source&amp;gt;
                    &amp;lt;target&amp;gt;1.7&amp;lt;/target&amp;gt;
                &amp;lt;/configuration&amp;gt;
            &amp;lt;/plugin&amp;gt;


            &amp;lt;!-- Maven Assembly Plugin --&amp;gt;
            &amp;lt;plugin&amp;gt;
                &amp;lt;groupId&amp;gt;org.apache.maven.plugins&amp;lt;/groupId&amp;gt;
                &amp;lt;artifactId&amp;gt;maven-assembly-plugin&amp;lt;/artifactId&amp;gt;
                &amp;lt;version&amp;gt;2.4.1&amp;lt;/version&amp;gt;
                &amp;lt;configuration&amp;gt;
                    &amp;lt;!-- get all project dependencies --&amp;gt;
                    &amp;lt;descriptorRefs&amp;gt;
                        &amp;lt;descriptorRef&amp;gt;jar-with-dependencies&amp;lt;/descriptorRef&amp;gt;
                    &amp;lt;/descriptorRefs&amp;gt;
                    &amp;lt;!-- MainClass in mainfest make a executable jar --&amp;gt;
                    &amp;lt;archive&amp;gt;
                        &amp;lt;manifest&amp;gt;
                            &amp;lt;mainClass&amp;gt;HiveJdbcClient&amp;lt;/mainClass&amp;gt;
                        &amp;lt;/manifest&amp;gt;
                    &amp;lt;/archive&amp;gt;


                &amp;lt;/configuration&amp;gt;
                &amp;lt;executions&amp;gt;
                    &amp;lt;execution&amp;gt;
                        &amp;lt;id&amp;gt;make-assembly&amp;lt;/id&amp;gt;
                        &amp;lt;!-- bind to the packaging phase --&amp;gt;
                        &amp;lt;phase&amp;gt;package&amp;lt;/phase&amp;gt;
                        &amp;lt;goals&amp;gt;
                            &amp;lt;goal&amp;gt;single&amp;lt;/goal&amp;gt;
                        &amp;lt;/goals&amp;gt;
                    &amp;lt;/execution&amp;gt;
                &amp;lt;/executions&amp;gt;
            &amp;lt;/plugin&amp;gt;


        &amp;lt;/plugins&amp;gt;
    &amp;lt;/build&amp;gt;


&amp;lt;/project&amp;gt;



&lt;/PRE&gt;</description>
      <pubDate>Wed, 29 Jun 2016 20:59:13 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Where-I-can-find-the-Kafka-integration-dependencies-to/m-p/162640#M33305</guid>
      <dc:creator>lvaldeavellano</dc:creator>
      <dc:date>2016-06-29T20:59:13Z</dc:date>
    </item>
    <item>
      <title>Re: Where I can find the Kafka integration dependencies to implement a Storm Spout?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Where-I-can-find-the-Kafka-integration-dependencies-to/m-p/162641#M33306</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/11297/lvaldeavellano.html" nodeid="11297"&gt;@Luis Valdeavellano&lt;/A&gt; after doing mvn package there should be a jar file with name of empirix-jar-with-dependencies.jar create inside the target folder, run this jar instead of mytestapp-1.0-SNAPSHOT.jar.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jun 2016 00:35:02 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Where-I-can-find-the-Kafka-integration-dependencies-to/m-p/162641#M33306</guid>
      <dc:creator>rajkumar_singh</dc:creator>
      <dc:date>2016-06-30T00:35:02Z</dc:date>
    </item>
    <item>
      <title>Re: Where I can find the Kafka integration dependencies to implement a Storm Spout?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Where-I-can-find-the-Kafka-integration-dependencies-to/m-p/162642#M33307</link>
      <description>&lt;P&gt;Thanks, that made it&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jun 2016 13:16:26 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Where-I-can-find-the-Kafka-integration-dependencies-to/m-p/162642#M33307</guid>
      <dc:creator>lvaldeavellano</dc:creator>
      <dc:date>2016-06-30T13:16:26Z</dc:date>
    </item>
  </channel>
</rss>

