Re: RandomGenerator class not found exception

2014-11-17 Thread Chitturi Padma
dom/AbstractRandomGenerator.class >>> >org/apache/commons/math3/random/RandomGeneratorFactory$1.class >>> >org/apache/commons/math3/random/RandomGeneratorFactory.class >>> >org/apache/commons/math3/random/StableRandomGenerator.class >>> >org/apache/co

Re: RandomGenerator class not found exception

2014-11-17 Thread Ritesh Kumar Singh
RandomGenerator.class >> >org/apache/commons/math3/random/NormalizedRandomGenerator.class >> >org/apache/commons/math3/random/JDKRandomGenerator.class >> >org/apache/commons/math3/random/GaussianRandomGenerator.class >> >> >> Please help >> >>

Re: RandomGenerator class not found exception

2014-11-17 Thread Chitturi Padma
omGenerator.class > > > Please help > > > -- > If you reply to this email, your message will be added to the discussion > below: > > http://apache-spark-user-list.1001560.n3.nabble.com/RandomGenerator-class-not-found-exception-tp19055.ht

Re: RandomGenerator class not found exception

2014-11-17 Thread Akhil Das
Add this jar while creating the sparkContext. sc.addJar("/path/to/commons-math3-3.3.jar") ​And make sure it is shipped and available in the environment tab (4040)​ Thanks Best Regards On Mon, Nov 17, 2014 at 1:54 PM, Rite

RandomGenerator class not found exception

2014-11-17 Thread Ritesh Kumar Singh
My sbt file for the project includes this: libraryDependencies ++= Seq( "org.apache.spark" %% "spark-core" % "1.1.0", "org.apache.spark" %% "spark-mllib" % "1.1.0", "org.apache.commons" % "commons-math3" % "3.3" ) =