[NEED HELP] PMC only finalization items for release 2.30.0

2021-06-09 Thread Heejong Lee
Hi, I'm finishing 2.30.0 release and need help doing PMC only finalization items in the release guide ( https://beam.apache.org/contribute/release-guide/#10-finalize-the-release). Please let me know if any PMC members have some time to do these tasks :) Thanks!

contributor permission for Beam Jira tickets

2021-06-09 Thread Pascal Gillet
Hi, This is Pascal. I identified some little but nonetheless annoying bugs in Beam. Can someone add me as a contributor for Beam's Jira issue tracker? I would like to assign tickets to myself. My JIRA login: pgillet Thanks, Pascal

Re: [Proposal] Enable Branch Protection for `release-.*` branches

2021-06-09 Thread Kenneth Knowles
Great idea. I think only infra can do it. On Tue, Jun 8, 2021, 14:27 Robert Burke wrote: > During the last branch cleanup, it appears I accidentally deleted the > release-2.26.0 branch. > > Lukasz Cwik pointed this out to me, and fortunately I was able to recover > and push it back to the repo.

Re: [EXTERNAL] Re:

2021-06-09 Thread Raphael Sanamyan
Hello, Here is a case where you need to have a statement and a preparedStatementSetter. PCollection dataCollection = pipeline.apply(Create.of(data)); PCollection rowsWritten = dataCollection.apply( JdbcIO.write()

Flaky test issue report (37)

2021-06-09 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

P1 issues report (38)

2021-06-09 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

Re:

2021-06-09 Thread Brian Hulette
> And also the ticket and "// TODO: BEAM-10396 use writeRows() when it's available" appeared later than this functionality was added to "JdbcIO.Write". Note that this TODO has been moved around through a few refactors. It was initially added last summer [1]. You're right that JdbcIO.Write's

Re:

2021-06-09 Thread Alexey Romanenko
Hello Raphael, > On 9 Jun 2021, at 09:31, Raphael Sanamyan > wrote: > > The "JdbcIO.Write" allows you to write rows without a statement or statement > preparer, but not all functionality works without them. Could you show a use case when the current functionality is not enough? > The

Re: beam new feature

2021-06-09 Thread Alexey Romanenko
Thanks, I left my comments as well. — Alexey > On 8 Jun 2021, at 22:21, Luke Cwik wrote: > > Thanks, I left a few comments in the doc. > > On Tue, Jun 8, 2021 at 12:26 PM Daria Malkova > wrote: > > Hi community! > > I've noticed that there is no

Re: Re:

2021-06-09 Thread Raphael Sanamyan
Hello Pablo! The "JdbcIO.Write" allows you to write rows without a statement or statement preparer, but not all functionality works without them. The method "WithResults" requires a statement and statement preparer. And also the ticket and "//