Re: RandomGenerator class not found exception

2014-11-17 Thread Chitturi Padma
>> >>> -- >>> 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.html >>> To start a new top

Re: RandomGenerator class not found exception

2014-11-17 Thread Ritesh Kumar Singh
Apache Spark User List, email [hidden email] >> <http://user/SendEmail.jtp?type=node&node=19057&i=1> >> To unsubscribe from Apache Spark User List, click here. >> NAML >> <http://apache-spark-user-list.1001560.n3.nabble.com/template/NamlServlet.jtp?macro=mac

Re: RandomGenerator class not found exception

2014-11-17 Thread Chitturi Padma
Include the commons-math3/3.3 in class path while submitting jar to spark cluster. Like.. spark-submit --driver-class-path maths3.3jar --class MainClass --master spark cluster url appjar On Mon, Nov 17, 2014 at 1:55 PM, Ritesh Kumar Singh [via Apache Spark User List] wrote: > My sbt file for the

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