Re: Beam Java starter project template

2022-02-15 Thread Reza Ardeshir Rokni
Hi, This is great! What do folks think about also having a less minimal set of starters? For Java I am thinking about protobuf / autovalue. For Python maybe an opinionated setup with tox etc... Again this would just contain 'hello' world samples to get folks going. Regards Reza On Wed, 9 Feb

Re: [DISCUSS] Migrate Jira to GitHub Issues?

2022-02-15 Thread Alexey Romanenko
First of all, many thanks for putting the details into this design doc and sorry for delay with my response. I’m still quite neutral with this migration because of several concerns: - Imho, Github Issues is still not well enough mature as an issue tracker and it doesn’t provide the solutions

RE: Re: Re: Re: [Question][Contribution] Python SDK ByteKeyRange

2022-02-15 Thread Sami Niemi
That tracker is not a restriction tracker which I need for my Bigtable reader SDF. When I started working on this tracker I noticed that it was implemented in Java and I figured it would be best to make functionally similar implementation in Python. LexicographicKeyRangeTracker is not that

RE: Re: Contributor permission for Jira tickets

2022-02-15 Thread Sami Niemi
My username is samnisol. On 2022/02/15 18:52:33 Ahmet Altay wrote: > What is your jira username? > > On Tue, Feb 15, 2022 at 2:12 AM Sami Niemi > mailto:sa...@solita.fi>> wrote: > > > Hello, > > > > > > > > This is Sami from Solita. I’m working on ByteKeyRange and > > ByteKeyRestrictionTracker

Beam Summit 2022 is here, and you can register now!

2022-02-15 Thread Mara Ruvalcaba
*The premier conference for the worldwide community of Apache Beam users and contributors is here!* By participating in Beam Summit you will: * Learn how leading organizations use Apache Beam. * Find out what is upcoming for the project. * Improve your Beam skills through in-depth

P1 issues report (73)

2022-02-15 Thread Beam Jira Bot
This is your daily summary of Beam's current P1 issues, not including flaky tests (https://issues.apache.org/jira/issues/?jql=project%20%3D%20BEAM%20AND%20statusCategory%20!%3D%20Done%20AND%20priority%20%3D%20P1%20AND%20(labels%20is%20EMPTY%20OR%20labels%20!%3D%20flake). See

Flaky test issue report (50)

2022-02-15 Thread Beam Jira Bot
This is your daily summary of Beam's current flaky tests (https://issues.apache.org/jira/issues/?jql=project%20%3D%20BEAM%20AND%20statusCategory%20!%3D%20Done%20AND%20labels%20%3D%20flake) These are P1 issues because they have a major negative impact on the community and make it hard to

Contributor permission for Jira tickets

2022-02-15 Thread Sami Niemi
Hello, This is Sami from Solita. I’m working on ByteKeyRange and ByteKeyRestrictionTracker for Python SDK and I would need contributor permissions so I could create/assign tickets in Jira. Thank you, Sami Niemi

RE: Re: Re: [Question][Contribution] Python SDK ByteKeyRange

2022-02-15 Thread Sami Niemi
Hi Ismaël, What I’ve currently been working on locally is almost 100% based on that Java implementation. I suppose I need to create Jira issue and make the contribution. On 2022/02/15 09:19:33 Ismaël Mejía wrote: > Oh, forgot to add also the link to the tests that cover most of those >

Re: Re: [Question][Contribution] Python SDK ByteKeyRange

2022-02-15 Thread Ismaël Mejía
Oh, forgot to add also the link to the tests that cover most of those unexpected cases: [2] https://github.com/apache/beam/blob/master/sdks/java/core/src/test/java/org/apache/beam/sdk/transforms/splittabledofn/ByteKeyRangeTrackerTest.java On Tue, Feb 15, 2022 at 10:17 AM Ismaël Mejía wrote: >

Re: Re: [Question][Contribution] Python SDK ByteKeyRange

2022-02-15 Thread Ismaël Mejía
Great idea, please take a look at the Java ByteKeyRestrictionTracker implementation for consistency [1] I remember we had to deal with lots of corner cases so probably worth a look. [1]