RE: Spark 2.0.0-preview ... problem with jackson core version

2016-07-02 Thread Paolo Patierno
ate: Sat, 2 Jul 2016 15:12:11 +0100 > Subject: Re: Spark 2.0.0-preview ... problem with jackson core version > To: ppatie...@live.com > CC: charles.al...@metamarkets.com; user@spark.apache.org > > Ah, it looks like it was 2.5.3 as of 2.0.0-preview: > > https://github.com/apa

Re: Spark 2.0.0-preview ... problem with jackson core version

2016-07-02 Thread Sean Owen
inging jackson module scala 2.5.3 that > is what I see. > > > >> From: so...@cloudera.com >> Date: Sat, 2 Jul 2016 14:32:58 +0100 >> Subject: Re: Spark 2.0.0-preview ... problem with jackson core version >> To: ppatie...@live.com >> CC: charles.al...@metamarkets

RE: Spark 2.0.0-preview ... problem with jackson core version

2016-07-02 Thread Paolo Patierno
. > From: so...@cloudera.com > Date: Sat, 2 Jul 2016 14:32:58 +0100 > Subject: Re: Spark 2.0.0-preview ... problem with jackson core version > To: ppatie...@live.com > CC: charles.al...@metamarkets.com; user@spark.apache.org > > This is something to do with your app. The versi

Re: Spark 2.0.0-preview ... problem with jackson core version

2016-07-02 Thread Sean Owen
t; jackson-core:2.6.1 > jackson-databind:2.6.1 > > Spark brings > jackson-module-scala_2.11: 2.5.3 > > The module scale related to jackson is 2.5.3 ... seems not work with above > 2.6.0/2.6.1 version ... so the exception. > > >> From: so...@cloudera.com

RE: Spark 2.0.0-preview ... problem with jackson core version

2016-07-02 Thread Paolo Patierno
rings jackson-module-scala_2.11: 2.5.3 The module scale related to jackson is 2.5.3 ... seems not work with above 2.6.0/2.6.1 version ... so the exception. > From: so...@cloudera.com > Date: Sat, 2 Jul 2016 08:34:45 +0100 > Subject: Re: Spark 2.0.0-preview ... problem with jackson

Re: Spark 2.0.0-preview ... problem with jackson core version

2016-07-02 Thread Sean Owen
mvn dependency:tree? On Sat, Jul 2, 2016 at 12:46 AM, Charles Allen wrote: > I'm having the same difficulty porting > https://github.com/metamx/druid-spark-batch/tree/spark2 over to spark2.x, > where I have to go track down who is pulling in bad jackson versions. > --

Re: Spark 2.0.0-preview ... problem with jackson core version

2016-07-01 Thread Charles Allen
I'm having the same difficulty porting https://github.com/metamx/druid-spark-batch/tree/spark2 over to spark2.x, where I have to go track down who is pulling in bad jackson versions. On Fri, Jul 1, 2016 at 11:59 AM Sean Owen wrote: > Are you just asking why you can't use 2.5.3 in your app? bec

Re: Spark 2.0.0-preview ... problem with jackson core version

2016-07-01 Thread Sean Owen
Are you just asking why you can't use 2.5.3 in your app? because Jackson isn't shaded, which is sort of the bad news. But just use 2.6.5 too, ideally. I don't know where 2.6.1 is coming from, but Spark doesn't use it. On Fri, Jul 1, 2016 at 5:48 PM, wrote: > In my project I found the library whi

Re: Spark 2.0.0-preview ... problem with jackson core version

2016-07-01 Thread ppatierno
In my project I found the library which brings Jackson core 2.6.5 and it is used in conjunction with the requested Jackson scala module 2.5.3 wanted by spark 2.0.0 preview. At runtime it's the cause of exception. Now I have excluded 2.6.5 using sbt but it could be dangerous for the other lib