You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@storm.apache.org by "Robert Joseph Evans (JIRA)" <ji...@apache.org> on 2016/03/03 15:58:18 UTC

[jira] [Created] (STORM-1599) Kafka dependencies all marked as provided (so storm-starter does not run)

Robert Joseph Evans created STORM-1599:
------------------------------------------

             Summary: Kafka dependencies all marked as provided (so storm-starter does not run)
                 Key: STORM-1599
                 URL: https://issues.apache.org/jira/browse/STORM-1599
             Project: Apache Storm
          Issue Type: Bug
          Components: examples, Flux, storm-kafka
    Affects Versions: 0.10.0, 1.0.0, 2.0.0
            Reporter: Robert Joseph Evans


When we mark a dependency as provided it indicates the shade and assembly plugins to not include this particular dependency in the uber topology jar because it will be {provided} on the class path by the system.

We have been doing this for all of our kafka dependencies incorrectly.  This means that storm-starter does not have any version of kafka packaged it the resulting jar and any example that uses kafka, TridentKafkaWordCount, will fail with missing class errors. 

storm-starter/pom.xml has should change its dependency on storm-kafka to be compile, and it should delete dependencies on kafka and kafka-clients as those should come from storm-kafka as transitive dependencies.

the main pom.xml should not have kafka-clients marked as provided in the dependency management section.

storm-kafka should remove its provided tag on kafka, and flux examples + storm-sql-kafka should remove dependencies on kafka and kafka-clients, and storm-kafka should not me marked as provided. 

the flux and sql code I am not as familiar with, but looking at them, and running `mvn dependecy:tree` and `mvn dependency:analyze` it looks like



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)