RE: Spark SQL Stackoverflow error

2015-03-10 Thread jishnu.prathap
ot;) for (i <- 0 until numClusters) { println(s"\nCLUSTER $i:") some_tweets.foreach { t => if (model.predict(Utils.featurize(t)) == i) { println(t) } } } } } From: lovelylavs [via Apache Spark User List] [mailto:ml-node+s1001560n21956...@n3.nabble.com] Sent: Sunday, March 08, 2015 2:34 AM To: J

RE: Spark SQL Stackoverflow error

2015-03-01 Thread Jishnu Prathap
- BAS) Subject: Re: Spark SQL Stackoverflow error Hi, how was this issue fixed? If you reply to this email, your message will be added to the discussion below: http://apache-spark-user-list.1001560.n3.nabble.com/Spark-SQL-Stackoverflow-error-tp12086p21862.html To

Re: Spark SQL Stackoverflow error

2014-12-09 Thread Jishnu Prathap
ln(s"\nCLUSTER $i:") some_tweets.foreach { t => if (model.predict(Utils.featurize(t)) == i) { println(t) } } } } } -- View this message in context: http://apache-spark-user-list.1001560.n3.nabble.com/Spark-SQL-Stackoverflow-error-tp12086p20605.html Sent from the Apache Spark User

RE: Spark SQL Stackoverflow error

2014-08-14 Thread Cheng, Hao
I couldn’t reproduce the exception, probably it’s solved in the latest code. From: Vishal Vibhandik [mailto:vishal.vibhan...@gmail.com] Sent: Thursday, August 14, 2014 11:17 AM To: user@spark.apache.org Subject: Spark SQL Stackoverflow error Hi, I tried running the sample sql code JavaSparkSQL

Spark SQL Stackoverflow error

2014-08-13 Thread Vishal Vibhandik
Hi, I tried running the sample sql code JavaSparkSQL but keep getting this error:- the error comes on line JavaSchemaRDD teenagers = sqlCtx.sql("SELECT name FROM people WHERE age >= 13 AND age <= 19"); C:\>spark-submit --class org.apache.spark.examples.sql.JavaSparkSQL --master local \spark-1.0.2