Re: ERROR TaskResultGetter: Exception while getting task result java.io.IOException: java.lang.ClassNotFoundException: scala.Some

2016-06-16 Thread Jacek Laskowski
Hi, Why do you provided spark-core while the others are non-provided? How do you assemble the app? How do you submit it for execution? What's the deployment environment? More info...more info... Jacek On 15 Jun 2016 10:26 p.m., "S Sarkar" wrote: Hello, I built package for a spark application

Re: [scala-user] ERROR TaskResultGetter: Exception while getting task result java.io.IOException: java.lang.ClassNotFoundException: scala.Some

2016-06-16 Thread Oliver Ruebenacker
Hello, It would be useful to see the code that throws the exception. It probably means that the Scala standard library is not being uploaded to the executers. Try adding the Scala standard library to the SBT file ("org.scala-lang" % "scala-library" % "2.10.3"), or check your configuration.

ERROR TaskResultGetter: Exception while getting task result java.io.IOException: java.lang.ClassNotFoundException: scala.Some

2016-06-15 Thread S Sarkar
Hello, I built package for a spark application with the following sbt file: name := "Simple Project" version := "1.0" scalaVersion := "2.10.3" libraryDependencies ++= Seq( "org.apache.spark" %% "spark-core" % "1.4.0" % "provided", "org.apache.spark" %% "spark-mllib"