Re: [DISCUSS] Syntax for table DDL

2018-10-03 Thread Wenchen Fan
Thank you Ryan for proposing the DDL syntax! I think it's good to follow
mainstream databases, and the proposed syntax looks very reasonable.

About Hive compatibility, I think it's not that important now, but it's
still good if we keep it. Shall we support the Hive syntax as an
alternative? It seems not very hard, just a few more ANTLR rules. It will
be better if we can make ANTLR extensible and allow other data sources to
define custom SQL syntax.

Anyway I think they are orthogonal. We can go ahead with the proposed
syntax here, and add Hive compatible syntax later.

On Tue, Oct 2, 2018 at 11:50 PM Ryan Blue  wrote:

> I'd say that it was important to be compatible with Hive in the past, but
> that's becoming less important over time. Spark is well established with
> Hadoop users and I think the focus moving forward should be to make Spark
> more predictable as a SQL engine for people coming from more traditional
> databases..
>
> That said, I think there is no problem supporting the alter syntax for
> both Hive/MySQL and the more standard versions.
>
> On Tue, Oct 2, 2018 at 8:35 AM Felix Cheung 
> wrote:
>
>> I think it has been an important “selling point” that Spark is “mostly
>> compatible“ with Hive DDL.
>>
>> I have see a lot of teams suffering from switching between Presto and
>> Hive dialects.
>>
>> So one question I have is, we are at a point of switch from Hive
>> compatible to ANSI SQL, say?
>>
>> Perhaps a more critical question, what does it take to get the platform
>> to support both, by making the ANTLR extensible?
>>
>>
>>
>> --
>> *From:* Alessandro Solimando 
>> *Sent:* Tuesday, October 2, 2018 12:35 AM
>> *To:* rb...@netflix.com
>> *Cc:* Xiao Li; dev
>> *Subject:* Re: [DISCUSS] Syntax for table DDL
>>
>> I agree with Ryan, a "standard" and more widely adopted syntax is usually
>> a good idea, with possibly some slight improvements like "bulk deletion" of
>> columns (especially because both the syntax and the semantics are clear),
>> rather than stay with Hive syntax at any cost.
>>
>> I am personally following this PR with a lot of interest, thanks for all
>> the work along this direction.
>>
>> Best regards,
>> Alessandro
>>
>> On Mon, 1 Oct 2018 at 20:21, Ryan Blue  wrote:
>>
>>> What do you mean by consistent with the syntax in SqlBase.g4? These
>>> aren’t currently defined, so we need to decide what syntax to support.
>>> There are more details below, but the syntax I’m proposing is more standard
>>> across databases than Hive, which uses confusing and non-standard syntax.
>>>
>>> I doubt that we want to support Hive syntax for a few reasons. Hive uses
>>> the same column CHANGE statement for multiple purposes, so it ends up
>>> with strange patterns for simple tasks, like updating the column’s type:
>>>
>>> ALTER TABLE t CHANGE a1 a1 INT;
>>>
>>> The column name is doubled because old name, new name, and type are
>>> always required. So you have to know the type of a column to change its
>>> name and you have to double up the name to change its type. Hive also
>>> allows a couple other oddities:
>>>
>>>- Column reordering with FIRST and AFTER keywords. Column reordering
>>>is tricky to get right so I’m not sure we want to add it.
>>>- RESTRICT and CASCADE to signal whether to change all partitions or
>>>not. Spark doesn’t support partition-level schemas except through Hive, 
>>> and
>>>even then I’m not sure how reliable it is.
>>>
>>> I know that we wouldn’t necessarily have to support these features from
>>> Hive, but I’m pointing them out to ask the question: why copy Hive’s syntax
>>> if it is unlikely that Spark will implement all of the “features”? I’d
>>> rather go with SQL syntax from databases like PostgreSQL or others that are
>>> more standard and common.
>>>
>>> The more “standard” versions of these statements are like what I’ve
>>> proposed:
>>>
>>>- ALTER TABLE ident ALTER COLUMN qualifiedName TYPE dataType: ALTER
>>>is used by SQL Server, Access, DB2, and PostgreSQL; MODIFY by MySQL
>>>and Oracle. COLUMN is optional in Oracle and TYPE is omitted by
>>>databases other than PosgreSQL. I think we could easily add MODIFY
>>>as an alternative to the second ALTER (and maybe alternatives like
>>>UPDATE and CHANGE) and make both TYPE and COLUMN optional.
>>>- ALTER TABLE ident RENAME COLUMN qualifiedName TO qualifiedName:
>>>This syntax is supported by PostgreSQL, Oracle, and DB2. MySQL uses the
>>>same syntax as Hive and it appears that SQL server doesn’t have this
>>>statement. This also match the table rename syntax, which uses TO.
>>>- ALTER TABLE ident DROP (COLUMN | COLUMNS) qualifiedNameList: This
>>>matches PostgreSQL, Oracle, DB2, and SQL server. MySQL makes COLUMN
>>>optional. Most don’t allow deleting multiple columns, but it’s a 
>>> reasonable
>>>extension.
>>>
>>> While we’re on the subject of ALTER TABLE DDL, I should note that all
>>> of the databases 

Re: welcome a new batch of committers

2018-10-03 Thread Wei Shung Chung
Congrats ! Well deserved ! Continue with the good work.

Regards,
Wei Shung

> On Oct 3, 2018, at 2:07 AM, Sharanabasappa G Keriwaddi  
> wrote:
> 
> WOW.. Great news. Congratulations to all new committers.
>  
> Thanks and Regards
> Sharan
>  
>  
> This e-mail and its attachments contain confidential information from HUAWEI, 
> which 
> is intended only for the person or entity whose address is listed above. Any 
> use of the 
> information contained herein in any way (including, but not limited to, total 
> or partial 
> disclosure, reproduction, or dissemination) by persons other than the 
> intended 
> recipient(s) is prohibited. If you receive this e-mail in error, please 
> notify the sender by 
> phone or email immediately and delete it!
>  
> From: Reynold Xin [mailto:r...@databricks.com] 
> Sent: 03 October 2018 14:29
> To: dev 
> Subject: welcome a new batch of committers
>  
> Hi all,
>  
> The Apache Spark PMC has recently voted to add several new committers to the 
> project, for their contributions:
>  
> - Shane Knapp (contributor to infra)
> - Dongjoon Hyun (contributor to ORC support and other parts of Spark)
> - Kazuaki Ishizaki (contributor to Spark SQL)
> - Xingbo Jiang (contributor to Spark Core and SQL)
> - Yinan Li (contributor to Spark on Kubernetes)
> - Takeshi Yamamuro (contributor to Spark SQL)
>  
> Please join me in welcoming them!
>  


Re: welcome a new batch of committers

2018-10-03 Thread Kousuke Saruta

Congratulations!

- Kousuke

On 2018/10/04 0:30, Gengliang wrote:

Congratulations to all !

On Wed, Oct 3, 2018 at 10:06 PM Wenchen Fan mailto:cloud0...@gmail.com>> wrote:

Congratulations!

On Wed, Oct 3, 2018 at 9:24 PM Madhusudanan Kandasamy mailto:madhusuda...@in.ibm.com>> wrote:

Congratulations Ishizaki-san..

Thanks,
Madhu.
_
-Denny Lee mailto:denny.g@gmail.com>> 
wrote: -
To: Dongjin Lee mailto:dong...@apache.org>>
From: Denny Lee mailto:denny.g@gmail.com>>
Date: 10/03/2018 06:31PM
Cc: dev mailto:dev@spark.apache.org>>
Subject: Re: welcome a new batch of committers

Congratulations!

On Wed, Oct 3, 2018 at 05:26 Dongjin Lee mailto:dong...@apache.org>> wrote:

Congratulations to ALL!!

- Dongjin

On Wed, Oct 3, 2018 at 7:48 PM Jack Kolokasis mailto:koloka...@ics.forth.gr>> wrote:

Congratulations to all !!

-Iacovos


On 03/10/2018 12:54 μμ, Ted Yu wrote:

Congratulations to all !

 Original message 
From: Jungtaek Lim  

Date: 10/3/18 2:41 AM (GMT-08:00)
To: Marco Gaido  

Cc: dev  
Subject: Re: welcome a new batch of committers

Congrats all! You all deserved it.
On Wed, 3 Oct 2018 at 6:35 PM Marco Gaido mailto:marcogaid...@gmail.com>> wrote:

Congrats you all!

Il giorno mer 3 ott 2018 alle ore 11:29 Liang-Chi Hsieh 
mailto:vii...@gmail.com>> ha scritto:


Congratulations to all new committers!


rxin wrote
> Hi all,
>
> The Apache Spark PMC has recently voted to add 
several new committers to
> the project, for their contributions:
>
> - Shane Knapp (contributor to infra)
> - Dongjoon Hyun (contributor to ORC support and other 
parts of Spark)
> - Kazuaki Ishizaki (contributor to Spark SQL)
> - Xingbo Jiang (contributor to Spark Core and SQL)
> - Yinan Li (contributor to Spark on Kubernetes)
> - Takeshi Yamamuro (contributor to Spark SQL)
>
> Please join me in welcoming them!





--
Sent from: 
http://apache-spark-developers-list.1001551.n3.nabble.com/


-
To unsubscribe e-mail: dev-unsubscr...@spark.apache.org 




-- 
Iacovos Kolokasis

Email: koloka...@ics.forth.gr 
Postgraduate Student CSD, University of Crete
Researcher in CARV Lab ICS FORTH

-- 
/

*Dongjin Lee*
/
/

/A hitchhiker in the mathematical world./
//
//
github://github.com/dongjinleekr 
//
/
linkedin: kr.linkedin.com/in/dongjinleekr 

/
slideshare: www.slideshare.net/dongjinleekr 

/


- To unsubscribe e-mail: dev-unsubscr...@spark.apache.org  





Re: Back to SQL

2018-10-03 Thread Reynold Xin
No we used to have that (for views) but it wasn’t working well enough so we
removed it.

On Wed, Oct 3, 2018 at 6:41 PM Olivier Girardot <
o.girar...@lateral-thoughts.com> wrote:

> Hi everyone,
> Is there any known way to go from a Spark SQL Logical Plan (optimised ?)
> Back to a SQL query ?
>
> Regards,
>
> Olivier.
>
-- 
--
excuse the brevity and lower case due to wrist injury


Back to SQL

2018-10-03 Thread Olivier Girardot
Hi everyone,
Is there any known way to go from a Spark SQL Logical Plan (optimised ?)
Back to a SQL query ?

Regards,

Olivier.


Re: welcome a new batch of committers

2018-10-03 Thread Arun Mahadevan
Congratulations everyone!

On Wed, 3 Oct 2018 at 09:16, Dilip Biswal  wrote:

> Congratulations to Shane Knapp, Dongjoon Hyun, Kazuaki Ishizaki, Xingbo
> Jiang,  Yinan Li  and Takeshi Yamamuro !!
>
> Regards,
> Dilip Biswal
> Tel: 408-463-4980
> dbis...@us.ibm.com
>
>
>
> - Original message -
> From: Reynold Xin 
> To: dev 
> Cc:
> Subject: welcome a new batch of committers
> Date: Wed, Oct 3, 2018 1:59 AM
>
> Hi all,
>
> The Apache Spark PMC has recently voted to add several new committers to
> the project, for their contributions:
>
> - Shane Knapp (contributor to infra)
> - Dongjoon Hyun (contributor to ORC support and other parts of Spark)
> - Kazuaki Ishizaki (contributor to Spark SQL)
> - Xingbo Jiang (contributor to Spark Core and SQL)
> - Yinan Li (contributor to Spark on Kubernetes)
> - Takeshi Yamamuro (contributor to Spark SQL)
>
> Please join me in welcoming them!
>
>
>
>
> - To
> unsubscribe e-mail: dev-unsubscr...@spark.apache.org


Re: welcome a new batch of committers

2018-10-03 Thread Dilip Biswal
Congratulations to Shane Knapp, Dongjoon Hyun, Kazuaki Ishizaki, Xingbo Jiang,  Yinan Li  and Takeshi Yamamuro !!
 
Regards,Dilip BiswalTel: 408-463-4980dbis...@us.ibm.com
 
 
- Original message -From: Reynold Xin To: dev Cc:Subject: welcome a new batch of committersDate: Wed, Oct 3, 2018 1:59 AM 
Hi all,
 
The Apache Spark PMC has recently voted to add several new committers to the project, for their contributions:
 
- Shane Knapp (contributor to infra)
- Dongjoon Hyun (contributor to ORC support and other parts of Spark)
- Kazuaki Ishizaki (contributor to Spark SQL)
- Xingbo Jiang (contributor to Spark Core and SQL)
- Yinan Li (contributor to Spark on Kubernetes)
- Takeshi Yamamuro (contributor to Spark SQL)
 
Please join me in welcoming them!
 
 


-
To unsubscribe e-mail: dev-unsubscr...@spark.apache.org



Re: welcome a new batch of committers

2018-10-03 Thread Gengliang
Congratulations to all !

On Wed, Oct 3, 2018 at 10:06 PM Wenchen Fan  wrote:

> Congratulations!
>
> On Wed, Oct 3, 2018 at 9:24 PM Madhusudanan Kandasamy <
> madhusuda...@in.ibm.com> wrote:
>
>> Congratulations Ishizaki-san..
>>
>> Thanks,
>> Madhu.
>> _
>> -Denny Lee  wrote: -
>> To: Dongjin Lee 
>> From: Denny Lee 
>> Date: 10/03/2018 06:31PM
>> Cc: dev 
>> Subject: Re: welcome a new batch of committers
>>
>> Congratulations!
>>
>> On Wed, Oct 3, 2018 at 05:26 Dongjin Lee  wrote:
>>
>>> Congratulations to ALL!!
>>>
>>> - Dongjin
>>>
>>> On Wed, Oct 3, 2018 at 7:48 PM Jack Kolokasis 
>>> wrote:
>>>
 Congratulations to all !!

 -Iacovos

 On 03/10/2018 12:54 μμ, Ted Yu wrote:

 Congratulations to all !

  Original message 
 From: Jungtaek Lim  
 Date: 10/3/18 2:41 AM (GMT-08:00)
 To: Marco Gaido  
 Cc: dev  
 Subject: Re: welcome a new batch of committers

 Congrats all! You all deserved it.
 On Wed, 3 Oct 2018 at 6:35 PM Marco Gaido 
 wrote:

> Congrats you all!
>
> Il giorno mer 3 ott 2018 alle ore 11:29 Liang-Chi Hsieh <
> vii...@gmail.com> ha scritto:
>
>>
>> Congratulations to all new committers!
>>
>>
>> rxin wrote
>> > Hi all,
>> >
>> > The Apache Spark PMC has recently voted to add several new
>> committers to
>> > the project, for their contributions:
>> >
>> > - Shane Knapp (contributor to infra)
>> > - Dongjoon Hyun (contributor to ORC support and other parts of
>> Spark)
>> > - Kazuaki Ishizaki (contributor to Spark SQL)
>> > - Xingbo Jiang (contributor to Spark Core and SQL)
>> > - Yinan Li (contributor to Spark on Kubernetes)
>> > - Takeshi Yamamuro (contributor to Spark SQL)
>> >
>> > Please join me in welcoming them!
>>
>>
>>
>>
>>
>> --
>> Sent from: http://apache-spark-developers-list.1001551.n3.nabble.com/
>>
>> -
>> To unsubscribe e-mail: dev-unsubscr...@spark.apache.org
>>
>>
 --
 Iacovos Kolokasis
 Email: koloka...@ics.forth.gr
 Postgraduate Student CSD, University of Crete
 Researcher in CARV Lab ICS FORTH

>>> --
>>> *Dongjin Lee*
>>>
>>> *A hitchhiker in the mathematical world.*
>>>
>>> *github:  github.com/dongjinleekr
>>> linkedin: kr.linkedin.com/in/dongjinleekr
>>> slideshare: 
>>> www.slideshare.net/dongjinleekr
>>> *
>>>
>>
>> - To
>> unsubscribe e-mail: dev-unsubscr...@spark.apache.org
>
>


Re: welcome a new batch of committers

2018-10-03 Thread Stavros Kontopoulos
Congrats!

On Wednesday, October 3, 2018, sujith chacko 
wrote:

> Great news Congrats all for achieving the feat !!!
>
> On Wed, 3 Oct 2018 at 2:29 PM, Reynold Xin  wrote:
>
>> Hi all,
>>
>> The Apache Spark PMC has recently voted to add several new committers to
>> the project, for their contributions:
>>
>> - Shane Knapp (contributor to infra)
>> - Dongjoon Hyun (contributor to ORC support and other parts of Spark)
>> - Kazuaki Ishizaki (contributor to Spark SQL)
>> - Xingbo Jiang (contributor to Spark Core and SQL)
>> - Yinan Li (contributor to Spark on Kubernetes)
>> - Takeshi Yamamuro (contributor to Spark SQL)
>>
>> Please join me in welcoming them!
>>
>>


Re: welcome a new batch of committers

2018-10-03 Thread sujith chacko
Great news Congrats all for achieving the feat !!!

On Wed, 3 Oct 2018 at 2:29 PM, Reynold Xin  wrote:

> Hi all,
>
> The Apache Spark PMC has recently voted to add several new committers to
> the project, for their contributions:
>
> - Shane Knapp (contributor to infra)
> - Dongjoon Hyun (contributor to ORC support and other parts of Spark)
> - Kazuaki Ishizaki (contributor to Spark SQL)
> - Xingbo Jiang (contributor to Spark Core and SQL)
> - Yinan Li (contributor to Spark on Kubernetes)
> - Takeshi Yamamuro (contributor to Spark SQL)
>
> Please join me in welcoming them!
>
>


Re: welcome a new batch of committers

2018-10-03 Thread Wenchen Fan
Congratulations!

On Wed, Oct 3, 2018 at 9:24 PM Madhusudanan Kandasamy <
madhusuda...@in.ibm.com> wrote:

> Congratulations Ishizaki-san..
>
> Thanks,
> Madhu.
> _
> -Denny Lee  wrote: -
> To: Dongjin Lee 
> From: Denny Lee 
> Date: 10/03/2018 06:31PM
> Cc: dev 
> Subject: Re: welcome a new batch of committers
>
> Congratulations!
>
> On Wed, Oct 3, 2018 at 05:26 Dongjin Lee  wrote:
>
>> Congratulations to ALL!!
>>
>> - Dongjin
>>
>> On Wed, Oct 3, 2018 at 7:48 PM Jack Kolokasis 
>> wrote:
>>
>>> Congratulations to all !!
>>>
>>> -Iacovos
>>>
>>> On 03/10/2018 12:54 μμ, Ted Yu wrote:
>>>
>>> Congratulations to all !
>>>
>>>  Original message 
>>> From: Jungtaek Lim  
>>> Date: 10/3/18 2:41 AM (GMT-08:00)
>>> To: Marco Gaido  
>>> Cc: dev  
>>> Subject: Re: welcome a new batch of committers
>>>
>>> Congrats all! You all deserved it.
>>> On Wed, 3 Oct 2018 at 6:35 PM Marco Gaido 
>>> wrote:
>>>
 Congrats you all!

 Il giorno mer 3 ott 2018 alle ore 11:29 Liang-Chi Hsieh <
 vii...@gmail.com> ha scritto:

>
> Congratulations to all new committers!
>
>
> rxin wrote
> > Hi all,
> >
> > The Apache Spark PMC has recently voted to add several new
> committers to
> > the project, for their contributions:
> >
> > - Shane Knapp (contributor to infra)
> > - Dongjoon Hyun (contributor to ORC support and other parts of Spark)
> > - Kazuaki Ishizaki (contributor to Spark SQL)
> > - Xingbo Jiang (contributor to Spark Core and SQL)
> > - Yinan Li (contributor to Spark on Kubernetes)
> > - Takeshi Yamamuro (contributor to Spark SQL)
> >
> > Please join me in welcoming them!
>
>
>
>
>
> --
> Sent from: http://apache-spark-developers-list.1001551.n3.nabble.com/
>
> -
> To unsubscribe e-mail: dev-unsubscr...@spark.apache.org
>
>
>>> --
>>> Iacovos Kolokasis
>>> Email: koloka...@ics.forth.gr
>>> Postgraduate Student CSD, University of Crete
>>> Researcher in CARV Lab ICS FORTH
>>>
>> --
>> *Dongjin Lee*
>>
>> *A hitchhiker in the mathematical world.*
>>
>> *github:  github.com/dongjinleekr
>> linkedin: kr.linkedin.com/in/dongjinleekr
>> slideshare: 
>> www.slideshare.net/dongjinleekr
>> *
>>
>
> - To
> unsubscribe e-mail: dev-unsubscr...@spark.apache.org


Re: welcome a new batch of committers

2018-10-03 Thread Madhusudanan Kandasamy
Congratulations Ishizaki-san..Thanks,Madhu._-Denny Lee  wrote: -To: Dongjin Lee From: Denny Lee Date: 10/03/2018 06:31PMCc: dev Subject: Re: welcome a new batch of committersCongratulations! On Wed, Oct 3, 2018 at 05:26 Dongjin Lee  wrote:Congratulations to ALL!!- DongjinOn Wed, Oct 3, 2018 at 7:48 PM Jack Kolokasis  wrote:  

  
  Congratulations to all !!-IacovosOn 03/10/2018 12:54 μμ, Ted Yu wrote:  
  Congratulations to all !
   Original message From: Jungtaek Lim  Date: 10/3/18 2:41 AM (GMT-08:00) To: Marco Gaido  Cc: dev  Subject: Re: welcome a new batch of committers Congrats all! You all deserved it.  On Wed, 3 Oct 2018 at 6:35 PM Marco Gaido 
  wrote:  Congrats you all!  Il giorno mer 3 ott 2018 alle ore 11:29
  Liang-Chi Hsieh 
  ha scritto:  Congratulations to all new committers!  rxin wrote  > Hi all,  >   > The Apache Spark PMC has recently voted to add
  several new committers to  > the project, for their contributions:  >   > - Shane Knapp (contributor to infra)  > - Dongjoon Hyun (contributor to ORC support and other
  parts of Spark)  > - Kazuaki Ishizaki (contributor to Spark SQL)  > - Xingbo Jiang (contributor to Spark Core and SQL)  > - Yinan Li (contributor to Spark on Kubernetes)  > - Takeshi Yamamuro (contributor to Spark SQL)  >   > Please join me in welcoming them!--  Sent from: http://apache-spark-developers-list.1001551.n3.nabble.com/  -  To unsubscribe e-mail: dev-unsubscr...@spark.apache.org  -- Iacovos KolokasisEmail: koloka...@ics.forth.gr Postgraduate Student CSD, University of CreteResearcher in CARV Lab ICS FORTH  
-- Dongjin LeeA hitchhiker in the mathematical world.github: github.com/dongjinleekrlinkedin: kr.linkedin.com/in/dongjinleekrslideshare: www.slideshare.net/dongjinleekr


-
To unsubscribe e-mail: dev-unsubscr...@spark.apache.org



Re: welcome a new batch of committers

2018-10-03 Thread Denny Lee
Congratulations!

On Wed, Oct 3, 2018 at 05:26 Dongjin Lee  wrote:

> Congratulations to ALL!!
>
> - Dongjin
>
> On Wed, Oct 3, 2018 at 7:48 PM Jack Kolokasis 
> wrote:
>
>> Congratulations to all !!
>>
>> -Iacovos
>>
>> On 03/10/2018 12:54 μμ, Ted Yu wrote:
>>
>> Congratulations to all !
>>
>>  Original message 
>> From: Jungtaek Lim  
>> Date: 10/3/18 2:41 AM (GMT-08:00)
>> To: Marco Gaido  
>> Cc: dev  
>> Subject: Re: welcome a new batch of committers
>>
>> Congrats all! You all deserved it.
>> On Wed, 3 Oct 2018 at 6:35 PM Marco Gaido  wrote:
>>
>>> Congrats you all!
>>>
>>> Il giorno mer 3 ott 2018 alle ore 11:29 Liang-Chi Hsieh <
>>> vii...@gmail.com> ha scritto:
>>>

 Congratulations to all new committers!


 rxin wrote
 > Hi all,
 >
 > The Apache Spark PMC has recently voted to add several new committers
 to
 > the project, for their contributions:
 >
 > - Shane Knapp (contributor to infra)
 > - Dongjoon Hyun (contributor to ORC support and other parts of Spark)
 > - Kazuaki Ishizaki (contributor to Spark SQL)
 > - Xingbo Jiang (contributor to Spark Core and SQL)
 > - Yinan Li (contributor to Spark on Kubernetes)
 > - Takeshi Yamamuro (contributor to Spark SQL)
 >
 > Please join me in welcoming them!





 --
 Sent from: http://apache-spark-developers-list.1001551.n3.nabble.com/

 -
 To unsubscribe e-mail: dev-unsubscr...@spark.apache.org


>> --
>> Iacovos Kolokasis
>> Email: koloka...@ics.forth.gr
>> Postgraduate Student CSD, University of Crete
>> Researcher in CARV Lab ICS FORTH
>>
>> --
> *Dongjin Lee*
>
> *A hitchhiker in the mathematical world.*
>
> *github:  github.com/dongjinleekr
> linkedin: kr.linkedin.com/in/dongjinleekr
> slideshare: 
> www.slideshare.net/dongjinleekr
> *
>


Re: welcome a new batch of committers

2018-10-03 Thread Dongjin Lee
Congratulations to ALL!!

- Dongjin

On Wed, Oct 3, 2018 at 7:48 PM Jack Kolokasis 
wrote:

> Congratulations to all !!
>
> -Iacovos
>
> On 03/10/2018 12:54 μμ, Ted Yu wrote:
>
> Congratulations to all !
>
>  Original message 
> From: Jungtaek Lim  
> Date: 10/3/18 2:41 AM (GMT-08:00)
> To: Marco Gaido  
> Cc: dev  
> Subject: Re: welcome a new batch of committers
>
> Congrats all! You all deserved it.
> On Wed, 3 Oct 2018 at 6:35 PM Marco Gaido  wrote:
>
>> Congrats you all!
>>
>> Il giorno mer 3 ott 2018 alle ore 11:29 Liang-Chi Hsieh 
>> ha scritto:
>>
>>>
>>> Congratulations to all new committers!
>>>
>>>
>>> rxin wrote
>>> > Hi all,
>>> >
>>> > The Apache Spark PMC has recently voted to add several new committers
>>> to
>>> > the project, for their contributions:
>>> >
>>> > - Shane Knapp (contributor to infra)
>>> > - Dongjoon Hyun (contributor to ORC support and other parts of Spark)
>>> > - Kazuaki Ishizaki (contributor to Spark SQL)
>>> > - Xingbo Jiang (contributor to Spark Core and SQL)
>>> > - Yinan Li (contributor to Spark on Kubernetes)
>>> > - Takeshi Yamamuro (contributor to Spark SQL)
>>> >
>>> > Please join me in welcoming them!
>>>
>>>
>>>
>>>
>>>
>>> --
>>> Sent from: http://apache-spark-developers-list.1001551.n3.nabble.com/
>>>
>>> -
>>> To unsubscribe e-mail: dev-unsubscr...@spark.apache.org
>>>
>>>
> --
> Iacovos Kolokasis
> Email: koloka...@ics.forth.gr
> Postgraduate Student CSD, University of Crete
> Researcher in CARV Lab ICS FORTH
>
> --
*Dongjin Lee*

*A hitchhiker in the mathematical world.*

*github:  github.com/dongjinleekr
linkedin: kr.linkedin.com/in/dongjinleekr
slideshare:
www.slideshare.net/dongjinleekr
*


Re: welcome a new batch of committers

2018-10-03 Thread Jack Kolokasis

Congratulations to all !!

-Iacovos


On 03/10/2018 12:54 μμ, Ted Yu wrote:

Congratulations to all !

 Original message 
From: Jungtaek Lim 
Date: 10/3/18 2:41 AM (GMT-08:00)
To: Marco Gaido 
Cc: dev 
Subject: Re: welcome a new batch of committers

Congrats all! You all deserved it.
On Wed, 3 Oct 2018 at 6:35 PM Marco Gaido > wrote:


Congrats you all!

Il giorno mer 3 ott 2018 alle ore 11:29 Liang-Chi Hsieh
mailto:vii...@gmail.com>> ha scritto:


Congratulations to all new committers!


rxin wrote
> Hi all,
>
> The Apache Spark PMC has recently voted to add several new
committers to
> the project, for their contributions:
>
> - Shane Knapp (contributor to infra)
> - Dongjoon Hyun (contributor to ORC support and other parts
of Spark)
> - Kazuaki Ishizaki (contributor to Spark SQL)
> - Xingbo Jiang (contributor to Spark Core and SQL)
> - Yinan Li (contributor to Spark on Kubernetes)
> - Takeshi Yamamuro (contributor to Spark SQL)
>
> Please join me in welcoming them!





--
Sent from:
http://apache-spark-developers-list.1001551.n3.nabble.com/

-
To unsubscribe e-mail: dev-unsubscr...@spark.apache.org




--
Iacovos Kolokasis
Email: koloka...@ics.forth.gr
Postgraduate Student CSD, University of Crete
Researcher in CARV Lab ICS FORTH



Re: welcome a new batch of committers

2018-10-03 Thread Ted Yu
Congratulations to all !
 Original message From: Jungtaek Lim  Date: 
10/3/18  2:41 AM  (GMT-08:00) To: Marco Gaido  Cc: dev 
 Subject: Re: welcome a new batch of committers 
Congrats all! You all deserved it.
On Wed, 3 Oct 2018 at 6:35 PM Marco Gaido  wrote:
Congrats you all!

Il giorno mer 3 ott 2018 alle ore 11:29 Liang-Chi Hsieh  ha 
scritto:


Congratulations to all new committers!





rxin wrote

> Hi all,

> 

> The Apache Spark PMC has recently voted to add several new committers to

> the project, for their contributions:

> 

> - Shane Knapp (contributor to infra)

> - Dongjoon Hyun (contributor to ORC support and other parts of Spark)

> - Kazuaki Ishizaki (contributor to Spark SQL)

> - Xingbo Jiang (contributor to Spark Core and SQL)

> - Yinan Li (contributor to Spark on Kubernetes)

> - Takeshi Yamamuro (contributor to Spark SQL)

> 

> Please join me in welcoming them!











--

Sent from: http://apache-spark-developers-list.1001551.n3.nabble.com/



-

To unsubscribe e-mail: dev-unsubscr...@spark.apache.org







Re: welcome a new batch of committers

2018-10-03 Thread Jungtaek Lim
Congrats all! You all deserved it.
On Wed, 3 Oct 2018 at 6:35 PM Marco Gaido  wrote:

> Congrats you all!
>
> Il giorno mer 3 ott 2018 alle ore 11:29 Liang-Chi Hsieh 
> ha scritto:
>
>>
>> Congratulations to all new committers!
>>
>>
>> rxin wrote
>> > Hi all,
>> >
>> > The Apache Spark PMC has recently voted to add several new committers to
>> > the project, for their contributions:
>> >
>> > - Shane Knapp (contributor to infra)
>> > - Dongjoon Hyun (contributor to ORC support and other parts of Spark)
>> > - Kazuaki Ishizaki (contributor to Spark SQL)
>> > - Xingbo Jiang (contributor to Spark Core and SQL)
>> > - Yinan Li (contributor to Spark on Kubernetes)
>> > - Takeshi Yamamuro (contributor to Spark SQL)
>> >
>> > Please join me in welcoming them!
>>
>>
>>
>>
>>
>> --
>> Sent from: http://apache-spark-developers-list.1001551.n3.nabble.com/
>>
>> -
>> To unsubscribe e-mail: dev-unsubscr...@spark.apache.org
>>
>>


Re: welcome a new batch of committers

2018-10-03 Thread Takuya UESHIN
Congratulations!


On Wed, Oct 3, 2018 at 6:35 PM Marco Gaido  wrote:

> Congrats you all!
>
> Il giorno mer 3 ott 2018 alle ore 11:29 Liang-Chi Hsieh 
> ha scritto:
>
>>
>> Congratulations to all new committers!
>>
>>
>> rxin wrote
>> > Hi all,
>> >
>> > The Apache Spark PMC has recently voted to add several new committers to
>> > the project, for their contributions:
>> >
>> > - Shane Knapp (contributor to infra)
>> > - Dongjoon Hyun (contributor to ORC support and other parts of Spark)
>> > - Kazuaki Ishizaki (contributor to Spark SQL)
>> > - Xingbo Jiang (contributor to Spark Core and SQL)
>> > - Yinan Li (contributor to Spark on Kubernetes)
>> > - Takeshi Yamamuro (contributor to Spark SQL)
>> >
>> > Please join me in welcoming them!
>>
>>
>>
>>
>>
>> --
>> Sent from: http://apache-spark-developers-list.1001551.n3.nabble.com/
>>
>> -
>> To unsubscribe e-mail: dev-unsubscr...@spark.apache.org
>>
>>

-- 
Takuya UESHIN
Tokyo, Japan

http://twitter.com/ueshin


Re: welcome a new batch of committers

2018-10-03 Thread Marco Gaido
Congrats you all!

Il giorno mer 3 ott 2018 alle ore 11:29 Liang-Chi Hsieh 
ha scritto:

>
> Congratulations to all new committers!
>
>
> rxin wrote
> > Hi all,
> >
> > The Apache Spark PMC has recently voted to add several new committers to
> > the project, for their contributions:
> >
> > - Shane Knapp (contributor to infra)
> > - Dongjoon Hyun (contributor to ORC support and other parts of Spark)
> > - Kazuaki Ishizaki (contributor to Spark SQL)
> > - Xingbo Jiang (contributor to Spark Core and SQL)
> > - Yinan Li (contributor to Spark on Kubernetes)
> > - Takeshi Yamamuro (contributor to Spark SQL)
> >
> > Please join me in welcoming them!
>
>
>
>
>
> --
> Sent from: http://apache-spark-developers-list.1001551.n3.nabble.com/
>
> -
> To unsubscribe e-mail: dev-unsubscr...@spark.apache.org
>
>


Re: welcome a new batch of committers

2018-10-03 Thread Liang-Chi Hsieh


Congratulations to all new committers!


rxin wrote
> Hi all,
> 
> The Apache Spark PMC has recently voted to add several new committers to
> the project, for their contributions:
> 
> - Shane Knapp (contributor to infra)
> - Dongjoon Hyun (contributor to ORC support and other parts of Spark)
> - Kazuaki Ishizaki (contributor to Spark SQL)
> - Xingbo Jiang (contributor to Spark Core and SQL)
> - Yinan Li (contributor to Spark on Kubernetes)
> - Takeshi Yamamuro (contributor to Spark SQL)
> 
> Please join me in welcoming them!





--
Sent from: http://apache-spark-developers-list.1001551.n3.nabble.com/

-
To unsubscribe e-mail: dev-unsubscr...@spark.apache.org



Re: welcome a new batch of committers

2018-10-03 Thread Hyukjin Kwon
Yay! you guys all individuals do deserve it. Congratulations!

2018년 10월 3일 (수) 오후 4:59, Reynold Xin 님이 작성:

> Hi all,
>
> The Apache Spark PMC has recently voted to add several new committers to
> the project, for their contributions:
>
> - Shane Knapp (contributor to infra)
> - Dongjoon Hyun (contributor to ORC support and other parts of Spark)
> - Kazuaki Ishizaki (contributor to Spark SQL)
> - Xingbo Jiang (contributor to Spark Core and SQL)
> - Yinan Li (contributor to Spark on Kubernetes)
> - Takeshi Yamamuro (contributor to Spark SQL)
>
> Please join me in welcoming them!
>
>


RE: welcome a new batch of committers

2018-10-03 Thread Sharanabasappa G Keriwaddi
WOW.. Great news. Congratulations to all new committers.

Thanks and Regards
Sharan



This e-mail and its attachments contain confidential information from HUAWEI, 
which
is intended only for the person or entity whose address is listed above. Any 
use of the
information contained herein in any way (including, but not limited to, total 
or partial
disclosure, reproduction, or dissemination) by persons other than the intended
recipient(s) is prohibited. If you receive this e-mail in error, please notify 
the sender by
phone or email immediately and delete it!

From: Reynold Xin [mailto:r...@databricks.com]
Sent: 03 October 2018 14:29
To: dev 
Subject: welcome a new batch of committers

Hi all,

The Apache Spark PMC has recently voted to add several new committers to the 
project, for their contributions:

- Shane Knapp (contributor to infra)
- Dongjoon Hyun (contributor to ORC support and other parts of Spark)
- Kazuaki Ishizaki (contributor to Spark SQL)
- Xingbo Jiang (contributor to Spark Core and SQL)
- Yinan Li (contributor to Spark on Kubernetes)
- Takeshi Yamamuro (contributor to Spark SQL)

Please join me in welcoming them!



Re: welcome a new batch of committers

2018-10-03 Thread Daniel Mateus Pires
That's great news; welcome everyone! :)

Daniel

On Wed, 3 Oct 2018 at 09:59, Reynold Xin  wrote:

> Hi all,
>
> The Apache Spark PMC has recently voted to add several new committers to
> the project, for their contributions:
>
> - Shane Knapp (contributor to infra)
> - Dongjoon Hyun (contributor to ORC support and other parts of Spark)
> - Kazuaki Ishizaki (contributor to Spark SQL)
> - Xingbo Jiang (contributor to Spark Core and SQL)
> - Yinan Li (contributor to Spark on Kubernetes)
> - Takeshi Yamamuro (contributor to Spark SQL)
>
> Please join me in welcoming them!
>
>


welcome a new batch of committers

2018-10-03 Thread Reynold Xin
Hi all,

The Apache Spark PMC has recently voted to add several new committers to
the project, for their contributions:

- Shane Knapp (contributor to infra)
- Dongjoon Hyun (contributor to ORC support and other parts of Spark)
- Kazuaki Ishizaki (contributor to Spark SQL)
- Xingbo Jiang (contributor to Spark Core and SQL)
- Yinan Li (contributor to Spark on Kubernetes)
- Takeshi Yamamuro (contributor to Spark SQL)

Please join me in welcoming them!