JAR file conflict in Kafka Consumer step
#!/bin/sh ## ## helper script for setting up SPARK_DIST_CLASSPATH for AEL ## removes conflicting JAR files existing in HDP 3.x ## Using: call this the same way you use hadoop classpath, command, i.e.: ## export SPARK_DIST_CLASSPATH=$(spark-dist-classpath.sh) # grab hadoop classpath HCP=`hadoop classpath` ## expand it to grab all jar files ( for entry in `echo "$HCP" | sed -e 's/:/\n/g'` ; do ## clean up dirs ending with * entryCleaned=`echo "$entry" | sed -e 's/\*$//'` ## if dir, expand it if test -d $entryCleaned ; then find $entryCleaned else echo "$entry" fi done ) | grep -v kafka-clients-0.8.2.1.jar | paste -s -d: exit
Last updated
Was this helpful?

