Re: Is there "EXCEPT ALL" in Spark SQL?

2017-07-06 Thread hareesh makam
There is Except in DataFrame API. df1.except(df2) Same can be used in SQL as well. public DataFrame except(DataFrame other)

Re: Spark streaming app starts processing when kill that app

2016-05-03 Thread hareesh makam
If you are running your master on a single core, it might be an issue of Starvation. assuming you are running it locally, try setting master to local[2] or higher. Check the first example at https://spark.apache.org/docs/latest/streaming-programming-guide.html - Hareesh On 3 May 2016 at 12:35,

Re: Unable to compile from source

2016-01-08 Thread hareesh makam
Are you behind a proxy? Or Try disabling the SSL check while building. http://stackoverflow.com/questions/21252800/maven-trusting-all-certs-unlimited-java-policy Check above link to know how to disable SSL check. - hareesh. On Jan 8, 2016 4:54 PM, "Gaini Rajeshwar"