Well , Sorry for late reponse and thanks a lot for pointing out the clue.
fightf...@163.com
From: Akhil Das
Date: 2015-12-03 14:50
To: Sahil Sareen
CC: fightf...@163.com; user
Subject: Re: spark sql cli query results written to file ?
Oops 3 mins late. :)
Thanks
Best Regards
On Thu, Dec 3
Something like this?
val df =
sqlContext.read.load("examples/src/main/resources/users.parquet")df.select("name",
"favorite_color").write.save("namesAndFavColors.parquet")
It will save the name, favorite_color columns to a parquet file. You can
read more information over here
http://spark.apache
Did you see: http://spark.apache.org/docs/latest/sql-programming-guide.html
-Sahil
On Thu, Dec 3, 2015 at 11:35 AM, fightf...@163.com
wrote:
> HI,
> How could I save the spark sql cli running queries results and write the
> results to some local file ?
> Is there any available command ?
>
> Tha
HI,
How could I save the spark sql cli running queries results and write the
results to some local file ?
Is there any available command ?
Thanks,
Sun.
fightf...@163.com
Yeah, Thats the example from the link I just posted.
-Sahil
On Thu, Dec 3, 2015 at 11:41 AM, Akhil Das
wrote:
> Something like this?
>
> val df =
> sqlContext.read.load("examples/src/main/resources/users.parquet")df.select("name",
> "favorite_color").write.save("namesAndFavColors.parquet")
>
Oops 3 mins late. :)
Thanks
Best Regards
On Thu, Dec 3, 2015 at 11:49 AM, Sahil Sareen wrote:
> Yeah, Thats the example from the link I just posted.
>
> -Sahil
>
> On Thu, Dec 3, 2015 at 11:41 AM, Akhil Das
> wrote:
>
>> Something like this?
>>
>> val df =
>> sqlContext.read.load("examples/sr