[Announce] Seattle Apache Beam Meetup Group

2019-08-01 Thread Aizhamal Nurmamat kyzy
Hello all,

I have just created a meetup group for Apache Beam in the Greater Seattle
Area [1]. Please join the group if you would like to be part of a local
community group, where we will organize periodic meetups with deep dives,
use cases, demos, and all sorts of content about Beam.

We are going to host our first Seattle meetup in September; stay tuned for
future updates!

Thanks,
Aizhamal
[1] https://www.meetup.com/Seattle-Apache-Beam-Meetup/


Re: [DISCUSS] Moving FakeBigQueryServices to main/ rather than test/

2019-08-01 Thread Reuven Lax
The only concern is that we somewhat regularly have changed those classes,
and I think we didn't want to have to support them as a stable interface.

On Thu, Aug 1, 2019 at 5:23 PM Pablo Estrada  wrote:

> I've started making the change in https://github.com/apache/beam/pull/9206,
> but I'm having some trouble with Api Surface tests. Some odd NPE.
> I'll try to debug further and see.
> Best
> -P.
>
> On Wed, Jul 31, 2019 at 7:46 PM Kenneth Knowles  wrote:
>
>> Publishing the "-tests" jar does not work for this purpose. The "test"
>> classifier means "these are tests". The classifier does not mean "this is
>> test related stuff". This is because "test" scope does not have transitive
>> dependencies resolved in the same way and does not work for shipping a
>> library to be used, at least with maven. (technically, you can make up any
>> classifier and it is the scoping of the deps that breaks things). To
>> publish test-related code for re-use as a library, you put it in the main/
>> section of an artifact, which you could name for testing if you like.
>>
>> The reason I know this in such detail is that Beam has done it the wrong
>> way multiple times.
>>
>> Kenn
>>
>> On Wed, Jul 31, 2019 at 1:12 AM Ryan Skraba  wrote:
>>
>>> Hello!  No objection to the move :/  But what do you think about
>>> publishing the test jar created in google-cloud-platform to be reused
>>> without moving the code to the main artifact jar?
>>>
>>> I admit that I'm familiar with this technique with maven, and not at
>>> all with gradle, but it's described here:
>>> https://maven.apache.org/guides/mini/guide-attached-tests.html  It
>>> relies on the classifier to distinguish between test classes and main
>>> classes.  Is this possible and/or easy with gradle?
>>>
>>> I've used this in the past to create "re-usable test artifacts" that
>>> remain independent from "real" code but tightly associated with the
>>> main artifact.
>>>
>>> I noticed that elasticsearch publishes main artifacts with `-test` in
>>> the artifact name as an alternative strategy (i.e. a separate
>>> project).
>>>
>>> All my best, Ryan
>>>
>>> On Wed, Jul 31, 2019 at 5:55 AM Mikhail Gryzykhin
>>>  wrote:
>>> >
>>> > +1
>>> > It is completely worth it.
>>> >
>>> > On Tue, Jul 30, 2019 at 8:50 PM Rui Wang  wrote:
>>> >>
>>> >> +1.
>>> >>
>>> >> I did something similar before: move TestBoundedTable to BeamSQL main
>>> to allow another module tests use it.
>>> >>
>>> >>
>>> >> -Rui
>>> >>
>>> >> On Tue, Jul 30, 2019 at 6:13 PM Pablo Estrada 
>>> wrote:
>>> >>>
>>> >>> Hello all,
>>> >>> I found some test utilities that we use to write unit tests for
>>> transforms that read/write to/from BigQuery. These are all the
>>> non-(*IT.java/*Test.java) classes in [1].
>>> >>>
>>> >>> I believe that users may want to write tests for their own pipelines
>>> that may rely on complex DynamicDestination logic (imagine streaming, or
>>> side inputs for on-the-fly schema computation, or other tricky issues).
>>> >>>
>>> >>> I think it makes sense to move these classes to
>>> org.apache.beam.io.gcp.bigquery.testing, and publish them in the release.
>>> Thoughts?
>>> >>>
>>> >>> -P.
>>> >>>
>>> >>> [1]
>>> https://github.com/apache/beam/tree/master/sdks/java/io/google-cloud-platform/src/test/java/org/apache/beam/sdk/io/gcp/bigquery
>>>
>>


Re: [DISCUSS] Moving FakeBigQueryServices to main/ rather than test/

2019-08-01 Thread Pablo Estrada
I've started making the change in https://github.com/apache/beam/pull/9206,
but I'm having some trouble with Api Surface tests. Some odd NPE.
I'll try to debug further and see.
Best
-P.

On Wed, Jul 31, 2019 at 7:46 PM Kenneth Knowles  wrote:

> Publishing the "-tests" jar does not work for this purpose. The "test"
> classifier means "these are tests". The classifier does not mean "this is
> test related stuff". This is because "test" scope does not have transitive
> dependencies resolved in the same way and does not work for shipping a
> library to be used, at least with maven. (technically, you can make up any
> classifier and it is the scoping of the deps that breaks things). To
> publish test-related code for re-use as a library, you put it in the main/
> section of an artifact, which you could name for testing if you like.
>
> The reason I know this in such detail is that Beam has done it the wrong
> way multiple times.
>
> Kenn
>
> On Wed, Jul 31, 2019 at 1:12 AM Ryan Skraba  wrote:
>
>> Hello!  No objection to the move :/  But what do you think about
>> publishing the test jar created in google-cloud-platform to be reused
>> without moving the code to the main artifact jar?
>>
>> I admit that I'm familiar with this technique with maven, and not at
>> all with gradle, but it's described here:
>> https://maven.apache.org/guides/mini/guide-attached-tests.html  It
>> relies on the classifier to distinguish between test classes and main
>> classes.  Is this possible and/or easy with gradle?
>>
>> I've used this in the past to create "re-usable test artifacts" that
>> remain independent from "real" code but tightly associated with the
>> main artifact.
>>
>> I noticed that elasticsearch publishes main artifacts with `-test` in
>> the artifact name as an alternative strategy (i.e. a separate
>> project).
>>
>> All my best, Ryan
>>
>> On Wed, Jul 31, 2019 at 5:55 AM Mikhail Gryzykhin
>>  wrote:
>> >
>> > +1
>> > It is completely worth it.
>> >
>> > On Tue, Jul 30, 2019 at 8:50 PM Rui Wang  wrote:
>> >>
>> >> +1.
>> >>
>> >> I did something similar before: move TestBoundedTable to BeamSQL main
>> to allow another module tests use it.
>> >>
>> >>
>> >> -Rui
>> >>
>> >> On Tue, Jul 30, 2019 at 6:13 PM Pablo Estrada 
>> wrote:
>> >>>
>> >>> Hello all,
>> >>> I found some test utilities that we use to write unit tests for
>> transforms that read/write to/from BigQuery. These are all the
>> non-(*IT.java/*Test.java) classes in [1].
>> >>>
>> >>> I believe that users may want to write tests for their own pipelines
>> that may rely on complex DynamicDestination logic (imagine streaming, or
>> side inputs for on-the-fly schema computation, or other tricky issues).
>> >>>
>> >>> I think it makes sense to move these classes to
>> org.apache.beam.io.gcp.bigquery.testing, and publish them in the release.
>> Thoughts?
>> >>>
>> >>> -P.
>> >>>
>> >>> [1]
>> https://github.com/apache/beam/tree/master/sdks/java/io/google-cloud-platform/src/test/java/org/apache/beam/sdk/io/gcp/bigquery
>>
>


Re: [ANNOUNCE] Beam 2.14.0 Released!

2019-08-01 Thread Chad Dombrova
Nice work all round!  I love the release blog format with the highlights
and links to issues.

-chad


On Thu, Aug 1, 2019 at 4:23 PM Anton Kedin  wrote:

> The Apache Beam team is pleased to announce the release of version 2.14.0.
>
> Apache Beam is an open source unified programming model to define and
> execute data processing pipelines, including ETL, batch and stream
> (continuous) processing. See https://beam.apache.org
>
> You can download the release here:
>
> https://beam.apache.org/get-started/downloads/
>
> This release includes bugfixes, features, and improvements detailed on
> the Beam blog: https://beam.apache.org/blog/2019/07/31/beam-2.14.0.html
>
> Thanks to everyone who contributed to this release, and we hope you enjoy
> using Beam 2.14.0.
>
> -- Anton Kedin, on behalf of The Apache Beam team
>


Re: [ANNOUNCE] New committer: Robert Burke

2019-08-01 Thread David Morávek
Congratulations Robert!

On Thu, Aug 1, 2019 at 8:44 PM Maximilian Michels  wrote:

> Go Robert! ;) Congrats
>
> On 30.07.19 19:38, Mark Liu wrote:
> > Congratulations Robert!
> >
> > On Thu, Jul 18, 2019 at 9:49 AM 송원욱  > > wrote:
> >
> > Congrats Robert!
> >
> >
> >   Wonook
> >
> >
> >
> > 2019년 7월 18일 (목) 오전 6:47, Kyle Weaver  > >님이 작성:
> >
> > +1 to faster Go SDK iteration! Well-deserved, Rebo
> >
> > Kyle Weaver | Software Engineer | github.com/ibzib
> >  | kcwea...@google.com
> >  | +1650203
> >
> >
> > On Wed, Jul 17, 2019 at 2:44 PM Robert Burke  > > wrote:
> >
> > Thanks all! Hopefully this does mean reduced latency to
> > merge when folks send me Go SDK reviews. Let's get Beam
> GOing!
> >
> > On Wed, Jul 17, 2019, 11:22 AM Melissa Pashniak
> > mailto:meliss...@google.com>> wrote:
> >
> >
> > Congratulations!
> >
> >
> > On Wed, Jul 17, 2019 at 6:06 AM Alexey Romanenko
> >  > > wrote:
> >
> > Congratulations, Robert!
> >
> > > On 17 Jul 2019, at 14:49, Tim Robertson
> > >  > > > wrote:
> > >
> > > Congratulations Robert!
> > >
> > > On Wed, Jul 17, 2019 at 2:47 PM Gleb Kanterov
> > > mailto:g...@spotify.com>>
> wrote:
> > >
> > > Congratulations, Robert!
> > >
> > > On Wed, Jul 17, 2019 at 1:50 PM Robert
> > > Bradshaw  > > > wrote:
> > >
> > > Congratulations!
> > >
> > > On Wed, Jul 17, 2019, 12:56 PM Katarzyna
> > > Kucharczyk  > > > wrote:
> > >
> > > Congratulations! :)
> > >
> > > On Wed, Jul 17, 2019 at 12:46 PM
> > > Michał Walenia
> > >  > > >
> > > wrote:
> > >
> > > Congratulations, Robert! :)
> > >
> > > On Wed, Jul 17, 2019 at 12:45 PM
> > > Łukasz Gajowy  > > >
> wrote:
> > >
> > > Congratulations! :)
> > >
> > > śr., 17 lip 2019 o
> > > 04:30 Rakesh Kumar
> > >  > > >
> > > napisał(a):
> > >
> > > Congrats Rob!!!
> > >
> > > On Tue, Jul 16, 2019 at
> > > 10:24 AM Ahmet Altay
> > >  > > >
> > > wrote:
> > >
> > > Hi,
> > >
> > > Please join me and the
> > > rest of the Beam PMC
> > > in welcoming a
> > > new committer: Robert
> > > Burke.
> > >
> > > Robert has been
> > > contributing to Beam
> > > and actively involved
> > > in the community for
> > > over a year. He has
> > > been actively working
> > > on Go SDK, helping
> > > users, and making it
> > > easier for others to
> > > contribute [1].
> > >
> > > In consideration of
> > > Robert's
> > > contributions, the
> 

Re: [ANNOUNCE] New committer: Robert Burke

2019-08-01 Thread Maximilian Michels
Go Robert! ;) Congrats

On 30.07.19 19:38, Mark Liu wrote:
> Congratulations Robert!
>
> On Thu, Jul 18, 2019 at 9:49 AM 송원욱  > wrote:
>
>     Congrats Robert!
>
>
>   Wonook
>
>
>
>     2019년 7월 18일 (목) 오전 6:47, Kyle Weaver      >님이 작성:
>
>     +1 to faster Go SDK iteration! Well-deserved, Rebo
>
>     Kyle Weaver | Software Engineer | github.com/ibzib
>      | kcwea...@google.com
>      | +1650203
>
>
>     On Wed, Jul 17, 2019 at 2:44 PM Robert Burke      > wrote:
>
>     Thanks all! Hopefully this does mean reduced latency to
>     merge when folks send me Go SDK reviews. Let's get Beam GOing!
>
>     On Wed, Jul 17, 2019, 11:22 AM Melissa Pashniak
>     mailto:meliss...@google.com>> wrote:
>
>
>     Congratulations!
>
>
>     On Wed, Jul 17, 2019 at 6:06 AM Alexey Romanenko
>          > wrote:
>
>     Congratulations, Robert!
>
> > On 17 Jul 2019, at 14:49, Tim Robertson
> >  > > wrote:
> >
> > Congratulations Robert!
> >
> > On Wed, Jul 17, 2019 at 2:47 PM Gleb Kanterov
> > mailto:g...@spotify.com>> wrote:
> >
> > Congratulations, Robert!
> >
> > On Wed, Jul 17, 2019 at 1:50 PM Robert
> > Bradshaw  > > wrote:
> >
> > Congratulations!
> >
> > On Wed, Jul 17, 2019, 12:56 PM Katarzyna
> > Kucharczyk  > > wrote:
> >
> > Congratulations! :)
> >
> > On Wed, Jul 17, 2019 at 12:46 PM
> > Michał Walenia
> >  > >
> > wrote:
> >
> > Congratulations, Robert! :)
> >
> > On Wed, Jul 17, 2019 at 12:45 PM
> > Łukasz Gajowy  > > wrote:
> >
> > Congratulations! :)
> >
> > śr., 17 lip 2019 o
> > 04:30 Rakesh Kumar
> >  > >
> > napisał(a):
> >
> > Congrats Rob!!!
> >
> > On Tue, Jul 16, 2019 at
> > 10:24 AM Ahmet Altay
> >  > >
> > wrote:
> >
> > Hi,
> >
> > Please join me and the
> > rest of the Beam PMC
> > in welcoming a
> > new committer: Robert
> > Burke.
> >
> > Robert has been
> > contributing to Beam
> > and actively involved
> > in the community for
> > over a year. He has
> > been actively working
> > on Go SDK, helping
> > users, and making it
> > easier for others to
> > contribute [1].
> >
> > In consideration of
> > Robert's
> > contributions, the
> > Beam PMC trusts him
> > with the
> > responsibilities of a
> > Beam committer [2].
> >
> >

Re: [ANNOUNCE] New committer: Jan Lukavský

2019-08-01 Thread Thomas Weise
Congrats!


On Thu, Aug 1, 2019 at 8:44 AM jincheng sun 
wrote:

> Congratulations Jan!
> Best, Jincheng
>
> Gleb Kanterov  于2019年8月1日周四 下午5:09写道:
>
>> Congratulations!
>>
>> On Thu, Aug 1, 2019 at 3:11 PM Reza Rokni  wrote:
>>
>>> Congratulations , awesome stuff !
>>>
>>> On Thu, 1 Aug 2019, 12:11 Maximilian Michels,  wrote:
>>>
 Congrats, Jan! Good to see you become a committer :)

 On 01.08.19 12:37, Łukasz Gajowy wrote:
 > Congratulations!
 >
 > czw., 1 sie 2019 o 11:16 Robert Bradshaw >>> > > napisał(a):
 >
 > Congratulations!
 >
 > On Thu, Aug 1, 2019 at 9:59 AM Jan Lukavský >>> > > wrote:
 >
 > Thanks everyone!
 >
 > Looking forward to working with this great community! :-)
 >
 > Cheers,
 >
 >  Jan
 >
 > On 8/1/19 12:18 AM, Rui Wang wrote:
 > > Congratulations!
 > >
 > >
 > > -Rui
 > >
 > > On Wed, Jul 31, 2019 at 10:51 AM Robin Qiu <
 robi...@google.com
 > > > wrote:
 > >
 > > Congrats!
 > >
 > > On Wed, Jul 31, 2019 at 10:31 AM Aizhamal Nurmamat kyzy
 > > mailto:aizha...@apache.org>>
 wrote:
 > >
 > > Congratulations, Jan! Thank you for your
 contributions!
 > >
 > > On Wed, Jul 31, 2019 at 10:04 AM Tanay Tummalapalli
 > > mailto:ttanay...@gmail.com>>
 wrote:
 > >
 > > Congratulations!
 > >
 > > On Wed, Jul 31, 2019 at 10:05 PM Ahmet Altay
 > > mailto:al...@google.com>>
 wrote:
 > >
 > > Congratulations Jan! Thank you for your
 > > contributions!
 > >
 > > On Wed, Jul 31, 2019 at 2:30 AM Ankur Goenka
 > > >>> goe...@google.com>>
 > > wrote:
 > >
 > > Congratulations Jan!
 > >
 > > On Wed, Jul 31, 2019, 1:23 AM David
 > > Morávek >>> > > > wrote:
 > >
 > > Congratulations Jan, well deserved!
 ;)
 > >
 > > D.
 > >
 > > On Wed, Jul 31, 2019 at 10:17 AM
 Ryan
 > > Skraba >>> > > > wrote:
 > >
 > > Congratulations Jan!
 > >
 > > On Wed, Jul 31, 2019 at 10:10 AM
 > > Ismaël Mejía >>> > > >
 wrote:
 > > >
 > > > Hi,
 > > >
 > > > Please join me and the rest of
 > > the Beam PMC in welcoming a new
 > > > committer: Jan Lukavský.
 > > >
 > > > Jan has been contributing to
 > > Beam for a while, he was part of
 > > the team
 > > > that contributed the Euphoria
 > > DSL extension, and he has done
 > > > interesting improvements for
 the
 > > Spark and Direct runner. He has
 also
 > > > been active in the community
 > > discussions around the Beam
 model and
 > > > other subjects.
 > > >
 > > > In consideration of Jan's
 > > contributions, the Beam PMC
 trusts
 > > him with
 > > > the responsibilities of a Beam
 > > committer [1].
 > > >
 > > > Thank you, Jan, for your
 > > contributions and looking
 forward
 > > to many more!
 > > >
 > > > Ismaël, on behalf of 

Re: [ANNOUNCE] New committer: Jan Lukavský

2019-08-01 Thread jincheng sun
Congratulations Jan!
Best, Jincheng

Gleb Kanterov  于2019年8月1日周四 下午5:09写道:

> Congratulations!
>
> On Thu, Aug 1, 2019 at 3:11 PM Reza Rokni  wrote:
>
>> Congratulations , awesome stuff !
>>
>> On Thu, 1 Aug 2019, 12:11 Maximilian Michels,  wrote:
>>
>>> Congrats, Jan! Good to see you become a committer :)
>>>
>>> On 01.08.19 12:37, Łukasz Gajowy wrote:
>>> > Congratulations!
>>> >
>>> > czw., 1 sie 2019 o 11:16 Robert Bradshaw >> > > napisał(a):
>>> >
>>> > Congratulations!
>>> >
>>> > On Thu, Aug 1, 2019 at 9:59 AM Jan Lukavský >> > > wrote:
>>> >
>>> > Thanks everyone!
>>> >
>>> > Looking forward to working with this great community! :-)
>>> >
>>> > Cheers,
>>> >
>>> >  Jan
>>> >
>>> > On 8/1/19 12:18 AM, Rui Wang wrote:
>>> > > Congratulations!
>>> > >
>>> > >
>>> > > -Rui
>>> > >
>>> > > On Wed, Jul 31, 2019 at 10:51 AM Robin Qiu <
>>> robi...@google.com
>>> > > > wrote:
>>> > >
>>> > > Congrats!
>>> > >
>>> > > On Wed, Jul 31, 2019 at 10:31 AM Aizhamal Nurmamat kyzy
>>> > > mailto:aizha...@apache.org>>
>>> wrote:
>>> > >
>>> > > Congratulations, Jan! Thank you for your
>>> contributions!
>>> > >
>>> > > On Wed, Jul 31, 2019 at 10:04 AM Tanay Tummalapalli
>>> > > mailto:ttanay...@gmail.com>>
>>> wrote:
>>> > >
>>> > > Congratulations!
>>> > >
>>> > > On Wed, Jul 31, 2019 at 10:05 PM Ahmet Altay
>>> > > mailto:al...@google.com>>
>>> wrote:
>>> > >
>>> > > Congratulations Jan! Thank you for your
>>> > > contributions!
>>> > >
>>> > > On Wed, Jul 31, 2019 at 2:30 AM Ankur Goenka
>>> > > mailto:goe...@google.com
>>> >>
>>> > > wrote:
>>> > >
>>> > > Congratulations Jan!
>>> > >
>>> > > On Wed, Jul 31, 2019, 1:23 AM David
>>> > > Morávek >> > > > wrote:
>>> > >
>>> > > Congratulations Jan, well deserved!
>>> ;)
>>> > >
>>> > > D.
>>> > >
>>> > > On Wed, Jul 31, 2019 at 10:17 AM Ryan
>>> > > Skraba >> > > > wrote:
>>> > >
>>> > > Congratulations Jan!
>>> > >
>>> > > On Wed, Jul 31, 2019 at 10:10 AM
>>> > > Ismaël Mejía >> > > >
>>> wrote:
>>> > > >
>>> > > > Hi,
>>> > > >
>>> > > > Please join me and the rest of
>>> > > the Beam PMC in welcoming a new
>>> > > > committer: Jan Lukavský.
>>> > > >
>>> > > > Jan has been contributing to
>>> > > Beam for a while, he was part of
>>> > > the team
>>> > > > that contributed the Euphoria
>>> > > DSL extension, and he has done
>>> > > > interesting improvements for
>>> the
>>> > > Spark and Direct runner. He has
>>> also
>>> > > > been active in the community
>>> > > discussions around the Beam
>>> model and
>>> > > > other subjects.
>>> > > >
>>> > > > In consideration of Jan's
>>> > > contributions, the Beam PMC
>>> trusts
>>> > > him with
>>> > > > the responsibilities of a Beam
>>> > > committer [1].
>>> > > >
>>> > > > Thank you, Jan, for your
>>> > > contributions and looking forward
>>> > > to many more!
>>> > > >
>>> > > > Ismaël, on behalf of the Apache
>>> > > Beam PMC
>>> > > >
>>> > > > [1]
>>> > >
>>> 

Beam IO python connector for Oracle

2019-08-01 Thread saman Liyanage
Hi Dev team,

Appreciate if you could share if you have already build python IO connector for 
oracle.
Thank you.

Regards,
Saman


Re: [ANNOUNCE] New committer: Jan Lukavský

2019-08-01 Thread Gleb Kanterov
Congratulations!

On Thu, Aug 1, 2019 at 3:11 PM Reza Rokni  wrote:

> Congratulations , awesome stuff !
>
> On Thu, 1 Aug 2019, 12:11 Maximilian Michels,  wrote:
>
>> Congrats, Jan! Good to see you become a committer :)
>>
>> On 01.08.19 12:37, Łukasz Gajowy wrote:
>> > Congratulations!
>> >
>> > czw., 1 sie 2019 o 11:16 Robert Bradshaw > > > napisał(a):
>> >
>> > Congratulations!
>> >
>> > On Thu, Aug 1, 2019 at 9:59 AM Jan Lukavský > > > wrote:
>> >
>> > Thanks everyone!
>> >
>> > Looking forward to working with this great community! :-)
>> >
>> > Cheers,
>> >
>> >  Jan
>> >
>> > On 8/1/19 12:18 AM, Rui Wang wrote:
>> > > Congratulations!
>> > >
>> > >
>> > > -Rui
>> > >
>> > > On Wed, Jul 31, 2019 at 10:51 AM Robin Qiu <
>> robi...@google.com
>> > > > wrote:
>> > >
>> > > Congrats!
>> > >
>> > > On Wed, Jul 31, 2019 at 10:31 AM Aizhamal Nurmamat kyzy
>> > > mailto:aizha...@apache.org>> wrote:
>> > >
>> > > Congratulations, Jan! Thank you for your
>> contributions!
>> > >
>> > > On Wed, Jul 31, 2019 at 10:04 AM Tanay Tummalapalli
>> > > mailto:ttanay...@gmail.com>>
>> wrote:
>> > >
>> > > Congratulations!
>> > >
>> > > On Wed, Jul 31, 2019 at 10:05 PM Ahmet Altay
>> > > mailto:al...@google.com>>
>> wrote:
>> > >
>> > > Congratulations Jan! Thank you for your
>> > > contributions!
>> > >
>> > > On Wed, Jul 31, 2019 at 2:30 AM Ankur Goenka
>> > > mailto:goe...@google.com
>> >>
>> > > wrote:
>> > >
>> > > Congratulations Jan!
>> > >
>> > > On Wed, Jul 31, 2019, 1:23 AM David
>> > > Morávek > > > > wrote:
>> > >
>> > > Congratulations Jan, well deserved! ;)
>> > >
>> > > D.
>> > >
>> > > On Wed, Jul 31, 2019 at 10:17 AM Ryan
>> > > Skraba > > > > wrote:
>> > >
>> > > Congratulations Jan!
>> > >
>> > > On Wed, Jul 31, 2019 at 10:10 AM
>> > > Ismaël Mejía > > > >
>> wrote:
>> > > >
>> > > > Hi,
>> > > >
>> > > > Please join me and the rest of
>> > > the Beam PMC in welcoming a new
>> > > > committer: Jan Lukavský.
>> > > >
>> > > > Jan has been contributing to
>> > > Beam for a while, he was part of
>> > > the team
>> > > > that contributed the Euphoria
>> > > DSL extension, and he has done
>> > > > interesting improvements for the
>> > > Spark and Direct runner. He has
>> also
>> > > > been active in the community
>> > > discussions around the Beam model
>> and
>> > > > other subjects.
>> > > >
>> > > > In consideration of Jan's
>> > > contributions, the Beam PMC trusts
>> > > him with
>> > > > the responsibilities of a Beam
>> > > committer [1].
>> > > >
>> > > > Thank you, Jan, for your
>> > > contributions and looking forward
>> > > to many more!
>> > > >
>> > > > Ismaël, on behalf of the Apache
>> > > Beam PMC
>> > > >
>> > > > [1]
>> > >
>> https://beam.apache.org/committer/committer
>> > >
>>
>>

-- 
Cheers,
Gleb


Re: [ANNOUNCE] New committer: Jan Lukavský

2019-08-01 Thread Reza Rokni
Congratulations , awesome stuff !

On Thu, 1 Aug 2019, 12:11 Maximilian Michels,  wrote:

> Congrats, Jan! Good to see you become a committer :)
>
> On 01.08.19 12:37, Łukasz Gajowy wrote:
> > Congratulations!
> >
> > czw., 1 sie 2019 o 11:16 Robert Bradshaw  > > napisał(a):
> >
> > Congratulations!
> >
> > On Thu, Aug 1, 2019 at 9:59 AM Jan Lukavský  > > wrote:
> >
> > Thanks everyone!
> >
> > Looking forward to working with this great community! :-)
> >
> > Cheers,
> >
> >  Jan
> >
> > On 8/1/19 12:18 AM, Rui Wang wrote:
> > > Congratulations!
> > >
> > >
> > > -Rui
> > >
> > > On Wed, Jul 31, 2019 at 10:51 AM Robin Qiu  > > > wrote:
> > >
> > > Congrats!
> > >
> > > On Wed, Jul 31, 2019 at 10:31 AM Aizhamal Nurmamat kyzy
> > > mailto:aizha...@apache.org>> wrote:
> > >
> > > Congratulations, Jan! Thank you for your contributions!
> > >
> > > On Wed, Jul 31, 2019 at 10:04 AM Tanay Tummalapalli
> > > mailto:ttanay...@gmail.com>>
> wrote:
> > >
> > > Congratulations!
> > >
> > > On Wed, Jul 31, 2019 at 10:05 PM Ahmet Altay
> > > mailto:al...@google.com>>
> wrote:
> > >
> > > Congratulations Jan! Thank you for your
> > > contributions!
> > >
> > > On Wed, Jul 31, 2019 at 2:30 AM Ankur Goenka
> > > mailto:goe...@google.com>>
> > > wrote:
> > >
> > > Congratulations Jan!
> > >
> > > On Wed, Jul 31, 2019, 1:23 AM David
> > > Morávek  > > > wrote:
> > >
> > > Congratulations Jan, well deserved! ;)
> > >
> > > D.
> > >
> > > On Wed, Jul 31, 2019 at 10:17 AM Ryan
> > > Skraba  > > > wrote:
> > >
> > > Congratulations Jan!
> > >
> > > On Wed, Jul 31, 2019 at 10:10 AM
> > > Ismaël Mejía  > > > wrote:
> > > >
> > > > Hi,
> > > >
> > > > Please join me and the rest of
> > > the Beam PMC in welcoming a new
> > > > committer: Jan Lukavský.
> > > >
> > > > Jan has been contributing to
> > > Beam for a while, he was part of
> > > the team
> > > > that contributed the Euphoria
> > > DSL extension, and he has done
> > > > interesting improvements for the
> > > Spark and Direct runner. He has
> also
> > > > been active in the community
> > > discussions around the Beam model
> and
> > > > other subjects.
> > > >
> > > > In consideration of Jan's
> > > contributions, the Beam PMC trusts
> > > him with
> > > > the responsibilities of a Beam
> > > committer [1].
> > > >
> > > > Thank you, Jan, for your
> > > contributions and looking forward
> > > to many more!
> > > >
> > > > Ismaël, on behalf of the Apache
> > > Beam PMC
> > > >
> > > > [1]
> > >
> https://beam.apache.org/committer/committer
> > >
>
>


Re: [ANNOUNCE] New committer: Jan Lukavský

2019-08-01 Thread Maximilian Michels
Congrats, Jan! Good to see you become a committer :)

On 01.08.19 12:37, Łukasz Gajowy wrote:
> Congratulations!
>
> czw., 1 sie 2019 o 11:16 Robert Bradshaw  > napisał(a):
>
>     Congratulations!
>
>     On Thu, Aug 1, 2019 at 9:59 AM Jan Lukavský      > wrote:
>
>     Thanks everyone!
>
>     Looking forward to working with this great community! :-)
>
>     Cheers,
>
>      Jan
>
>     On 8/1/19 12:18 AM, Rui Wang wrote:
> > Congratulations!
> >
> >
> > -Rui
> >
> > On Wed, Jul 31, 2019 at 10:51 AM Robin Qiu  > > wrote:
> >
> > Congrats!
> >
> > On Wed, Jul 31, 2019 at 10:31 AM Aizhamal Nurmamat kyzy
> > mailto:aizha...@apache.org>> wrote:
> >
> > Congratulations, Jan! Thank you for your contributions!
> >
> > On Wed, Jul 31, 2019 at 10:04 AM Tanay Tummalapalli
> > mailto:ttanay...@gmail.com>> wrote:
> >
> > Congratulations!
> >
> > On Wed, Jul 31, 2019 at 10:05 PM Ahmet Altay
> > mailto:al...@google.com>> wrote:
> >
> > Congratulations Jan! Thank you for your
> > contributions!
> >
> > On Wed, Jul 31, 2019 at 2:30 AM Ankur Goenka
> > mailto:goe...@google.com>>
> > wrote:
> >
> > Congratulations Jan!
> >
> > On Wed, Jul 31, 2019, 1:23 AM David
> > Morávek  > > wrote:
> >
> > Congratulations Jan, well deserved! ;)
> >
> > D.
> >
> > On Wed, Jul 31, 2019 at 10:17 AM Ryan
> > Skraba  > > wrote:
> >
> > Congratulations Jan!
> >
> > On Wed, Jul 31, 2019 at 10:10 AM
> > Ismaël Mejía  > > wrote:
> > >
> > > Hi,
> > >
> > > Please join me and the rest of
> > the Beam PMC in welcoming a new
> > > committer: Jan Lukavský.
> > >
> > > Jan has been contributing to
> > Beam for a while, he was part of
> > the team
> > > that contributed the Euphoria
> > DSL extension, and he has done
> > > interesting improvements for the
> > Spark and Direct runner. He has also
> > > been active in the community
> > discussions around the Beam model and
> > > other subjects.
> > >
> > > In consideration of Jan's
> > contributions, the Beam PMC trusts
> > him with
> > > the responsibilities of a Beam
> > committer [1].
> > >
> > > Thank you, Jan, for your
> > contributions and looking forward
> > to many more!
> > >
> > > Ismaël, on behalf of the Apache
> > Beam PMC
> > >
> > > [1]
> > 
> >https://beam.apache.org/committer/committer
> >



Re: [ANNOUNCE] New committer: Jan Lukavský

2019-08-01 Thread Łukasz Gajowy
Congratulations!

czw., 1 sie 2019 o 11:16 Robert Bradshaw  napisał(a):

> Congratulations!
>
> On Thu, Aug 1, 2019 at 9:59 AM Jan Lukavský  wrote:
>
>> Thanks everyone!
>>
>> Looking forward to working with this great community! :-)
>>
>> Cheers,
>>
>>  Jan
>> On 8/1/19 12:18 AM, Rui Wang wrote:
>>
>> Congratulations!
>>
>>
>> -Rui
>>
>> On Wed, Jul 31, 2019 at 10:51 AM Robin Qiu  wrote:
>>
>>> Congrats!
>>>
>>> On Wed, Jul 31, 2019 at 10:31 AM Aizhamal Nurmamat kyzy <
>>> aizha...@apache.org> wrote:
>>>
 Congratulations, Jan! Thank you for your contributions!

 On Wed, Jul 31, 2019 at 10:04 AM Tanay Tummalapalli <
 ttanay...@gmail.com> wrote:

> Congratulations!
>
> On Wed, Jul 31, 2019 at 10:05 PM Ahmet Altay  wrote:
>
>> Congratulations Jan! Thank you for your contributions!
>>
>> On Wed, Jul 31, 2019 at 2:30 AM Ankur Goenka 
>> wrote:
>>
>>> Congratulations Jan!
>>>
>>> On Wed, Jul 31, 2019, 1:23 AM David Morávek  wrote:
>>>
 Congratulations Jan, well deserved! ;)

 D.

 On Wed, Jul 31, 2019 at 10:17 AM Ryan Skraba 
 wrote:

> Congratulations Jan!
>
> On Wed, Jul 31, 2019 at 10:10 AM Ismaël Mejía 
> wrote:
> >
> > Hi,
> >
> > Please join me and the rest of the Beam PMC in welcoming a new
> > committer: Jan Lukavský.
> >
> > Jan has been contributing to Beam for a while, he was part of
> the team
> > that contributed the Euphoria DSL extension, and he has done
> > interesting improvements for the Spark and Direct runner. He has
> also
> > been active in the community discussions around the Beam model
> and
> > other subjects.
> >
> > In consideration of Jan's contributions, the Beam PMC trusts him
> with
> > the responsibilities of a Beam committer [1].
> >
> > Thank you, Jan, for your contributions and looking forward to
> many more!
> >
> > Ismaël, on behalf of the Apache Beam PMC
> >
> > [1] https://beam.apache.org/committer/committer
>



Re: [ANNOUNCE] New committer: Jan Lukavský

2019-08-01 Thread Robert Bradshaw
Congratulations!

On Thu, Aug 1, 2019 at 9:59 AM Jan Lukavský  wrote:

> Thanks everyone!
>
> Looking forward to working with this great community! :-)
>
> Cheers,
>
>  Jan
> On 8/1/19 12:18 AM, Rui Wang wrote:
>
> Congratulations!
>
>
> -Rui
>
> On Wed, Jul 31, 2019 at 10:51 AM Robin Qiu  wrote:
>
>> Congrats!
>>
>> On Wed, Jul 31, 2019 at 10:31 AM Aizhamal Nurmamat kyzy <
>> aizha...@apache.org> wrote:
>>
>>> Congratulations, Jan! Thank you for your contributions!
>>>
>>> On Wed, Jul 31, 2019 at 10:04 AM Tanay Tummalapalli 
>>> wrote:
>>>
 Congratulations!

 On Wed, Jul 31, 2019 at 10:05 PM Ahmet Altay  wrote:

> Congratulations Jan! Thank you for your contributions!
>
> On Wed, Jul 31, 2019 at 2:30 AM Ankur Goenka 
> wrote:
>
>> Congratulations Jan!
>>
>> On Wed, Jul 31, 2019, 1:23 AM David Morávek  wrote:
>>
>>> Congratulations Jan, well deserved! ;)
>>>
>>> D.
>>>
>>> On Wed, Jul 31, 2019 at 10:17 AM Ryan Skraba 
>>> wrote:
>>>
 Congratulations Jan!

 On Wed, Jul 31, 2019 at 10:10 AM Ismaël Mejía 
 wrote:
 >
 > Hi,
 >
 > Please join me and the rest of the Beam PMC in welcoming a new
 > committer: Jan Lukavský.
 >
 > Jan has been contributing to Beam for a while, he was part of the
 team
 > that contributed the Euphoria DSL extension, and he has done
 > interesting improvements for the Spark and Direct runner. He has
 also
 > been active in the community discussions around the Beam model and
 > other subjects.
 >
 > In consideration of Jan's contributions, the Beam PMC trusts him
 with
 > the responsibilities of a Beam committer [1].
 >
 > Thank you, Jan, for your contributions and looking forward to
 many more!
 >
 > Ismaël, on behalf of the Apache Beam PMC
 >
 > [1] https://beam.apache.org/committer/committer

>>>


Re: [ANNOUNCE] New committer: Jan Lukavský

2019-08-01 Thread Jan Lukavský

Thanks everyone!

Looking forward to working with this great community! :-)

Cheers,

 Jan

On 8/1/19 12:18 AM, Rui Wang wrote:

Congratulations!


-Rui

On Wed, Jul 31, 2019 at 10:51 AM Robin Qiu > wrote:


Congrats!

On Wed, Jul 31, 2019 at 10:31 AM Aizhamal Nurmamat kyzy
mailto:aizha...@apache.org>> wrote:

Congratulations, Jan! Thank you for your contributions!

On Wed, Jul 31, 2019 at 10:04 AM Tanay Tummalapalli
mailto:ttanay...@gmail.com>> wrote:

Congratulations!

On Wed, Jul 31, 2019 at 10:05 PM Ahmet Altay
mailto:al...@google.com>> wrote:

Congratulations Jan! Thank you for your contributions!

On Wed, Jul 31, 2019 at 2:30 AM Ankur Goenka
mailto:goe...@google.com>> wrote:

Congratulations Jan!

On Wed, Jul 31, 2019, 1:23 AM David Morávek
mailto:d...@apache.org>> wrote:

Congratulations Jan, well deserved! ;)

D.

On Wed, Jul 31, 2019 at 10:17 AM Ryan Skraba
mailto:r...@skraba.com>> wrote:

Congratulations Jan!

On Wed, Jul 31, 2019 at 10:10 AM Ismaël
Mejía mailto:ieme...@gmail.com>> wrote:
>
> Hi,
>
> Please join me and the rest of the Beam
PMC in welcoming a new
> committer: Jan Lukavský.
>
> Jan has been contributing to Beam for a
while, he was part of the team
> that contributed the Euphoria DSL
extension, and he has done
> interesting improvements for the Spark
and Direct runner. He has also
> been active in the community discussions
around the Beam model and
> other subjects.
>
> In consideration of Jan's contributions,
the Beam PMC trusts him with
> the responsibilities of a Beam committer
[1].
>
> Thank you, Jan, for your contributions
and looking forward to many more!
>
> Ismaël, on behalf of the Apache Beam PMC
>
> [1]
https://beam.apache.org/committer/committer