Github user BrianLondon commented on the pull request:

    https://github.com/apache/spark/pull/10256#issuecomment-164975298
  
    Yeah, that looks like the same underlying issue of using AWS Java SDK 
1.10.0 or later with Spark.  I believe this version bump will fix it.  You can 
sometimes get around it by adding the following to your sbt build:
    
    ```scala
    dependencyOverrides ++= Set(
      "com.fasterxml.jackson.core" % "jackson-core" % "2.4.4",
      "com.fasterxml.jackson.core" % "jackson-databind" % "2.4.4",
      "com.fasterxml.jackson.core" % "jackson-annotations" % "2.4.4"
    )
    ```
    
    That doesn't work however if the calls to the AWS library use any Jackson 
2.5.x functionality and some of them do.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to