Re: Google Summer of Code - ideas

2015-02-28 Thread Sath
All I would like to contribute for the google summer of code projects. Please guide me to start the process Sath > On Feb 28, 2015, at 11:34 AM, Manoj Kumar > wrote: > > Hi, > > Thanks a lot. > Yes indeed, I am interested. I shall start looking at all the related > JIRA's in a while.

Re: Scheduler hang?

2015-02-28 Thread Victor Tso-Guillen
Moving user to bcc. What I found was that the TaskSetManager for my task set that had 5 tasks had preferred locations set for 4 of the 5. Three had localhost/ and had completed. The one that had nothing had also completed. The last one was set by our code to be my IP address. Local mode can hang o

Re: Google Summer of Code - ideas

2015-02-28 Thread Manoj Kumar
Hi, Thanks a lot. Yes indeed, I am interested. I shall start looking at all the related JIRA's in a while. -- Godspeed, Manoj Kumar, http://manojbits.wordpress.com http://github.com/MechCoder

Re: How to create a Row from a List or Array in Spark using Scala

2015-02-28 Thread DEVAN M.S.
In scala API its there, Row.fromSeq(ARRAY), I dnt know much more about java api Devan M.S. | Research Associate | Cyber Security | AMRITA VISHWA VIDYAPEETHAM | Amritapuri | Cell +919946535290 | On Sat, Feb 28, 2015 at 1:28 PM, r7raul1...@163.com wrote: > import org.apache.spark.sql.catalys

How to create a Row from a List or Array in Spark using Scala

2015-02-28 Thread r7raul1...@163.com
import org.apache.spark.sql.catalyst.expressions._ val values: JavaArrayList[Any] = new JavaArrayList() computedValues = Row(values.get(0),values.get(1)) //It is not good by use get(index). How to create a Row from a List or Array in Spark using Scala . r7raul1...@163.com