Hi, The issue got resolved when i removed the below dependency in pom.xml <dependency> <groupId>com.101tec</groupId> <artifactId>zkclient</artifactId> <version>0.3</version> </dependency>
But upon submitting the topology, the storm code is throwing the below exception: java.lang.NoClassDefFoundError: org/I0Itec/zkclient/serialize/ZkSerializer at kafka.javaapi.consumer.ZookeeperConsumerConnector.(ZookeeperConsumerConnector.scala:64) at kafka.javaapi.consume which implies that the dependency needs to be specified in the pom.xml. how to resolve the issue.....? Again on including the dependency in pom.xml, i see build failure with the below message: [ERROR] Failed to execute goal com.theoryinpractise:clojure-maven-plugin:1.3.8:compile (compile) on project storm-starter: Clojure failed On Mon, Dec 16, 2013 at 9:08 PM, Wayne Fay <[email protected]> wrote: > > I am trying to compile my storm code on windows using maven. when i > issue *mvn > I am not familiar with "storm." You probably will have better luck > asking for help on the storm user or dev lists. > > Having said that, a few things jump out to me... > > First, read these lines and follow the directions to fix SLF4J issues: > > SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an > > explanation. > > SLF4J: The requested version 1.5.8 by your slf4j binding is not > compatible > > with [1.6] > > SLF4J: See http://www.slf4j.org/codes.html#version_mismatch for further > > details. > > > Second, this is a failure reported by the Clojure compiler. This list > cannot help with Clojure problems. > > Exception in thread "main" java.lang.ExceptionInInitializerError, > > compiling:(word_count.clj:1) > > > Third, it seems you are missing a dependency or something related to > Zookeeper: > > Caused by: java.lang.ClassNotFoundException: > > org.apache.zookeeper.server.NIOServerCnxn$Factory > > > Wayne > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > >
