-
Notifications
You must be signed in to change notification settings - Fork 3.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upgrade dependencies #1669
Upgrade dependencies #1669
Conversation
👍 |
1 similar comment
+1 |
Getting some hadoop problems now, I think they're due to the jackson upgrade. Looks like hadoop pulls in an older version of the basic jackson jars, but not jackson-datatype-guava, so the newer jackson-datatype-guava of druid blows up when it tries to call into the core jackson stuff.
|
@gianm I'm ok downgrading to the latest version of jackson that doesn't exhibit the problem, let's try the latest 2.5.x see if that works, since that method was introduced in 2.6. Long term we need a better way of isolating the hadoop-only parts to they don't hold up the rest of the stack on older versions. |
|
2.5.4 doesn't work either. The method in the exception was added in 2.5 according to http://fasterxml.github.io/jackson-databind/javadoc/2.5/com/fasterxml/jackson/databind/type/TypeFactory.html#constructParametrizedType(java.lang.Class, java.lang.Class, com.fasterxml.jackson.databind.JavaType...) So I think we are stuck on 2.4.x…
|
Lots of shiny new things