What version of Hadoop are you using, and if so are you setting the right Hadoop profile? because they already set the Jackson version to 1.9.13 IIRC. So maybe that's the issue.
On Thu, Mar 12, 2015 at 5:15 PM, Ted Yu <[email protected]> wrote: > Looking at dependency tree: > [INFO] +- org.spark-project.hive:hive-exec:jar:0.13.1a:compile > ... > [INFO] | +- org.codehaus.jackson:jackson-core-asl:jar:1.9.2:compile > > In root pom.xml : > <dependency> > <groupId>org.codehaus.jackson</groupId> > <artifactId>jackson-core-asl</artifactId> > <version>${codehaus.jackson.version}</version> > <scope>${hadoop.deps.scope}</scope> > </dependency> > You can try passing -Dcodehaus.jackson.version=1.9.13 in the command line. > > Cheers > > On Thu, Mar 12, 2015 at 9:58 AM, Uthayan Suthakar > <[email protected]> wrote: >> >> Hello Guys, >> >> I'm running into below error: >> >> Exception in thread "main" java.lang.NoClassDefFoundError: >> org/codehaus/jackson/annotate/JsonClass >> >> I have created a uber jar with Jackson-core-asl.1.9.13 and passed it with >> --jars configuration, but still getting errors. I searched on the net and >> found a few suggestions, such as disabling "USE_ANNOTATIONS", still no joy. >> >> I tried disabling SQL module and recompiled Spark and installed the custom >> library, yet no joy. >> >> I'm running out of ideas, could you please assist me with this issue? >> >> Many thanks. >> >> >> Uthay. >> >> > > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
