Created 05-17-2017 11:30 AM
Why it even uses a different version of HDP? I found this jar in a nexus-private repository, but I assume this is an error, isn't it?
What version do I need to include to deploy a topology to a 2.6.0.3-8 HDP cluster and have the Kafka Spout Lag in the UI?
Created 06-03-2017 09:07 PM
Work around is to add the following in your pom.xml
<dependency> <groupId>org.apache.storm</groupId> <artifactId>storm-kafka-clients</artifactId> <version>1.1.0.2.6.0.3-8</version> <exclusions> <exclusion> <groupId>org.apache.kafka</groupId> <artifactId>kafka-clients</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.kafka</groupId> <artifactId>kafka-clients</groupId> <version>0.10.0.2.6.0.0-598</version> </dependency>
Created 05-21-2017 10:33 PM
I surely don't have an answer for this one, but you could ~play~ with it by hand-jamming what you think is the appropriate jar into the worker nodes as I did with another jar issue as described in https://martin.atlassian.net/wiki/x/JbXqBQ. Then you'd have an easy case to submit which the support team could easily reproduce (and get fixed!). Good luck and happy Hadooping/Storming.
Created on 06-03-2017 08:49 PM - edited 08-18-2019 02:57 AM
Ahhh.... for my sins it looks like I ran into the same problem as you did, @Joan Viladrosa (shown below). Did you get anywhere with this? Do you have a workaround while I try to see if anyone knows what's up?
Created 06-03-2017 09:07 PM
Work around is to add the following in your pom.xml
<dependency> <groupId>org.apache.storm</groupId> <artifactId>storm-kafka-clients</artifactId> <version>1.1.0.2.6.0.3-8</version> <exclusions> <exclusion> <groupId>org.apache.kafka</groupId> <artifactId>kafka-clients</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.kafka</groupId> <artifactId>kafka-clients</groupId> <version>0.10.0.2.6.0.0-598</version> </dependency>
Created 06-04-2017 04:38 AM
It did the trick for me. I sure hope it helps out @Joan Viladrosa, too! Thanks, Sriharsha!