I am getting the following exception when I use spark-submit to submit a spark
streaming job.
Exception in thread "main" java.lang.NoSuchMethodError:
com.fasterxml.jackson.databind.ObjectMapper.enable([Lcom/fasterxml/jackson/core/JsonParser$Feature;)Lcom/fasterxml/jackson/databind/ObjectMapper;
at
com.amazonaws.internal.config.InternalConfig.<clinit>(InternalConfig.java:43)
I tried with diferent version of of jackson libraries but that does not seem to
help.
libraryDependencies += "com.fasterxml.jackson.core" % "jackson-databind" %
"2.6.3"
libraryDependencies += "com.fasterxml.jackson.core" % "jackson-core" % "2.6.3"
libraryDependencies += "com.fasterxml.jackson.core" % "jackson-annotations" %
"2.6.3"
Any pointers to resolve the issue?
Thanks