[jira] [Created] (FLINK-32759) Remove the removed config in the doc

2023-08-04 Thread Rui Fan (Jira)
Rui Fan created FLINK-32759:
---

 Summary: Remove the removed config in the doc
 Key: FLINK-32759
 URL: https://issues.apache.org/jira/browse/FLINK-32759
 Project: Flink
  Issue Type: Technical Debt
  Components: Documentation, Runtime / Coordination
Reporter: Rui Fan
Assignee: Rui Fan
 Attachments: image-2023-08-05-11-54-17-714.png

The cluster.declarative-resource-management.enabled was removed at 
FLINK-21095(https://github.com/apache/flink/pull/15838/files), so it doesn't 
work now.

However, the flink doc still have it.

 !image-2023-08-05-11-54-17-714.png! 



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


Re: [DISCUSS] addition of Flink Script Operators

2023-08-04 Thread Jing Ge
Hi Kevin,

Thanks for your proposal. It is quite interesting. We had a similar
solution back to the Apache Storm era many years ago. The job deployment
with operators itself could be considered as physical distributed task
containers. There will be a management tool, like a control plane, to
deploy the dynamic logic, e.g. groovy/Bash script you mentioned in your
proposal or CEP rules into the job. In this way, there will be a
physical job deployed to the cluster and a virtual job (the dynamic script)
running within it. If it is managed carefully, we could even dynamically
control the traffic, e.g. KeyedStream. There will be one interesting
question: did you consider the data consistency? E.g. how to guarantee the
Exactly-Once Semantics after the logic has been changed dynamically?
Looking forward to hearing from you.

Best regards,
Jing

On Wed, Aug 2, 2023 at 4:33 AM Kevin Tseng  wrote:

> Hello Dev Mailing List,
>
> I have a feature proposition that I am interested to hear more and to
> gather feedback from everyone on the mailing list.
>
> (please view this email in monospace font when possible)
>
> _*Proposal*_*
> *
>
> Currently, when Flink DataStream API is to be utilized, every data
> processing logic will need to be written and compiled before job
> deployment. And if there's any change to the logic the code generally need
> to be recompiled.
>
> To support the use case of a more generic deployment process we can take
> inspiration from platforms such as Apache Airflow and Apache Spark, where
> the support for externalizing operator logic exist.
>
> This can be achieved by extending Default Flink Operators used for filter,
> process, keyBy, flatMap, map ... etc. As we are merely adding an
> externalized component "Script" that gets executed instead of pre-compiled
> code.
>
> Surface Level implementation idea:
>
> ScriptFilterFunction extends RichFilterFunction
> ScriptProcessFunction extends RichProcessFunction
> ScriptMapFunction extends RichMapFunction
> …etc
>
>  
> | RichFilterFunction |
>  
>▲
>|
>  --
> | ScriptFilterFunction |
>  --
>
> We can add support progressively, not every operator will need its script
> counterpart in the initial release.
>
> Every supported operator will have its Script counterpart where each one
> of them will have at least one Implemented ScriptExecutor interface;
> Co*Function may require two. We may also add metrics corresponding to each
> extended function to track script performance.
>
> There will also be a default ScriptExecutor impl that does nothing if user
> does not define a script to be used.
>
> ScriptExecutor is an interface that can be implemented to support various
> externalized script languages.
> The interface will include two abstract methods setup() and execute() /
> execute(...args) where
>
> • setup is used to initialize any execution engine or compilation
> requirement
> • execute is used to handle invocation of the script function given an
> optional input object
>
>
>   | ScriptExecutor |
>
>△◸
>|  ⟍
>|⟍
>|  ⟍
>  --
> | BashScriptExecutor |  | GroovyScriptExecutor |
>  --
>
> Depending on the ScriptExecutor, it will either accept file path(s) that
> utilizes Flink’s own FileSystem API for script file loading, or script text
> that defines the processing logic.
>
> _*Use Case*_
>
> Supposed we have a super generic Job that does the following:
>
> [Kafka] -> [Filter] -> [Kafka]
>
> Instead of having to recompile DataStream API based binary every time
> filter condition is to be changed, we can now specify a file (may even be
> from a job parameter or some sort of configuration file) that’s located on
> an object storage or remote filesystem supported by Flink, and simply
> redeploy the job.
>
> Same job setup can also be used to support multiple similar job with minor
> differences in filtering criteria.
>
> Given that Flink is written in Scala & Java, JVM based language such as
> Groovy & Scala scripts that can be compiled into JVM Byte Code at runtime
> can be supported easily. And performance will generally be on-par as
> pre-compiled deployable binary.
>
> By making this part of Flink Operator Set, we will be able to open up an
> universal script support that rivals other platform and framework.
>
> Looking forward to hearing back from the community with regards to this
> feature.
>
> Thanks,
>
> K


[jira] [Created] (FLINK-32758) PyFlink bounds are overly restrictive and outdated

2023-08-04 Thread Deepyaman Datta (Jira)
Deepyaman Datta created FLINK-32758:
---

 Summary: PyFlink bounds are overly restrictive and outdated
 Key: FLINK-32758
 URL: https://issues.apache.org/jira/browse/FLINK-32758
 Project: Flink
  Issue Type: Improvement
  Components: API / Python
Affects Versions: 1.17.1
Reporter: Deepyaman Datta


Hi! I am part of a team building the Flink backend for Ibis 
([https://github.com/ibis-project/ibis]). We would like to leverage PyFlink 
under the hood for execution; however, PyFlink's requirements are incompatible 
with several other Ibis requirements. Beyond Ibis, PyFlink's outdated and 
restrictive requirements prevent it from being used alongside most recent 
releases of Python data libraries.

Some of the major libraries we (and likely others in the Python community 
interested in using PyFlink alongside other libraries) need compatibility with:
 * PyArrow (at least >=10.0.0, but there's no reason not to be also be 
compatible with latest)
 * pandas (should be compatible with 2.x series, but also probably with 1.4.x, 
released January 2022, and 1.5.x)
 * numpy (1.22 was released in December 2022)
 * Newer releases of Apache Beam
 * Newer releases of cython

Furthermore, uncapped dependencies could be more generally preferable, as they 
avoid the need for frequent PyFlink releases as newer versions of libraries are 
released. A common (and great) argument for not upper-bounding dependencies, 
especially for libraries: 
[https://iscinumpy.dev/post/bound-version-constraints/]

I am currently testing removing upper bounds in 
[https://github.com/apache/flink/pull/23141]; so far, builds pass without issue 
in 
[b65c072|https://github.com/apache/flink/pull/23141/commits/b65c0723ed66e01e83d718f770aa916f41f34581],
 and I'm currently waiting on 
[c8eb15c|https://github.com/apache/flink/pull/23141/commits/c8eb15cbc371dc259fb4fda5395f0f55e08ea9c6]
 to see if I can get PyArrow to resolve >=10.0.0. Solving the proposed 
dependencies results in:



{{#}}
{{# This file is autogenerated by pip-compile with Python 3.8}}
{{# by the following command:}}
{{#}}
{{#    pip-compile --config=pyproject.toml 
--output-file=dev/compiled-requirements.txt dev/dev-requirements.txt}}
{{#}}
{{apache-beam==2.49.0}}
{{    # via -r dev/dev-requirements.txt}}
{{avro-python3==1.10.2}}
{{    # via -r dev/dev-requirements.txt}}
{{certifi==2023.7.22}}
{{    # via requests}}
{{charset-normalizer==3.2.0}}
{{    # via requests}}
{{cloudpickle==2.2.1}}
{{    # via}}
{{    #   -r dev/dev-requirements.txt}}
{{    #   apache-beam}}
{{crcmod==1.7}}
{{    # via apache-beam}}
{{cython==3.0.0}}
{{    # via -r dev/dev-requirements.txt}}
{{dill==0.3.1.1}}
{{    # via apache-beam}}
{{dnspython==2.4.1}}
{{    # via pymongo}}
{{docopt==0.6.2}}
{{    # via hdfs}}
{{exceptiongroup==1.1.2}}
{{    # via pytest}}
{{fastavro==1.8.2}}
{{    # via}}
{{    #   -r dev/dev-requirements.txt}}
{{    #   apache-beam}}
{{fasteners==0.18}}
{{    # via apache-beam}}
{{find-libpython==0.3.0}}
{{    # via pemja}}
{{grpcio==1.56.2}}
{{    # via}}
{{    #   -r dev/dev-requirements.txt}}
{{    #   apache-beam}}
{{    #   grpcio-tools}}
{{grpcio-tools==1.56.2}}
{{    # via -r dev/dev-requirements.txt}}
{{hdfs==2.7.0}}
{{    # via apache-beam}}
{{httplib2==0.22.0}}
{{    # via}}
{{    #   -r dev/dev-requirements.txt}}
{{    #   apache-beam}}
{{idna==3.4}}
{{    # via requests}}
{{iniconfig==2.0.0}}
{{    # via pytest}}
{{numpy==1.24.4}}
{{    # via}}
{{    #   -r dev/dev-requirements.txt}}
{{    #   apache-beam}}
{{    #   pandas}}
{{    #   pyarrow}}
{{objsize==0.6.1}}
{{    # via apache-beam}}
{{orjson==3.9.2}}
{{    # via apache-beam}}
{{packaging==23.1}}
{{    # via pytest}}
{{pandas==2.0.3}}
{{    # via -r dev/dev-requirements.txt}}
{{pemja==0.3.0 ; platform_system != "Windows"}}
{{    # via -r dev/dev-requirements.txt}}
{{pluggy==1.2.0}}
{{    # via pytest}}
{{proto-plus==1.22.3}}
{{    # via apache-beam}}
{{protobuf==4.23.4}}
{{    # via}}
{{    #   -r dev/dev-requirements.txt}}
{{    #   apache-beam}}
{{    #   grpcio-tools}}
{{    #   proto-plus}}
{{py4j==0.10.9.7}}
{{    # via -r dev/dev-requirements.txt}}
{{pyarrow==11.0.0}}
{{    # via}}
{{    #   -r dev/dev-requirements.txt}}
{{    #   apache-beam}}
{{pydot==1.4.2}}
{{    # via apache-beam}}
{{pymongo==4.4.1}}
{{    # via apache-beam}}
{{pyparsing==3.1.1}}
{{    # via}}
{{    #   httplib2}}
{{    #   pydot}}
{{pytest==7.4.0}}
{{    # via -r dev/dev-requirements.txt}}
{{python-dateutil==2.8.2}}
{{    # via}}
{{    #   -r dev/dev-requirements.txt}}
{{    #   apache-beam}}
{{    #   pandas}}
{{pytz==2023.3}}
{{    # via}}
{{    #   -r dev/dev-requirements.txt}}
{{    #   apache-beam}}
{{    #   pandas}}
{{regex==2023.6.3}}
{{    # via apache-beam}}
{{requests==2.31.0}}
{{    # via}}
{{    #   apache-beam}}
{{    #   hdfs}}
{{six==1.16.0}}
{{    # via}}
{{    #   hdfs}}
{{    #   python-dateutil}}

Re: [DISCUSS] FLIP-348: Support System Columns in SQL and Table API

2023-08-04 Thread Alexey Leonov-Vendrovskiy
Looks like both kinds of system columns can converge.
We can say that any operator can introduce system (psedo) columns.

cc Eugene who is also interested in the subject.

On Wed, Aug 2, 2023 at 1:03 AM Paul Lam  wrote:

> Hi Timo,
>
> Thanks for starting the discussion! System columns are no doubt a
> good boost on Flink SQL’s usability, and I see the feedbacks are
> mainly concerns about the accessibility of system columns.
>
> I think most of the concerns could be solved by clarifying the
> ownership of the system columns. Different from databases like
> Oracle/BigQuery/PG who owns the data/metadata, Flink uses the
> data/metadata from external systems. That means Flink could
> have 2 kinds of system columns (take ROWID for example):
>
> 1. system columns provided by external systems via catalogs, such
> as ROWID from the original system.
> 2. system columns generated by Flink, such as ROWID generated by
> Flink itself.
>
> IIUC, the FLIP is proposing the 1st approach: the catalog defines what
> system columns to provide, and Flink treats them as normal columns
> with a special naming pattern.
>
> On the other hand, Jark is proposing the 2nd one: the system columns
> are defined and owned by Flink, and can be inferred from external
> systems. Therefore, system columns should be predefined by Flink,
> and optionally implemented by the catalogs.
>
> Personally, I’m in favor of the 2nd approach, because it makes the
> system columns very accessible and more aligned across the catalogs.
>
> BTW, I second Alexey that systems columns should not be shown with
> DESCRIBE statements.
>
> WDYT? Thanks!
>
> Best,
> Paul Lam
>
> > 2023年7月31日 23:54,Jark Wu  写道:
> >
> > Hi Timo,
> >
> > Thanks for your proposal. I think this is a nice feature for users and I
> > prefer option 3.
> >
> > I only have one concern about the concept of pseudo-column or
> > system-column,
> > because this is the first time we introduce it in Flink SQL. The
> > confusion is similar to the
> > question of Benchao and Sergey about the propagation of pseudo-column.
> >
> > From my understanding, a pseudo-column can be get from an arbitrary
> query,
> > just similar to
> > ROWNUM in Oracle[1], such as :
> >
> > SELECT *
> > FROM (SELECT * FROM employees ORDER BY employee_id)
> > WHERE ROWNUM < 11;
> >
> > However, IIUC, the proposed "$rowtime" pseudo-column can only be got from
> > the physical table
> > and can't be got from queries even if the query propagates the rowtime
> > attribute. There was also
> > a discussion about adding a pseudo-column "_proctime" [2] to make lookup
> > join easier to use
> > which can be got from arbitrary queries. That "_proctime" may conflict
> with
> > the proposed
> > pseudo-column concept.
> >
> > Did you consider making it as a built-in defined pseudo-column "$rowtime"
> > which returns the
> > time attribute value (if exists) or null (if non-exists) for every
> > table/query, and pseudo-column
> > "$proctime" always returns PROCTIME() value for each table/query. In this
> > way, catalogs only need
> > to provide a default rowtime attribute and users can get it in the same
> > way. And we don't need
> > to introduce the contract interface of "Metadata Key Prefix Constraint"
> > which is still a little complex
> > for users and devs to understand.
> >
> > Best,
> > Jark
> >
> > [1]:
> >
> https://docs.oracle.com/cd/E11882_01/server.112/e41084/pseudocolumns009.htm#SQLRF00255
> > [2]: https://lists.apache.org/thread/7ln106qxyw8sp7ljq40hs2p1lb1gdwj5
> >
> >
> >
> >
> > On Fri, 28 Jul 2023 at 06:18, Alexey Leonov-Vendrovskiy <
> > vendrov...@gmail.com> wrote:
> >
> >>>
> >>> `SELECT * FROM (SELECT $rowtime, * FROM t);`
> >>> Am I right that it will show `$rowtime` in output ?
> >>
> >>
> >> Yes, all explicitly selected columns become a part of the result (and
> >> intermediate) schema, and hence propagate.
> >>
> >> On Thu, Jul 27, 2023 at 2:40 PM Alexey Leonov-Vendrovskiy <
> >> vendrov...@gmail.com> wrote:
> >>
> >>> Thank you, Timo, for starting this FLIP!
> >>>
> >>> I propose the following change:
> >>>
> >>> Remove the requirement that DESCRIBE need to show system columns.
> >>>
> >>>
> >>> Some concrete vendor specific catalog implementations might prefer this
> >>> approach.
> >>> Usually the same system columns are available on all (or family) of
> >>> tables, and it can be easily captured in the documentation.
> >>>
> >>> For example, BigQuery does exactly this: there, pseudo-columns do not
> >> show
> >>> up in the table schema in any place, but can be accessed via reference.
> >>>
> >>> So I propose we:
> >>> a) Either we say that DESCRIBE doesn't show system columns,
> >>> b) Or leave this vendor-specific / or configurable via flag (if
> needed).
> >>>
> >>> Regards,
> >>> Alexey
> >>>
> >>> On Thu, Jul 27, 2023 at 3:27 AM Sergey Nuyanzin 
> >>> wrote:
> >>>
>  Hi Timo,
> 
>  Thanks for the FLIP.
>  I also tend to think that Option 3 is better.
> 
>  I would be also 

[jira] [Created] (FLINK-32757) Update the copyright year in NOTICE files

2023-08-04 Thread Jiabao Sun (Jira)
Jiabao Sun created FLINK-32757:
--

 Summary: Update the copyright year in NOTICE files
 Key: FLINK-32757
 URL: https://issues.apache.org/jira/browse/FLINK-32757
 Project: Flink
  Issue Type: Improvement
  Components: Connectors / MongoDB
Affects Versions: mongodb-1.0.1, mongodb-1.0.0
Reporter: Jiabao Sun
 Fix For: mongodb-1.0.2


The current copyright year is 2014-2022 in NOTICE files. We should change it to 
2014-2023.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


Re: [VOTE] Release flink-connector-mongodb v1.0.2, release candidate 1

2023-08-04 Thread Jiabao Sun
Thanks Danny,

+1 (non-binding)

- Build and compile the source code locally
- Tag exists in Github
- Checked release notes
- Source archive signature/checksum looks good
- Binary (from Maven) signature/checksum looks good
- Checked the contents contains jar and pom files in apache repo

Non blocking findings:
- NOTICE files year is 2022 and needs to be updated to 2023

Best,
Jiabao


> 2023年8月4日 下午10:10,Danny Cranmer  写道:
> 
> Hi everyone,
> Please review and vote on the release candidate 1 for the version v1.0.2 of
> flink-connector-mongodb, as follows:
> [ ] +1, Approve the release
> [ ] -1, Do not approve the release (please provide specific comments)
> 
> The complete staging area is available for your review, which includes:
> * JIRA release notes [1],
> * the official Apache source release to be deployed to dist.apache.org [2],
> which are signed with the key with fingerprint
> 0F79F2AFB2351BC29678544591F9C1EC125FD8DB [3],
> * all artifacts to be deployed to the Maven Central Repository [4],
> * source code tag v1.0.2-rc1 [5],
> * website pull request listing the new release [6].
> * successful CI run on this tag [7].
> 
> The vote will be open for at least 72 hours. It is adopted by majority
> approval, with at least 3 PMC affirmative votes.
> 
> Thanks,
> Danny
> 
> [1]
> https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12315522=12353146
> [2]
> https://dist.apache.org/repos/dist/dev/flink/flink-connector-mongodb-1.0.2-rc1
> [3] https://dist.apache.org/repos/dist/release/flink/KEYS
> [4] https://repository.apache.org/content/repositories/orgapacheflink-1647/
> [5]
> https://github.com/apache/flink-connector-mongodb/releases/tag/v1.0.2-rc1
> [6] https://github.com/apache/flink-web/pull/669
> [7]
> https://github.com/apache/flink-connector-mongodb/actions/runs/5762820757



[VOTE] Release flink-connector-mongodb v1.0.2, release candidate 1

2023-08-04 Thread Danny Cranmer
Hi everyone,
Please review and vote on the release candidate 1 for the version v1.0.2 of
flink-connector-mongodb, as follows:
[ ] +1, Approve the release
[ ] -1, Do not approve the release (please provide specific comments)

The complete staging area is available for your review, which includes:
* JIRA release notes [1],
* the official Apache source release to be deployed to dist.apache.org [2],
which are signed with the key with fingerprint
0F79F2AFB2351BC29678544591F9C1EC125FD8DB [3],
* all artifacts to be deployed to the Maven Central Repository [4],
* source code tag v1.0.2-rc1 [5],
* website pull request listing the new release [6].
* successful CI run on this tag [7].

The vote will be open for at least 72 hours. It is adopted by majority
approval, with at least 3 PMC affirmative votes.

Thanks,
Danny

[1]
https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12315522=12353146
[2]
https://dist.apache.org/repos/dist/dev/flink/flink-connector-mongodb-1.0.2-rc1
[3] https://dist.apache.org/repos/dist/release/flink/KEYS
[4] https://repository.apache.org/content/repositories/orgapacheflink-1647/
[5]
https://github.com/apache/flink-connector-mongodb/releases/tag/v1.0.2-rc1
[6] https://github.com/apache/flink-web/pull/669
[7]
https://github.com/apache/flink-connector-mongodb/actions/runs/5762820757


Re: [ANNOUNCE] New Apache Flink PMC Member - Matthias Pohl

2023-08-04 Thread Hong Liang
Congratulations Matthias!

Very well deserved!

Regards,
Hong

On Fri, Aug 4, 2023 at 10:38 AM Markos Sfikas
 wrote:

> Congrats Matthias!
> Best
> Markos
>
> On Fri, Aug 4, 2023 at 11:25 AM Alexander Fedulov <
> alexander.fedu...@gmail.com> wrote:
>
> > Congrats!
> >
> > Best,
> > Alex
> >
> > On Fri, 4 Aug 2023 at 11:09, Dan Zou  wrote:
> >
> > > Congrats, Matthias!
> > >
> > > Best,
> > > Dan Zou
> > >
> > >
> > >
> > >
> > >
> > > > 2023年8月4日 13:12,Samrat Deb  写道:
> > > >
> > > > Congrats, Matthias!
> > >
> > >
> >
>


Plans for Schema Evolution in Table API

2023-08-04 Thread Ashish Khatkar
Hi all,

We are using flink-1.17.0 table API and RocksDB as backend to provide a
service to our users to run sql queries. The tables are created using the
avro schema and when the schema is changed in a compatible manner i.e
adding a field with default, we are unable to recover the job from the
savepoint. This is mentioned in the flink doc on evolution [1] as well.

Are there any plans to support schema evolution in the table API? Our
current approach involves rebuilding the entire state by discarding the
output and then utilizing that state in the actual job. This is already
done for table-store [2]

[1]
https://nightlies.apache.org/flink/flink-docs-release-1.17/docs/dev/table/concepts/overview/#stateful-upgrades-and-evolution
[2]
https://cwiki.apache.org/confluence/display/FLINK/FLIP-226%3A+Introduce+Schema+Evolution+on+Table+Store


[jira] [Created] (FLINK-32756) Reues ZK CuratorFramework when submitting OLAP jobs to Flink session cluster

2023-08-04 Thread xiangyu feng (Jira)
xiangyu feng created FLINK-32756:


 Summary: Reues ZK CuratorFramework when submitting OLAP jobs to 
Flink session cluster
 Key: FLINK-32756
 URL: https://issues.apache.org/jira/browse/FLINK-32756
 Project: Flink
  Issue Type: Sub-task
Reporter: xiangyu feng






--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (FLINK-32755) Add quick start guide for Flink OLAP

2023-08-04 Thread xiangyu feng (Jira)
xiangyu feng created FLINK-32755:


 Summary: Add quick start guide for Flink OLAP
 Key: FLINK-32755
 URL: https://issues.apache.org/jira/browse/FLINK-32755
 Project: Flink
  Issue Type: Sub-task
  Components: Documentation
Reporter: xiangyu feng






--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (FLINK-32754) Using SplitEnumeratorContext.metricGroup() in restoreEnumerator causes NPE

2023-08-04 Thread Yu Chen (Jira)
Yu Chen created FLINK-32754:
---

 Summary: Using SplitEnumeratorContext.metricGroup() in 
restoreEnumerator causes NPE
 Key: FLINK-32754
 URL: https://issues.apache.org/jira/browse/FLINK-32754
 Project: Flink
  Issue Type: Bug
  Components: Runtime / Checkpointing
Affects Versions: 1.17.1, 1.17.0
Reporter: Yu Chen
 Attachments: image-2023-08-04-18-28-05-897.png

We registered some metrics in the `enumerator` of the flip-27 source via 
`SplitEnumerator.metricGroup()`, but found that the task prints NPE logs in JM 
when restoring, suggesting that `SplitEnumerator. metricGroup()` is null.
Meanwhile, the task does not experience failover, and the Checkpoints cannot be 
successfully created even after the task is in running state.

We found that the implementation class of `SplitEnumerator` is 
`LazyInitializedCoordinatorContext`, however, the metricGroup() is initialized 
after calling lazyInitialize(). By reviewing the code, we found that at the 
time of SourceCoordinator.resetToCheckpoint(), lazyInitialize() has not been 
called yet, so NPE is thrown.


Q: Why does this bug prevent the task from creating the Checkpoint?
`SourceCoordinator.resetToCheckpoint()` throws an NPE which results in the 
member variable `enumerator` in `SourceCoordinator` being null. Unfortunately, 
all Checkpoint-related calls in `SourceCoordinator` are called via 
`runInEventLoop()`.
In `runInEventLoop()`, if the enumerator is null, it will return directly.

Q: Why this bug doesn't trigger a task failover?
In `RecreateOnResetOperatorCoordinator.resetAndStart()`, if 
`internalCoordinator.resetToCheckpoint` throws an exception, then it will catch 
the exception and call `cleanAndFailJob ` to try to fail the job.
However, `globalFailureHandler` is also initialized in `lazyInitialize()`, 
while `schedulerExecutor.execute` will ignore the NPE triggered by 
`globalFailureHandler.handleGlobalFailure(e)`.
Thus it appears that the task did not failover.
!image-2023-08-04-18-28-05-897.png|width=2442,height=1123!



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


Re: [ANNOUNCE] New Apache Flink Committer - Weihua Hu

2023-08-04 Thread Kelu Tao
Congratulations!

On 2023/08/04 08:35:49 Danny Cranmer wrote:
> Congrats and welcome to the team, Weihua!
> 
> Thanks,
> Danny
> 
> On Fri, Aug 4, 2023 at 9:30 AM Feng Jin  wrote:
> 
> > Congratulations Weihua!
> >
> > Best regards,
> >
> > Feng
> >
> > On Fri, Aug 4, 2023 at 4:28 PM weijie guo 
> > wrote:
> >
> > > Congratulations Weihua!
> > >
> > > Best regards,
> > >
> > > Weijie
> > >
> > >
> > > Lijie Wang  于2023年8月4日周五 15:28写道:
> > >
> > > > Congratulations, Weihua!
> > > >
> > > > Best,
> > > > Lijie
> > > >
> > > > yuxia  于2023年8月4日周五 15:14写道:
> > > >
> > > > > Congratulations, Weihua!
> > > > >
> > > > > Best regards,
> > > > > Yuxia
> > > > >
> > > > > - 原始邮件 -
> > > > > 发件人: "Yun Tang" 
> > > > > 收件人: "dev" 
> > > > > 发送时间: 星期五, 2023年 8 月 04日 下午 3:05:30
> > > > > 主题: Re: [ANNOUNCE] New Apache Flink Committer - Weihua Hu
> > > > >
> > > > > Congratulations, Weihua!
> > > > >
> > > > >
> > > > > Best
> > > > > Yun Tang
> > > > > 
> > > > > From: Jark Wu 
> > > > > Sent: Friday, August 4, 2023 15:00
> > > > > To: dev@flink.apache.org 
> > > > > Subject: Re: [ANNOUNCE] New Apache Flink Committer - Weihua Hu
> > > > >
> > > > > Congratulations, Weihua!
> > > > >
> > > > > Best,
> > > > > Jark
> > > > >
> > > > > On Fri, 4 Aug 2023 at 14:48, Yuxin Tan 
> > wrote:
> > > > >
> > > > > > Congratulations Weihua!
> > > > > >
> > > > > > Best,
> > > > > > Yuxin
> > > > > >
> > > > > >
> > > > > > Junrui Lee  于2023年8月4日周五 14:28写道:
> > > > > >
> > > > > > > Congrats, Weihua!
> > > > > > > Best,
> > > > > > > Junrui
> > > > > > >
> > > > > > > Geng Biao  于2023年8月4日周五 14:25写道:
> > > > > > >
> > > > > > > > Congrats, Weihua!
> > > > > > > > Best,
> > > > > > > > Biao Geng
> > > > > > > >
> > > > > > > > 发送自 Outlook for iOS
> > > > > > > > 
> > > > > > > > 发件人: 周仁祥 
> > > > > > > > 发送时间: Friday, August 4, 2023 2:23:42 PM
> > > > > > > > 收件人: dev@flink.apache.org 
> > > > > > > > 抄送: Weihua Hu 
> > > > > > > > 主题: Re: [ANNOUNCE] New Apache Flink Committer - Weihua Hu
> > > > > > > >
> > > > > > > > Congratulations, Weihua~
> > > > > > > >
> > > > > > > > > 2023年8月4日 14:21,Sergey Nuyanzin  写道:
> > > > > > > > >
> > > > > > > > > Congratulations, Weihua!
> > > > > > > > >
> > > > > > > > > On Fri, Aug 4, 2023 at 8:03 AM Chen Zhanghao <
> > > > > > > zhanghao.c...@outlook.com>
> > > > > > > > > wrote:
> > > > > > > > >
> > > > > > > > >> Congratulations, Weihua!
> > > > > > > > >>
> > > > > > > > >> Best,
> > > > > > > > >> Zhanghao Chen
> > > > > > > > >> 
> > > > > > > > >> 发件人: Xintong Song 
> > > > > > > > >> 发送时间: 2023年8月4日 11:18
> > > > > > > > >> 收件人: dev 
> > > > > > > > >> 抄送: Weihua Hu 
> > > > > > > > >> 主题: [ANNOUNCE] New Apache Flink Committer - Weihua Hu
> > > > > > > > >>
> > > > > > > > >> Hi everyone,
> > > > > > > > >>
> > > > > > > > >> On behalf of the PMC, I'm very happy to announce Weihua Hu
> > as
> > > a
> > > > > new
> > > > > > > > Flink
> > > > > > > > >> Committer!
> > > > > > > > >>
> > > > > > > > >> Weihua has been consistently contributing to the project
> > since
> > > > May
> > > > > > > > 2022. He
> > > > > > > > >> mainly works in Flink's distributed coordination areas. He
> > is
> > > > the
> > > > > > main
> > > > > > > > >> contributor of FLIP-298 and many other improvements in
> > > > large-scale
> > > > > > job
> > > > > > > > >> scheduling and improvements. He is also quite active in
> > > mailing
> > > > > > lists,
> > > > > > > > >> participating discussions and answering user questions.
> > > > > > > > >>
> > > > > > > > >> Please join me in congratulating Weihua!
> > > > > > > > >>
> > > > > > > > >> Best,
> > > > > > > > >>
> > > > > > > > >> Xintong (on behalf of the Apache Flink PMC)
> > > > > > > > >>
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > --
> > > > > > > > > Best regards,
> > > > > > > > > Sergey
> > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
> 


Re: [VOTE] FLIP-333: Redesign Apache Flink website

2023-08-04 Thread Markos Sfikas
+1
Thanks for driving this Deepthi!
Best
Markos

On Fri, Aug 4, 2023 at 9:03 AM Yun Tang  wrote:

> +1 (binding)
>
> Best
> Yun Tang
> 
> From: liu ron 
> Sent: Friday, August 4, 2023 10:56
> To: dev@flink.apache.org 
> Subject: Re: [VOTE] FLIP-333: Redesign Apache Flink website
>
> +1
>
> Best,
> Ron
>
> Xintong Song  于2023年8月4日周五 09:35写道:
>
> > +1 (binding)
> >
> > Best,
> >
> > Xintong
> >
> >
> >
> > On Fri, Aug 4, 2023 at 3:05 AM Hong Liang  wrote:
> >
> > > +1 (binding)
> > >
> > > Thanks Deepthi!
> > >
> > >
> > >
> > > On Thu, Aug 3, 2023 at 7:44 PM Danny Cranmer 
> > > wrote:
> > >
> > > > +1 (binding)
> > > >
> > > > Thanks Deepthi
> > > >
> > > >
> > > > On Thu, 3 Aug 2023, 12:03 Rui Fan, <1996fan...@gmail.com> wrote:
> > > >
> > > > > +1(binding), thanks for driving this proposal, it's cool !
> > > > >
> > > > > Best,
> > > > > Rui Fan
> > > > >
> > > > > On Thu, Aug 3, 2023 at 6:06 PM Jing Ge  >
> > > > wrote:
> > > > >
> > > > > > +1, thanks for driving it!
> > > > > >
> > > > > > Best regards,
> > > > > > Jing
> > > > > >
> > > > > > On Thu, Aug 3, 2023 at 4:49 AM Mohan, Deepthi
> > > >  > > > > >
> > > > > > wrote:
> > > > > >
> > > > > > > Hi,
> > > > > > >
> > > > > > > Thank you all for your feedback on FLIP-333. I’d like to start
> a
> > > > vote.
> > > > > > >
> > > > > > > Discussion thread:
> > > > > > >
> https://lists.apache.org/thread/z9j0rqt61ftgbkr37gzwbjg0n4fl1hsf
> > > > > > > FLIP:
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
> https://cwiki.apache.org/confluence/display/FLINK/FLIP-333%3A+Redesign+Apache+Flink+website
> > > > > > >
> > > > > > >
> > > > > > > Thanks,
> > > > > > > Deepthi
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>


Re: [ANNOUNCE] New Apache Flink PMC Member - Matthias Pohl

2023-08-04 Thread Markos Sfikas
Congrats Matthias!
Best
Markos

On Fri, Aug 4, 2023 at 11:25 AM Alexander Fedulov <
alexander.fedu...@gmail.com> wrote:

> Congrats!
>
> Best,
> Alex
>
> On Fri, 4 Aug 2023 at 11:09, Dan Zou  wrote:
>
> > Congrats, Matthias!
> >
> > Best,
> > Dan Zou
> >
> >
> >
> >
> >
> > > 2023年8月4日 13:12,Samrat Deb  写道:
> > >
> > > Congrats, Matthias!
> >
> >
>


Re: [ANNOUNCE] New Apache Flink PMC Member - Matthias Pohl

2023-08-04 Thread Alexander Fedulov
Congrats!

Best,
Alex

On Fri, 4 Aug 2023 at 11:09, Dan Zou  wrote:

> Congrats, Matthias!
>
> Best,
> Dan Zou
>
>
>
>
>
> > 2023年8月4日 13:12,Samrat Deb  写道:
> >
> > Congrats, Matthias!
>
>


[jira] [Created] (FLINK-32753) Print JVM flags on AZP

2023-08-04 Thread Zakelly Lan (Jira)
Zakelly Lan created FLINK-32753:
---

 Summary: Print JVM flags on AZP
 Key: FLINK-32753
 URL: https://issues.apache.org/jira/browse/FLINK-32753
 Project: Flink
  Issue Type: Improvement
  Components: Build System / Azure Pipelines
Reporter: Zakelly Lan
 Fix For: 1.18.0


I suggest printing JVM flags before the tests run, which could help investigate 
the test failures (especially memory or GC related issue). An example:  
[https://dev.azure.com/lzq82555906/42941eae-0335-452a-89c5-bd6a71809dc9/_apis/build/builds/122/logs/157]
 . You may search 'JVM information' in this log.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


Re: [ANNOUNCE] New Apache Flink PMC Member - Matthias Pohl

2023-08-04 Thread Dan Zou
Congrats, Matthias!

Best,
Dan Zou   





> 2023年8月4日 13:12,Samrat Deb  写道:
> 
> Congrats, Matthias!



Re: [ANNOUNCE] New Apache Flink Committer - Hong Teoh

2023-08-04 Thread Dan Zou
Congrats, Hong!

Best,
Dan Zou   





> 2023年8月4日 15:30,Lijie Wang  写道:
> 
> Congratulations, Hong!
> 
> Best,
> Lijie
> 
> Paul Lam  于2023年8月4日周五 15:18写道:
> 
>> Congrats, Hong!
>> 
>> Best,
>> Paul Lam
>> 
>>> 2023年8月4日 14:59,Jark Wu  写道:
>>> 
>>> Congratulations, Hong!
>>> 
>>> Best,
>>> Jark
>>> 
>>> On Fri, 4 Aug 2023 at 14:24, Sergey Nuyanzin 
>> wrote:
>>> 
 Congratulations, Hong!
 
 On Fri, Aug 4, 2023 at 7:25 AM Shammon FY  wrote:
 
> Congratulations, Hong!
> 
> Best,
> Shammon FY
> 
> On Fri, Aug 4, 2023 at 12:33 PM Jing Ge 
> wrote:
> 
>> congrats! Hong!
>> 
>> Best regards,
>> Jing
>> 
>> On Fri, Aug 4, 2023 at 11:48 AM Qingsheng Ren 
> wrote:
>> 
>>> Congratulations and welcome aboard, Hong!
>>> 
>>> Best,
>>> Qingsheng
>>> 
>>> On Fri, Aug 4, 2023 at 11:04 AM Matt Wang  wrote:
>>> 
 Congratulations, Hong!
 
 
 --
 
 Best,
 Matt Wang
 
 
  Replied Message 
 | From | Weihua Hu |
 | Date | 08/4/2023 10:55 |
 | To |  |
 | Subject | Re: [ANNOUNCE] New Apache Flink Committer - Hong Teoh |
 Congratulations, Hong!
 
 Best,
 Weihua
 
 
 On Fri, Aug 4, 2023 at 10:49 AM Samrat Deb 
>>> wrote:
 
 Congratulations, Hong Teoh
 
 On Fri, 4 Aug 2023 at 7:52 AM, Benchao Li 
>> wrote:
 
 Congratulations, Hong!
 
 yuxia  于2023年8月4日周五 09:23写道:
 
 Congratulations, Hong Teoh!
 
 Best regards,
 Yuxia
 
 - 原始邮件 -
 发件人: "Matthias Pohl" 
 收件人: "dev" 
 发送时间: 星期四, 2023年 8 月 03日 下午 11:24:39
 主题: Re: [ANNOUNCE] New Apache Flink Committer - Hong Teoh
 
 Congratulations, Hong! :)
 
 On Thu, Aug 3, 2023 at 3:39 PM Leonard Xu 
 wrote:
 
 Congratulations, Hong!
 
 
 Best,
 Leonard
 
 On Aug 3, 2023, at 8:45 PM, Jiabao Sun >>> .INVALID>
 wrote:
 
 Congratulations, Hong Teoh!
 
 Best,
 Jiabao Sun
 
 2023年8月3日 下午7:32,Danny Cranmer  写道:
 
 On behalf of the PMC, I'm very happy to announce Hong Teoh as a
 new
 Flink
 Committer.
 
 Hong has been active in the Flink community for over 1 year and
 has
 played
 a key role in developing and maintaining AWS integrations, core
 connector
 APIs and more recently, improvements to the Flink REST API.
 Additionally,
 Hong is a very active community member, supporting users and
 participating
 in discussions on the mailing lists, Flink slack channels and
 speaking
 at
 conferences.
 
 Please join me in congratulating Hong for becoming a Flink
 Committer!
 
 Thanks,
 Danny Cranmer (on behalf of the Flink PMC)
 
 
 
 
 
 
 --
 
 Best,
 Benchao Li
 
 
 
>>> 
>> 
> 
 
 
 --
 Best regards,
 Sergey
 
>> 
>> 



[jira] [Created] (FLINK-32752) Release Testing: Verify FLINK-24909 SQL syntax highlighting in SQL Client

2023-08-04 Thread Sergey Nuyanzin (Jira)
Sergey Nuyanzin created FLINK-32752:
---

 Summary: Release Testing: Verify FLINK-24909 SQL syntax 
highlighting in SQL Client
 Key: FLINK-32752
 URL: https://issues.apache.org/jira/browse/FLINK-32752
 Project: Flink
  Issue Type: Sub-task
  Components: Tests
Reporter: Sergey Nuyanzin


After it is possible to specify syntax highlight color schema as mentioned in 
doc via 
{{sql-client.display.color-schema}} config option
{code:sql}
SET 'sql-client.display.color-schema' = ...
{code}
Possible values are  {{chester}}, {{dracula}}, {{solarized}}, {{vs2010}}, 
{{obsidian}}, {{geshi}}, {{default}}.
It allows to highlight keywords, quoted text, sql identifiers quoted text 
(ticks for default dialect and double quotes for Hive), comments (both one-line 
and block comments), hints



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


Re: [ANNOUNCE] New Apache Flink Committer - Hong Teoh

2023-08-04 Thread weijie guo
Congratulations, Hong!

Best regards,

Weijie


Lijie Wang  于2023年8月4日周五 15:31写道:

> Congratulations, Hong!
>
> Best,
> Lijie
>
> Paul Lam  于2023年8月4日周五 15:18写道:
>
> > Congrats, Hong!
> >
> > Best,
> > Paul Lam
> >
> > > 2023年8月4日 14:59,Jark Wu  写道:
> > >
> > > Congratulations, Hong!
> > >
> > > Best,
> > > Jark
> > >
> > > On Fri, 4 Aug 2023 at 14:24, Sergey Nuyanzin 
> > wrote:
> > >
> > >> Congratulations, Hong!
> > >>
> > >> On Fri, Aug 4, 2023 at 7:25 AM Shammon FY  wrote:
> > >>
> > >>> Congratulations, Hong!
> > >>>
> > >>> Best,
> > >>> Shammon FY
> > >>>
> > >>> On Fri, Aug 4, 2023 at 12:33 PM Jing Ge 
> > >>> wrote:
> > >>>
> >  congrats! Hong!
> > 
> >  Best regards,
> >  Jing
> > 
> >  On Fri, Aug 4, 2023 at 11:48 AM Qingsheng Ren 
> > >>> wrote:
> > 
> > > Congratulations and welcome aboard, Hong!
> > >
> > > Best,
> > > Qingsheng
> > >
> > > On Fri, Aug 4, 2023 at 11:04 AM Matt Wang  wrote:
> > >
> > >> Congratulations, Hong!
> > >>
> > >>
> > >> --
> > >>
> > >> Best,
> > >> Matt Wang
> > >>
> > >>
> > >>  Replied Message 
> > >> | From | Weihua Hu |
> > >> | Date | 08/4/2023 10:55 |
> > >> | To |  |
> > >> | Subject | Re: [ANNOUNCE] New Apache Flink Committer - Hong Teoh
> |
> > >> Congratulations, Hong!
> > >>
> > >> Best,
> > >> Weihua
> > >>
> > >>
> > >> On Fri, Aug 4, 2023 at 10:49 AM Samrat Deb  >
> > > wrote:
> > >>
> > >> Congratulations, Hong Teoh
> > >>
> > >> On Fri, 4 Aug 2023 at 7:52 AM, Benchao Li 
> >  wrote:
> > >>
> > >> Congratulations, Hong!
> > >>
> > >> yuxia  于2023年8月4日周五 09:23写道:
> > >>
> > >> Congratulations, Hong Teoh!
> > >>
> > >> Best regards,
> > >> Yuxia
> > >>
> > >> - 原始邮件 -
> > >> 发件人: "Matthias Pohl" 
> > >> 收件人: "dev" 
> > >> 发送时间: 星期四, 2023年 8 月 03日 下午 11:24:39
> > >> 主题: Re: [ANNOUNCE] New Apache Flink Committer - Hong Teoh
> > >>
> > >> Congratulations, Hong! :)
> > >>
> > >> On Thu, Aug 3, 2023 at 3:39 PM Leonard Xu 
> > >> wrote:
> > >>
> > >> Congratulations, Hong!
> > >>
> > >>
> > >> Best,
> > >> Leonard
> > >>
> > >> On Aug 3, 2023, at 8:45 PM, Jiabao Sun  > >> .INVALID>
> > >> wrote:
> > >>
> > >> Congratulations, Hong Teoh!
> > >>
> > >> Best,
> > >> Jiabao Sun
> > >>
> > >> 2023年8月3日 下午7:32,Danny Cranmer  写道:
> > >>
> > >> On behalf of the PMC, I'm very happy to announce Hong Teoh as a
> > >> new
> > >> Flink
> > >> Committer.
> > >>
> > >> Hong has been active in the Flink community for over 1 year and
> > >> has
> > >> played
> > >> a key role in developing and maintaining AWS integrations, core
> > >> connector
> > >> APIs and more recently, improvements to the Flink REST API.
> > >> Additionally,
> > >> Hong is a very active community member, supporting users and
> > >> participating
> > >> in discussions on the mailing lists, Flink slack channels and
> > >> speaking
> > >> at
> > >> conferences.
> > >>
> > >> Please join me in congratulating Hong for becoming a Flink
> > >> Committer!
> > >>
> > >> Thanks,
> > >> Danny Cranmer (on behalf of the Flink PMC)
> > >>
> > >>
> > >>
> > >>
> > >>
> > >>
> > >> --
> > >>
> > >> Best,
> > >> Benchao Li
> > >>
> > >>
> > >>
> > >
> > 
> > >>>
> > >>
> > >>
> > >> --
> > >> Best regards,
> > >> Sergey
> > >>
> >
> >
>


Re: [ANNOUNCE] New Apache Flink PMC Member - Matthias Pohl

2023-08-04 Thread Danny Cranmer
Congrats Matthias!

Very well deserved, thankyou for your continuous, consistent contributions.
Welcome.

Thanks,
Danny

On Fri, Aug 4, 2023 at 9:30 AM Feng Jin  wrote:

> Congratulations, Matthias!
>
> Best regards
>
> Feng
>
> On Fri, Aug 4, 2023 at 4:29 PM weijie guo 
> wrote:
>
> > Congratulations, Matthias!
> >
> > Best regards,
> >
> > Weijie
> >
> >
> > Wencong Liu  于2023年8月4日周五 15:50写道:
> >
> > > Congratulations, Matthias!
> > >
> > > Best,
> > > Wencong Liu
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > > At 2023-08-04 11:18:00, "Xintong Song"  wrote:
> > > >Hi everyone,
> > > >
> > > >On behalf of the PMC, I'm very happy to announce that Matthias Pohl
> has
> > > >joined the Flink PMC!
> > > >
> > > >Matthias has been consistently contributing to the project since Sep
> > 2020,
> > > >and became a committer in Dec 2021. He mainly works in Flink's
> > distributed
> > > >coordination and high availability areas. He has worked on many FLIPs
> > > >including FLIP195/270/285. He helped a lot with the release
> management,
> > > >being one of the Flink 1.17 release managers and also very active in
> > Flink
> > > >1.18 / 2.0 efforts. He also contributed a lot to improving the build
> > > >stability.
> > > >
> > > >Please join me in congratulating Matthias!
> > > >
> > > >Best,
> > > >
> > > >Xintong (on behalf of the Apache Flink PMC)
> > >
> >
>


Re: [ANNOUNCE] New Apache Flink Committer - Weihua Hu

2023-08-04 Thread Danny Cranmer
Congrats and welcome to the team, Weihua!

Thanks,
Danny

On Fri, Aug 4, 2023 at 9:30 AM Feng Jin  wrote:

> Congratulations Weihua!
>
> Best regards,
>
> Feng
>
> On Fri, Aug 4, 2023 at 4:28 PM weijie guo 
> wrote:
>
> > Congratulations Weihua!
> >
> > Best regards,
> >
> > Weijie
> >
> >
> > Lijie Wang  于2023年8月4日周五 15:28写道:
> >
> > > Congratulations, Weihua!
> > >
> > > Best,
> > > Lijie
> > >
> > > yuxia  于2023年8月4日周五 15:14写道:
> > >
> > > > Congratulations, Weihua!
> > > >
> > > > Best regards,
> > > > Yuxia
> > > >
> > > > - 原始邮件 -
> > > > 发件人: "Yun Tang" 
> > > > 收件人: "dev" 
> > > > 发送时间: 星期五, 2023年 8 月 04日 下午 3:05:30
> > > > 主题: Re: [ANNOUNCE] New Apache Flink Committer - Weihua Hu
> > > >
> > > > Congratulations, Weihua!
> > > >
> > > >
> > > > Best
> > > > Yun Tang
> > > > 
> > > > From: Jark Wu 
> > > > Sent: Friday, August 4, 2023 15:00
> > > > To: dev@flink.apache.org 
> > > > Subject: Re: [ANNOUNCE] New Apache Flink Committer - Weihua Hu
> > > >
> > > > Congratulations, Weihua!
> > > >
> > > > Best,
> > > > Jark
> > > >
> > > > On Fri, 4 Aug 2023 at 14:48, Yuxin Tan 
> wrote:
> > > >
> > > > > Congratulations Weihua!
> > > > >
> > > > > Best,
> > > > > Yuxin
> > > > >
> > > > >
> > > > > Junrui Lee  于2023年8月4日周五 14:28写道:
> > > > >
> > > > > > Congrats, Weihua!
> > > > > > Best,
> > > > > > Junrui
> > > > > >
> > > > > > Geng Biao  于2023年8月4日周五 14:25写道:
> > > > > >
> > > > > > > Congrats, Weihua!
> > > > > > > Best,
> > > > > > > Biao Geng
> > > > > > >
> > > > > > > 发送自 Outlook for iOS
> > > > > > > 
> > > > > > > 发件人: 周仁祥 
> > > > > > > 发送时间: Friday, August 4, 2023 2:23:42 PM
> > > > > > > 收件人: dev@flink.apache.org 
> > > > > > > 抄送: Weihua Hu 
> > > > > > > 主题: Re: [ANNOUNCE] New Apache Flink Committer - Weihua Hu
> > > > > > >
> > > > > > > Congratulations, Weihua~
> > > > > > >
> > > > > > > > 2023年8月4日 14:21,Sergey Nuyanzin  写道:
> > > > > > > >
> > > > > > > > Congratulations, Weihua!
> > > > > > > >
> > > > > > > > On Fri, Aug 4, 2023 at 8:03 AM Chen Zhanghao <
> > > > > > zhanghao.c...@outlook.com>
> > > > > > > > wrote:
> > > > > > > >
> > > > > > > >> Congratulations, Weihua!
> > > > > > > >>
> > > > > > > >> Best,
> > > > > > > >> Zhanghao Chen
> > > > > > > >> 
> > > > > > > >> 发件人: Xintong Song 
> > > > > > > >> 发送时间: 2023年8月4日 11:18
> > > > > > > >> 收件人: dev 
> > > > > > > >> 抄送: Weihua Hu 
> > > > > > > >> 主题: [ANNOUNCE] New Apache Flink Committer - Weihua Hu
> > > > > > > >>
> > > > > > > >> Hi everyone,
> > > > > > > >>
> > > > > > > >> On behalf of the PMC, I'm very happy to announce Weihua Hu
> as
> > a
> > > > new
> > > > > > > Flink
> > > > > > > >> Committer!
> > > > > > > >>
> > > > > > > >> Weihua has been consistently contributing to the project
> since
> > > May
> > > > > > > 2022. He
> > > > > > > >> mainly works in Flink's distributed coordination areas. He
> is
> > > the
> > > > > main
> > > > > > > >> contributor of FLIP-298 and many other improvements in
> > > large-scale
> > > > > job
> > > > > > > >> scheduling and improvements. He is also quite active in
> > mailing
> > > > > lists,
> > > > > > > >> participating discussions and answering user questions.
> > > > > > > >>
> > > > > > > >> Please join me in congratulating Weihua!
> > > > > > > >>
> > > > > > > >> Best,
> > > > > > > >>
> > > > > > > >> Xintong (on behalf of the Apache Flink PMC)
> > > > > > > >>
> > > > > > > >
> > > > > > > >
> > > > > > > > --
> > > > > > > > Best regards,
> > > > > > > > Sergey
> > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>


Re: [ANNOUNCE] New Apache Flink PMC Member - Matthias Pohl

2023-08-04 Thread Feng Jin
Congratulations, Matthias!

Best regards

Feng

On Fri, Aug 4, 2023 at 4:29 PM weijie guo  wrote:

> Congratulations, Matthias!
>
> Best regards,
>
> Weijie
>
>
> Wencong Liu  于2023年8月4日周五 15:50写道:
>
> > Congratulations, Matthias!
> >
> > Best,
> > Wencong Liu
> >
> >
> >
> >
> >
> >
> >
> >
> >
> >
> >
> >
> >
> >
> >
> >
> >
> > At 2023-08-04 11:18:00, "Xintong Song"  wrote:
> > >Hi everyone,
> > >
> > >On behalf of the PMC, I'm very happy to announce that Matthias Pohl has
> > >joined the Flink PMC!
> > >
> > >Matthias has been consistently contributing to the project since Sep
> 2020,
> > >and became a committer in Dec 2021. He mainly works in Flink's
> distributed
> > >coordination and high availability areas. He has worked on many FLIPs
> > >including FLIP195/270/285. He helped a lot with the release management,
> > >being one of the Flink 1.17 release managers and also very active in
> Flink
> > >1.18 / 2.0 efforts. He also contributed a lot to improving the build
> > >stability.
> > >
> > >Please join me in congratulating Matthias!
> > >
> > >Best,
> > >
> > >Xintong (on behalf of the Apache Flink PMC)
> >
>


Re: [ANNOUNCE] New Apache Flink Committer - Weihua Hu

2023-08-04 Thread Feng Jin
Congratulations Weihua!

Best regards,

Feng

On Fri, Aug 4, 2023 at 4:28 PM weijie guo  wrote:

> Congratulations Weihua!
>
> Best regards,
>
> Weijie
>
>
> Lijie Wang  于2023年8月4日周五 15:28写道:
>
> > Congratulations, Weihua!
> >
> > Best,
> > Lijie
> >
> > yuxia  于2023年8月4日周五 15:14写道:
> >
> > > Congratulations, Weihua!
> > >
> > > Best regards,
> > > Yuxia
> > >
> > > - 原始邮件 -
> > > 发件人: "Yun Tang" 
> > > 收件人: "dev" 
> > > 发送时间: 星期五, 2023年 8 月 04日 下午 3:05:30
> > > 主题: Re: [ANNOUNCE] New Apache Flink Committer - Weihua Hu
> > >
> > > Congratulations, Weihua!
> > >
> > >
> > > Best
> > > Yun Tang
> > > 
> > > From: Jark Wu 
> > > Sent: Friday, August 4, 2023 15:00
> > > To: dev@flink.apache.org 
> > > Subject: Re: [ANNOUNCE] New Apache Flink Committer - Weihua Hu
> > >
> > > Congratulations, Weihua!
> > >
> > > Best,
> > > Jark
> > >
> > > On Fri, 4 Aug 2023 at 14:48, Yuxin Tan  wrote:
> > >
> > > > Congratulations Weihua!
> > > >
> > > > Best,
> > > > Yuxin
> > > >
> > > >
> > > > Junrui Lee  于2023年8月4日周五 14:28写道:
> > > >
> > > > > Congrats, Weihua!
> > > > > Best,
> > > > > Junrui
> > > > >
> > > > > Geng Biao  于2023年8月4日周五 14:25写道:
> > > > >
> > > > > > Congrats, Weihua!
> > > > > > Best,
> > > > > > Biao Geng
> > > > > >
> > > > > > 发送自 Outlook for iOS
> > > > > > 
> > > > > > 发件人: 周仁祥 
> > > > > > 发送时间: Friday, August 4, 2023 2:23:42 PM
> > > > > > 收件人: dev@flink.apache.org 
> > > > > > 抄送: Weihua Hu 
> > > > > > 主题: Re: [ANNOUNCE] New Apache Flink Committer - Weihua Hu
> > > > > >
> > > > > > Congratulations, Weihua~
> > > > > >
> > > > > > > 2023年8月4日 14:21,Sergey Nuyanzin  写道:
> > > > > > >
> > > > > > > Congratulations, Weihua!
> > > > > > >
> > > > > > > On Fri, Aug 4, 2023 at 8:03 AM Chen Zhanghao <
> > > > > zhanghao.c...@outlook.com>
> > > > > > > wrote:
> > > > > > >
> > > > > > >> Congratulations, Weihua!
> > > > > > >>
> > > > > > >> Best,
> > > > > > >> Zhanghao Chen
> > > > > > >> 
> > > > > > >> 发件人: Xintong Song 
> > > > > > >> 发送时间: 2023年8月4日 11:18
> > > > > > >> 收件人: dev 
> > > > > > >> 抄送: Weihua Hu 
> > > > > > >> 主题: [ANNOUNCE] New Apache Flink Committer - Weihua Hu
> > > > > > >>
> > > > > > >> Hi everyone,
> > > > > > >>
> > > > > > >> On behalf of the PMC, I'm very happy to announce Weihua Hu as
> a
> > > new
> > > > > > Flink
> > > > > > >> Committer!
> > > > > > >>
> > > > > > >> Weihua has been consistently contributing to the project since
> > May
> > > > > > 2022. He
> > > > > > >> mainly works in Flink's distributed coordination areas. He is
> > the
> > > > main
> > > > > > >> contributor of FLIP-298 and many other improvements in
> > large-scale
> > > > job
> > > > > > >> scheduling and improvements. He is also quite active in
> mailing
> > > > lists,
> > > > > > >> participating discussions and answering user questions.
> > > > > > >>
> > > > > > >> Please join me in congratulating Weihua!
> > > > > > >>
> > > > > > >> Best,
> > > > > > >>
> > > > > > >> Xintong (on behalf of the Apache Flink PMC)
> > > > > > >>
> > > > > > >
> > > > > > >
> > > > > > > --
> > > > > > > Best regards,
> > > > > > > Sergey
> > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>


Re: [ANNOUNCE] New Apache Flink PMC Member - Matthias Pohl

2023-08-04 Thread weijie guo
Congratulations, Matthias!

Best regards,

Weijie


Wencong Liu  于2023年8月4日周五 15:50写道:

> Congratulations, Matthias!
>
> Best,
> Wencong Liu
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
> At 2023-08-04 11:18:00, "Xintong Song"  wrote:
> >Hi everyone,
> >
> >On behalf of the PMC, I'm very happy to announce that Matthias Pohl has
> >joined the Flink PMC!
> >
> >Matthias has been consistently contributing to the project since Sep 2020,
> >and became a committer in Dec 2021. He mainly works in Flink's distributed
> >coordination and high availability areas. He has worked on many FLIPs
> >including FLIP195/270/285. He helped a lot with the release management,
> >being one of the Flink 1.17 release managers and also very active in Flink
> >1.18 / 2.0 efforts. He also contributed a lot to improving the build
> >stability.
> >
> >Please join me in congratulating Matthias!
> >
> >Best,
> >
> >Xintong (on behalf of the Apache Flink PMC)
>


Re: [ANNOUNCE] New Apache Flink Committer - Weihua Hu

2023-08-04 Thread weijie guo
Congratulations Weihua!

Best regards,

Weijie


Lijie Wang  于2023年8月4日周五 15:28写道:

> Congratulations, Weihua!
>
> Best,
> Lijie
>
> yuxia  于2023年8月4日周五 15:14写道:
>
> > Congratulations, Weihua!
> >
> > Best regards,
> > Yuxia
> >
> > - 原始邮件 -
> > 发件人: "Yun Tang" 
> > 收件人: "dev" 
> > 发送时间: 星期五, 2023年 8 月 04日 下午 3:05:30
> > 主题: Re: [ANNOUNCE] New Apache Flink Committer - Weihua Hu
> >
> > Congratulations, Weihua!
> >
> >
> > Best
> > Yun Tang
> > 
> > From: Jark Wu 
> > Sent: Friday, August 4, 2023 15:00
> > To: dev@flink.apache.org 
> > Subject: Re: [ANNOUNCE] New Apache Flink Committer - Weihua Hu
> >
> > Congratulations, Weihua!
> >
> > Best,
> > Jark
> >
> > On Fri, 4 Aug 2023 at 14:48, Yuxin Tan  wrote:
> >
> > > Congratulations Weihua!
> > >
> > > Best,
> > > Yuxin
> > >
> > >
> > > Junrui Lee  于2023年8月4日周五 14:28写道:
> > >
> > > > Congrats, Weihua!
> > > > Best,
> > > > Junrui
> > > >
> > > > Geng Biao  于2023年8月4日周五 14:25写道:
> > > >
> > > > > Congrats, Weihua!
> > > > > Best,
> > > > > Biao Geng
> > > > >
> > > > > 发送自 Outlook for iOS
> > > > > 
> > > > > 发件人: 周仁祥 
> > > > > 发送时间: Friday, August 4, 2023 2:23:42 PM
> > > > > 收件人: dev@flink.apache.org 
> > > > > 抄送: Weihua Hu 
> > > > > 主题: Re: [ANNOUNCE] New Apache Flink Committer - Weihua Hu
> > > > >
> > > > > Congratulations, Weihua~
> > > > >
> > > > > > 2023年8月4日 14:21,Sergey Nuyanzin  写道:
> > > > > >
> > > > > > Congratulations, Weihua!
> > > > > >
> > > > > > On Fri, Aug 4, 2023 at 8:03 AM Chen Zhanghao <
> > > > zhanghao.c...@outlook.com>
> > > > > > wrote:
> > > > > >
> > > > > >> Congratulations, Weihua!
> > > > > >>
> > > > > >> Best,
> > > > > >> Zhanghao Chen
> > > > > >> 
> > > > > >> 发件人: Xintong Song 
> > > > > >> 发送时间: 2023年8月4日 11:18
> > > > > >> 收件人: dev 
> > > > > >> 抄送: Weihua Hu 
> > > > > >> 主题: [ANNOUNCE] New Apache Flink Committer - Weihua Hu
> > > > > >>
> > > > > >> Hi everyone,
> > > > > >>
> > > > > >> On behalf of the PMC, I'm very happy to announce Weihua Hu as a
> > new
> > > > > Flink
> > > > > >> Committer!
> > > > > >>
> > > > > >> Weihua has been consistently contributing to the project since
> May
> > > > > 2022. He
> > > > > >> mainly works in Flink's distributed coordination areas. He is
> the
> > > main
> > > > > >> contributor of FLIP-298 and many other improvements in
> large-scale
> > > job
> > > > > >> scheduling and improvements. He is also quite active in mailing
> > > lists,
> > > > > >> participating discussions and answering user questions.
> > > > > >>
> > > > > >> Please join me in congratulating Weihua!
> > > > > >>
> > > > > >> Best,
> > > > > >>
> > > > > >> Xintong (on behalf of the Apache Flink PMC)
> > > > > >>
> > > > > >
> > > > > >
> > > > > > --
> > > > > > Best regards,
> > > > > > Sergey
> > > > >
> > > > >
> > > >
> > >
> >
>


Re:[ANNOUNCE] New Apache Flink PMC Member - Matthias Pohl

2023-08-04 Thread Wencong Liu
Congratulations, Matthias!

Best,
Wencong Liu

















At 2023-08-04 11:18:00, "Xintong Song"  wrote:
>Hi everyone,
>
>On behalf of the PMC, I'm very happy to announce that Matthias Pohl has
>joined the Flink PMC!
>
>Matthias has been consistently contributing to the project since Sep 2020,
>and became a committer in Dec 2021. He mainly works in Flink's distributed
>coordination and high availability areas. He has worked on many FLIPs
>including FLIP195/270/285. He helped a lot with the release management,
>being one of the Flink 1.17 release managers and also very active in Flink
>1.18 / 2.0 efforts. He also contributed a lot to improving the build
>stability.
>
>Please join me in congratulating Matthias!
>
>Best,
>
>Xintong (on behalf of the Apache Flink PMC)


Re: [ANNOUNCE] New Apache Flink Committer - Hong Teoh

2023-08-04 Thread Lijie Wang
Congratulations, Hong!

Best,
Lijie

Paul Lam  于2023年8月4日周五 15:18写道:

> Congrats, Hong!
>
> Best,
> Paul Lam
>
> > 2023年8月4日 14:59,Jark Wu  写道:
> >
> > Congratulations, Hong!
> >
> > Best,
> > Jark
> >
> > On Fri, 4 Aug 2023 at 14:24, Sergey Nuyanzin 
> wrote:
> >
> >> Congratulations, Hong!
> >>
> >> On Fri, Aug 4, 2023 at 7:25 AM Shammon FY  wrote:
> >>
> >>> Congratulations, Hong!
> >>>
> >>> Best,
> >>> Shammon FY
> >>>
> >>> On Fri, Aug 4, 2023 at 12:33 PM Jing Ge 
> >>> wrote:
> >>>
>  congrats! Hong!
> 
>  Best regards,
>  Jing
> 
>  On Fri, Aug 4, 2023 at 11:48 AM Qingsheng Ren 
> >>> wrote:
> 
> > Congratulations and welcome aboard, Hong!
> >
> > Best,
> > Qingsheng
> >
> > On Fri, Aug 4, 2023 at 11:04 AM Matt Wang  wrote:
> >
> >> Congratulations, Hong!
> >>
> >>
> >> --
> >>
> >> Best,
> >> Matt Wang
> >>
> >>
> >>  Replied Message 
> >> | From | Weihua Hu |
> >> | Date | 08/4/2023 10:55 |
> >> | To |  |
> >> | Subject | Re: [ANNOUNCE] New Apache Flink Committer - Hong Teoh |
> >> Congratulations, Hong!
> >>
> >> Best,
> >> Weihua
> >>
> >>
> >> On Fri, Aug 4, 2023 at 10:49 AM Samrat Deb 
> > wrote:
> >>
> >> Congratulations, Hong Teoh
> >>
> >> On Fri, 4 Aug 2023 at 7:52 AM, Benchao Li 
>  wrote:
> >>
> >> Congratulations, Hong!
> >>
> >> yuxia  于2023年8月4日周五 09:23写道:
> >>
> >> Congratulations, Hong Teoh!
> >>
> >> Best regards,
> >> Yuxia
> >>
> >> - 原始邮件 -
> >> 发件人: "Matthias Pohl" 
> >> 收件人: "dev" 
> >> 发送时间: 星期四, 2023年 8 月 03日 下午 11:24:39
> >> 主题: Re: [ANNOUNCE] New Apache Flink Committer - Hong Teoh
> >>
> >> Congratulations, Hong! :)
> >>
> >> On Thu, Aug 3, 2023 at 3:39 PM Leonard Xu 
> >> wrote:
> >>
> >> Congratulations, Hong!
> >>
> >>
> >> Best,
> >> Leonard
> >>
> >> On Aug 3, 2023, at 8:45 PM, Jiabao Sun  >> .INVALID>
> >> wrote:
> >>
> >> Congratulations, Hong Teoh!
> >>
> >> Best,
> >> Jiabao Sun
> >>
> >> 2023年8月3日 下午7:32,Danny Cranmer  写道:
> >>
> >> On behalf of the PMC, I'm very happy to announce Hong Teoh as a
> >> new
> >> Flink
> >> Committer.
> >>
> >> Hong has been active in the Flink community for over 1 year and
> >> has
> >> played
> >> a key role in developing and maintaining AWS integrations, core
> >> connector
> >> APIs and more recently, improvements to the Flink REST API.
> >> Additionally,
> >> Hong is a very active community member, supporting users and
> >> participating
> >> in discussions on the mailing lists, Flink slack channels and
> >> speaking
> >> at
> >> conferences.
> >>
> >> Please join me in congratulating Hong for becoming a Flink
> >> Committer!
> >>
> >> Thanks,
> >> Danny Cranmer (on behalf of the Flink PMC)
> >>
> >>
> >>
> >>
> >>
> >>
> >> --
> >>
> >> Best,
> >> Benchao Li
> >>
> >>
> >>
> >
> 
> >>>
> >>
> >>
> >> --
> >> Best regards,
> >> Sergey
> >>
>
>


Re: [ANNOUNCE] New Apache Flink PMC Member - Matthias Pohl

2023-08-04 Thread Lijie Wang
Congratulation, Matthias!

Best,
Lijie

Konstantin Knauf  于2023年8月4日周五 15:27写道:

> Congrats, Matthias!
>
> Am Fr., 4. Aug. 2023 um 09:15 Uhr schrieb Paul Lam  >:
>
> > Congratulation, Matthias!
> >
> > Best,
> > Paul Lam
> >
> > > 2023年8月4日 15:09,yuxia  写道:
> > >
> > > Congratulation, Matthias!
> > >
> > > Best regards,
> > > Yuxia
> > >
> > > - 原始邮件 -
> > > 发件人: "Yun Tang" 
> > > 收件人: "dev" 
> > > 发送时间: 星期五, 2023年 8 月 04日 下午 3:04:52
> > > 主题: Re: [ANNOUNCE] New Apache Flink PMC Member - Matthias Pohl
> > >
> > > Congratulation, Matthias!
> > >
> > >
> > > Best
> > > Yun Tang
> > > 
> > > From: Jark Wu 
> > > Sent: Friday, August 4, 2023 15:00
> > > To: dev@flink.apache.org 
> > > Subject: Re: [ANNOUNCE] New Apache Flink PMC Member - Matthias Pohl
> > >
> > > Congratulations, Matthias!
> > >
> > > Best,
> > > Jark
> > >
> > > On Fri, 4 Aug 2023 at 14:59, Weihua Hu  wrote:
> > >
> > >> Congratulations,  Matthias!
> > >>
> > >> Best,
> > >> Weihua
> > >>
> > >>
> > >> On Fri, Aug 4, 2023 at 2:49 PM Yuxin Tan 
> > wrote:
> > >>
> > >>> Congratulations, Matthias!
> > >>>
> > >>> Best,
> > >>> Yuxin
> > >>>
> > >>>
> > >>> Sergey Nuyanzin  于2023年8月4日周五 14:21写道:
> > >>>
> >  Congratulations, Matthias!
> >  Well deserved!
> > 
> >  On Fri, Aug 4, 2023 at 7:59 AM liu ron  wrote:
> > 
> > > Congrats, Matthias!
> > >
> > > Best,
> > > Ron
> > >
> > > Shammon FY  于2023年8月4日周五 13:24写道:
> > >
> > >> Congratulations, Matthias!
> > >>
> > >> On Fri, Aug 4, 2023 at 1:13 PM Samrat Deb 
> >  wrote:
> > >>
> > >>> Congrats, Matthias!
> > >>>
> > >>>
> > >>> On Fri, 4 Aug 2023 at 10:13 AM, Benchao Li  > >>>
> > > wrote:
> > >>>
> >  Congratulations, Matthias!
> > 
> >  Jing Ge  于2023年8月4日周五 12:35写道:
> > 
> > > Congrats! Matthias!
> > >
> > > Best regards,
> > > Jing
> > >
> > > On Fri, Aug 4, 2023 at 12:09 PM Yangze Guo <
> > >> karma...@gmail.com
> > 
> > >> wrote:
> > >
> > >> Congrats, Matthias!
> > >>
> > >> Best,
> > >> Yangze Guo
> > >>
> > >> On Fri, Aug 4, 2023 at 11:44 AM Qingsheng Ren <
> >  re...@apache.org>
> >  wrote:
> > >>>
> > >>> Congratulations, Matthias! This is absolutely well
> > >>> deserved.
> > >>>
> > >>> Best,
> > >>> Qingsheng
> > >>>
> > >>> On Fri, Aug 4, 2023 at 11:31 AM Rui Fan <
> >  1996fan...@gmail.com>
> >  wrote:
> > >>>
> >  Congratulations Matthias, well deserved!
> > 
> >  Best,
> >  Rui Fan
> > 
> >  On Fri, Aug 4, 2023 at 11:30 AM Leonard Xu <
> > > xbjt...@gmail.com>
> > > wrote:
> > 
> > > Congratulations,  Matthias.
> > >
> > > Well deserved ^_^
> > >
> > > Best,
> > > Leonard
> > >
> > >
> > >> On Aug 4, 2023, at 11:18 AM, Xintong Song <
> >  tonysong...@gmail.com
> > >>
> >  wrote:
> > >>
> > >> Hi everyone,
> > >>
> > >> On behalf of the PMC, I'm very happy to announce
> > >> that
> > >>> Matthias
> > >> Pohl has
> > >> joined the Flink PMC!
> > >>
> > >> Matthias has been consistently contributing to the
> > > project
> >  since
> > >> Sep
> > > 2020,
> > >> and became a committer in Dec 2021. He mainly works
> > >>> in
> > >>> Flink's
> > > distributed
> > >> coordination and high availability areas. He has
> > >>> worked
> > > on
> > >>> many
> > >> FLIPs
> > >> including FLIP195/270/285. He helped a lot with the
> > > release
> > >> management,
> > >> being one of the Flink 1.17 release managers and
> > >> also
> > > very
> >  active
> > >> in
> > > Flink
> > >> 1.18 / 2.0 efforts. He also contributed a lot to
> > > improving
> > >>> the
> > >> build
> > >> stability.
> > >>
> > >> Please join me in congratulating Matthias!
> > >>
> > >> Best,
> > >>
> > >> Xintong (on behalf of the Apache Flink PMC)
> > >
> > >
> > 
> > >>
> > >
> > 
> > 
> >  --
> > 
> >  Best,
> >  Benchao Li
> > 
> > >>>
> > >>
> > >
> > 
> > 
> >  --
> >  Best regards,
> >  Sergey
> > 
> > >>>
> > >>
> >
> >
>
> --
> https://twitter.com/snntrable
> https://github.com/knaufk
>


Re: [ANNOUNCE] New Apache Flink Committer - Weihua Hu

2023-08-04 Thread Lijie Wang
Congratulations, Weihua!

Best,
Lijie

yuxia  于2023年8月4日周五 15:14写道:

> Congratulations, Weihua!
>
> Best regards,
> Yuxia
>
> - 原始邮件 -
> 发件人: "Yun Tang" 
> 收件人: "dev" 
> 发送时间: 星期五, 2023年 8 月 04日 下午 3:05:30
> 主题: Re: [ANNOUNCE] New Apache Flink Committer - Weihua Hu
>
> Congratulations, Weihua!
>
>
> Best
> Yun Tang
> 
> From: Jark Wu 
> Sent: Friday, August 4, 2023 15:00
> To: dev@flink.apache.org 
> Subject: Re: [ANNOUNCE] New Apache Flink Committer - Weihua Hu
>
> Congratulations, Weihua!
>
> Best,
> Jark
>
> On Fri, 4 Aug 2023 at 14:48, Yuxin Tan  wrote:
>
> > Congratulations Weihua!
> >
> > Best,
> > Yuxin
> >
> >
> > Junrui Lee  于2023年8月4日周五 14:28写道:
> >
> > > Congrats, Weihua!
> > > Best,
> > > Junrui
> > >
> > > Geng Biao  于2023年8月4日周五 14:25写道:
> > >
> > > > Congrats, Weihua!
> > > > Best,
> > > > Biao Geng
> > > >
> > > > 发送自 Outlook for iOS
> > > > 
> > > > 发件人: 周仁祥 
> > > > 发送时间: Friday, August 4, 2023 2:23:42 PM
> > > > 收件人: dev@flink.apache.org 
> > > > 抄送: Weihua Hu 
> > > > 主题: Re: [ANNOUNCE] New Apache Flink Committer - Weihua Hu
> > > >
> > > > Congratulations, Weihua~
> > > >
> > > > > 2023年8月4日 14:21,Sergey Nuyanzin  写道:
> > > > >
> > > > > Congratulations, Weihua!
> > > > >
> > > > > On Fri, Aug 4, 2023 at 8:03 AM Chen Zhanghao <
> > > zhanghao.c...@outlook.com>
> > > > > wrote:
> > > > >
> > > > >> Congratulations, Weihua!
> > > > >>
> > > > >> Best,
> > > > >> Zhanghao Chen
> > > > >> 
> > > > >> 发件人: Xintong Song 
> > > > >> 发送时间: 2023年8月4日 11:18
> > > > >> 收件人: dev 
> > > > >> 抄送: Weihua Hu 
> > > > >> 主题: [ANNOUNCE] New Apache Flink Committer - Weihua Hu
> > > > >>
> > > > >> Hi everyone,
> > > > >>
> > > > >> On behalf of the PMC, I'm very happy to announce Weihua Hu as a
> new
> > > > Flink
> > > > >> Committer!
> > > > >>
> > > > >> Weihua has been consistently contributing to the project since May
> > > > 2022. He
> > > > >> mainly works in Flink's distributed coordination areas. He is the
> > main
> > > > >> contributor of FLIP-298 and many other improvements in large-scale
> > job
> > > > >> scheduling and improvements. He is also quite active in mailing
> > lists,
> > > > >> participating discussions and answering user questions.
> > > > >>
> > > > >> Please join me in congratulating Weihua!
> > > > >>
> > > > >> Best,
> > > > >>
> > > > >> Xintong (on behalf of the Apache Flink PMC)
> > > > >>
> > > > >
> > > > >
> > > > > --
> > > > > Best regards,
> > > > > Sergey
> > > >
> > > >
> > >
> >
>


Re: [ANNOUNCE] New Apache Flink PMC Member - Matthias Pohl

2023-08-04 Thread Konstantin Knauf
Congrats, Matthias!

Am Fr., 4. Aug. 2023 um 09:15 Uhr schrieb Paul Lam :

> Congratulation, Matthias!
>
> Best,
> Paul Lam
>
> > 2023年8月4日 15:09,yuxia  写道:
> >
> > Congratulation, Matthias!
> >
> > Best regards,
> > Yuxia
> >
> > - 原始邮件 -
> > 发件人: "Yun Tang" 
> > 收件人: "dev" 
> > 发送时间: 星期五, 2023年 8 月 04日 下午 3:04:52
> > 主题: Re: [ANNOUNCE] New Apache Flink PMC Member - Matthias Pohl
> >
> > Congratulation, Matthias!
> >
> >
> > Best
> > Yun Tang
> > 
> > From: Jark Wu 
> > Sent: Friday, August 4, 2023 15:00
> > To: dev@flink.apache.org 
> > Subject: Re: [ANNOUNCE] New Apache Flink PMC Member - Matthias Pohl
> >
> > Congratulations, Matthias!
> >
> > Best,
> > Jark
> >
> > On Fri, 4 Aug 2023 at 14:59, Weihua Hu  wrote:
> >
> >> Congratulations,  Matthias!
> >>
> >> Best,
> >> Weihua
> >>
> >>
> >> On Fri, Aug 4, 2023 at 2:49 PM Yuxin Tan 
> wrote:
> >>
> >>> Congratulations, Matthias!
> >>>
> >>> Best,
> >>> Yuxin
> >>>
> >>>
> >>> Sergey Nuyanzin  于2023年8月4日周五 14:21写道:
> >>>
>  Congratulations, Matthias!
>  Well deserved!
> 
>  On Fri, Aug 4, 2023 at 7:59 AM liu ron  wrote:
> 
> > Congrats, Matthias!
> >
> > Best,
> > Ron
> >
> > Shammon FY  于2023年8月4日周五 13:24写道:
> >
> >> Congratulations, Matthias!
> >>
> >> On Fri, Aug 4, 2023 at 1:13 PM Samrat Deb 
>  wrote:
> >>
> >>> Congrats, Matthias!
> >>>
> >>>
> >>> On Fri, 4 Aug 2023 at 10:13 AM, Benchao Li  >>>
> > wrote:
> >>>
>  Congratulations, Matthias!
> 
>  Jing Ge  于2023年8月4日周五 12:35写道:
> 
> > Congrats! Matthias!
> >
> > Best regards,
> > Jing
> >
> > On Fri, Aug 4, 2023 at 12:09 PM Yangze Guo <
> >> karma...@gmail.com
> 
> >> wrote:
> >
> >> Congrats, Matthias!
> >>
> >> Best,
> >> Yangze Guo
> >>
> >> On Fri, Aug 4, 2023 at 11:44 AM Qingsheng Ren <
>  re...@apache.org>
>  wrote:
> >>>
> >>> Congratulations, Matthias! This is absolutely well
> >>> deserved.
> >>>
> >>> Best,
> >>> Qingsheng
> >>>
> >>> On Fri, Aug 4, 2023 at 11:31 AM Rui Fan <
>  1996fan...@gmail.com>
>  wrote:
> >>>
>  Congratulations Matthias, well deserved!
> 
>  Best,
>  Rui Fan
> 
>  On Fri, Aug 4, 2023 at 11:30 AM Leonard Xu <
> > xbjt...@gmail.com>
> > wrote:
> 
> > Congratulations,  Matthias.
> >
> > Well deserved ^_^
> >
> > Best,
> > Leonard
> >
> >
> >> On Aug 4, 2023, at 11:18 AM, Xintong Song <
>  tonysong...@gmail.com
> >>
>  wrote:
> >>
> >> Hi everyone,
> >>
> >> On behalf of the PMC, I'm very happy to announce
> >> that
> >>> Matthias
> >> Pohl has
> >> joined the Flink PMC!
> >>
> >> Matthias has been consistently contributing to the
> > project
>  since
> >> Sep
> > 2020,
> >> and became a committer in Dec 2021. He mainly works
> >>> in
> >>> Flink's
> > distributed
> >> coordination and high availability areas. He has
> >>> worked
> > on
> >>> many
> >> FLIPs
> >> including FLIP195/270/285. He helped a lot with the
> > release
> >> management,
> >> being one of the Flink 1.17 release managers and
> >> also
> > very
>  active
> >> in
> > Flink
> >> 1.18 / 2.0 efforts. He also contributed a lot to
> > improving
> >>> the
> >> build
> >> stability.
> >>
> >> Please join me in congratulating Matthias!
> >>
> >> Best,
> >>
> >> Xintong (on behalf of the Apache Flink PMC)
> >
> >
> 
> >>
> >
> 
> 
>  --
> 
>  Best,
>  Benchao Li
> 
> >>>
> >>
> >
> 
> 
>  --
>  Best regards,
>  Sergey
> 
> >>>
> >>
>
>

-- 
https://twitter.com/snntrable
https://github.com/knaufk


Re: [ANNOUNCE] New Apache Flink Committer - Hong Teoh

2023-08-04 Thread Paul Lam
Congrats, Hong!

Best,
Paul Lam

> 2023年8月4日 14:59,Jark Wu  写道:
> 
> Congratulations, Hong!
> 
> Best,
> Jark
> 
> On Fri, 4 Aug 2023 at 14:24, Sergey Nuyanzin  wrote:
> 
>> Congratulations, Hong!
>> 
>> On Fri, Aug 4, 2023 at 7:25 AM Shammon FY  wrote:
>> 
>>> Congratulations, Hong!
>>> 
>>> Best,
>>> Shammon FY
>>> 
>>> On Fri, Aug 4, 2023 at 12:33 PM Jing Ge 
>>> wrote:
>>> 
 congrats! Hong!
 
 Best regards,
 Jing
 
 On Fri, Aug 4, 2023 at 11:48 AM Qingsheng Ren 
>>> wrote:
 
> Congratulations and welcome aboard, Hong!
> 
> Best,
> Qingsheng
> 
> On Fri, Aug 4, 2023 at 11:04 AM Matt Wang  wrote:
> 
>> Congratulations, Hong!
>> 
>> 
>> --
>> 
>> Best,
>> Matt Wang
>> 
>> 
>>  Replied Message 
>> | From | Weihua Hu |
>> | Date | 08/4/2023 10:55 |
>> | To |  |
>> | Subject | Re: [ANNOUNCE] New Apache Flink Committer - Hong Teoh |
>> Congratulations, Hong!
>> 
>> Best,
>> Weihua
>> 
>> 
>> On Fri, Aug 4, 2023 at 10:49 AM Samrat Deb 
> wrote:
>> 
>> Congratulations, Hong Teoh
>> 
>> On Fri, 4 Aug 2023 at 7:52 AM, Benchao Li 
 wrote:
>> 
>> Congratulations, Hong!
>> 
>> yuxia  于2023年8月4日周五 09:23写道:
>> 
>> Congratulations, Hong Teoh!
>> 
>> Best regards,
>> Yuxia
>> 
>> - 原始邮件 -
>> 发件人: "Matthias Pohl" 
>> 收件人: "dev" 
>> 发送时间: 星期四, 2023年 8 月 03日 下午 11:24:39
>> 主题: Re: [ANNOUNCE] New Apache Flink Committer - Hong Teoh
>> 
>> Congratulations, Hong! :)
>> 
>> On Thu, Aug 3, 2023 at 3:39 PM Leonard Xu 
>> wrote:
>> 
>> Congratulations, Hong!
>> 
>> 
>> Best,
>> Leonard
>> 
>> On Aug 3, 2023, at 8:45 PM, Jiabao Sun > .INVALID>
>> wrote:
>> 
>> Congratulations, Hong Teoh!
>> 
>> Best,
>> Jiabao Sun
>> 
>> 2023年8月3日 下午7:32,Danny Cranmer  写道:
>> 
>> On behalf of the PMC, I'm very happy to announce Hong Teoh as a
>> new
>> Flink
>> Committer.
>> 
>> Hong has been active in the Flink community for over 1 year and
>> has
>> played
>> a key role in developing and maintaining AWS integrations, core
>> connector
>> APIs and more recently, improvements to the Flink REST API.
>> Additionally,
>> Hong is a very active community member, supporting users and
>> participating
>> in discussions on the mailing lists, Flink slack channels and
>> speaking
>> at
>> conferences.
>> 
>> Please join me in congratulating Hong for becoming a Flink
>> Committer!
>> 
>> Thanks,
>> Danny Cranmer (on behalf of the Flink PMC)
>> 
>> 
>> 
>> 
>> 
>> 
>> --
>> 
>> Best,
>> Benchao Li
>> 
>> 
>> 
> 
 
>>> 
>> 
>> 
>> --
>> Best regards,
>> Sergey
>> 



Re: [ANNOUNCE] New Apache Flink PMC Member - Matthias Pohl

2023-08-04 Thread Paul Lam
Congratulation, Matthias!

Best,
Paul Lam

> 2023年8月4日 15:09,yuxia  写道:
> 
> Congratulation, Matthias!
> 
> Best regards,
> Yuxia
> 
> - 原始邮件 -
> 发件人: "Yun Tang" 
> 收件人: "dev" 
> 发送时间: 星期五, 2023年 8 月 04日 下午 3:04:52
> 主题: Re: [ANNOUNCE] New Apache Flink PMC Member - Matthias Pohl
> 
> Congratulation, Matthias!
> 
> 
> Best
> Yun Tang
> 
> From: Jark Wu 
> Sent: Friday, August 4, 2023 15:00
> To: dev@flink.apache.org 
> Subject: Re: [ANNOUNCE] New Apache Flink PMC Member - Matthias Pohl
> 
> Congratulations, Matthias!
> 
> Best,
> Jark
> 
> On Fri, 4 Aug 2023 at 14:59, Weihua Hu  wrote:
> 
>> Congratulations,  Matthias!
>> 
>> Best,
>> Weihua
>> 
>> 
>> On Fri, Aug 4, 2023 at 2:49 PM Yuxin Tan  wrote:
>> 
>>> Congratulations, Matthias!
>>> 
>>> Best,
>>> Yuxin
>>> 
>>> 
>>> Sergey Nuyanzin  于2023年8月4日周五 14:21写道:
>>> 
 Congratulations, Matthias!
 Well deserved!
 
 On Fri, Aug 4, 2023 at 7:59 AM liu ron  wrote:
 
> Congrats, Matthias!
> 
> Best,
> Ron
> 
> Shammon FY  于2023年8月4日周五 13:24写道:
> 
>> Congratulations, Matthias!
>> 
>> On Fri, Aug 4, 2023 at 1:13 PM Samrat Deb 
 wrote:
>> 
>>> Congrats, Matthias!
>>> 
>>> 
>>> On Fri, 4 Aug 2023 at 10:13 AM, Benchao Li >> 
> wrote:
>>> 
 Congratulations, Matthias!
 
 Jing Ge  于2023年8月4日周五 12:35写道:
 
> Congrats! Matthias!
> 
> Best regards,
> Jing
> 
> On Fri, Aug 4, 2023 at 12:09 PM Yangze Guo <
>> karma...@gmail.com
 
>> wrote:
> 
>> Congrats, Matthias!
>> 
>> Best,
>> Yangze Guo
>> 
>> On Fri, Aug 4, 2023 at 11:44 AM Qingsheng Ren <
 re...@apache.org>
 wrote:
>>> 
>>> Congratulations, Matthias! This is absolutely well
>>> deserved.
>>> 
>>> Best,
>>> Qingsheng
>>> 
>>> On Fri, Aug 4, 2023 at 11:31 AM Rui Fan <
 1996fan...@gmail.com>
 wrote:
>>> 
 Congratulations Matthias, well deserved!
 
 Best,
 Rui Fan
 
 On Fri, Aug 4, 2023 at 11:30 AM Leonard Xu <
> xbjt...@gmail.com>
> wrote:
 
> Congratulations,  Matthias.
> 
> Well deserved ^_^
> 
> Best,
> Leonard
> 
> 
>> On Aug 4, 2023, at 11:18 AM, Xintong Song <
 tonysong...@gmail.com
>> 
 wrote:
>> 
>> Hi everyone,
>> 
>> On behalf of the PMC, I'm very happy to announce
>> that
>>> Matthias
>> Pohl has
>> joined the Flink PMC!
>> 
>> Matthias has been consistently contributing to the
> project
 since
>> Sep
> 2020,
>> and became a committer in Dec 2021. He mainly works
>>> in
>>> Flink's
> distributed
>> coordination and high availability areas. He has
>>> worked
> on
>>> many
>> FLIPs
>> including FLIP195/270/285. He helped a lot with the
> release
>> management,
>> being one of the Flink 1.17 release managers and
>> also
> very
 active
>> in
> Flink
>> 1.18 / 2.0 efforts. He also contributed a lot to
> improving
>>> the
>> build
>> stability.
>> 
>> Please join me in congratulating Matthias!
>> 
>> Best,
>> 
>> Xintong (on behalf of the Apache Flink PMC)
> 
> 
 
>> 
> 
 
 
 --
 
 Best,
 Benchao Li
 
>>> 
>> 
> 
 
 
 --
 Best regards,
 Sergey
 
>>> 
>> 



Re: [ANNOUNCE] New Apache Flink Committer - Weihua Hu

2023-08-04 Thread yuxia
Congratulations, Weihua!

Best regards,
Yuxia

- 原始邮件 -
发件人: "Yun Tang" 
收件人: "dev" 
发送时间: 星期五, 2023年 8 月 04日 下午 3:05:30
主题: Re: [ANNOUNCE] New Apache Flink Committer - Weihua Hu

Congratulations, Weihua!


Best
Yun Tang

From: Jark Wu 
Sent: Friday, August 4, 2023 15:00
To: dev@flink.apache.org 
Subject: Re: [ANNOUNCE] New Apache Flink Committer - Weihua Hu

Congratulations, Weihua!

Best,
Jark

On Fri, 4 Aug 2023 at 14:48, Yuxin Tan  wrote:

> Congratulations Weihua!
>
> Best,
> Yuxin
>
>
> Junrui Lee  于2023年8月4日周五 14:28写道:
>
> > Congrats, Weihua!
> > Best,
> > Junrui
> >
> > Geng Biao  于2023年8月4日周五 14:25写道:
> >
> > > Congrats, Weihua!
> > > Best,
> > > Biao Geng
> > >
> > > 发送自 Outlook for iOS
> > > 
> > > 发件人: 周仁祥 
> > > 发送时间: Friday, August 4, 2023 2:23:42 PM
> > > 收件人: dev@flink.apache.org 
> > > 抄送: Weihua Hu 
> > > 主题: Re: [ANNOUNCE] New Apache Flink Committer - Weihua Hu
> > >
> > > Congratulations, Weihua~
> > >
> > > > 2023年8月4日 14:21,Sergey Nuyanzin  写道:
> > > >
> > > > Congratulations, Weihua!
> > > >
> > > > On Fri, Aug 4, 2023 at 8:03 AM Chen Zhanghao <
> > zhanghao.c...@outlook.com>
> > > > wrote:
> > > >
> > > >> Congratulations, Weihua!
> > > >>
> > > >> Best,
> > > >> Zhanghao Chen
> > > >> 
> > > >> 发件人: Xintong Song 
> > > >> 发送时间: 2023年8月4日 11:18
> > > >> 收件人: dev 
> > > >> 抄送: Weihua Hu 
> > > >> 主题: [ANNOUNCE] New Apache Flink Committer - Weihua Hu
> > > >>
> > > >> Hi everyone,
> > > >>
> > > >> On behalf of the PMC, I'm very happy to announce Weihua Hu as a new
> > > Flink
> > > >> Committer!
> > > >>
> > > >> Weihua has been consistently contributing to the project since May
> > > 2022. He
> > > >> mainly works in Flink's distributed coordination areas. He is the
> main
> > > >> contributor of FLIP-298 and many other improvements in large-scale
> job
> > > >> scheduling and improvements. He is also quite active in mailing
> lists,
> > > >> participating discussions and answering user questions.
> > > >>
> > > >> Please join me in congratulating Weihua!
> > > >>
> > > >> Best,
> > > >>
> > > >> Xintong (on behalf of the Apache Flink PMC)
> > > >>
> > > >
> > > >
> > > > --
> > > > Best regards,
> > > > Sergey
> > >
> > >
> >
>


Re: [ANNOUNCE] New Apache Flink PMC Member - Matthias Pohl

2023-08-04 Thread yuxia
Congratulation, Matthias!

Best regards,
Yuxia

- 原始邮件 -
发件人: "Yun Tang" 
收件人: "dev" 
发送时间: 星期五, 2023年 8 月 04日 下午 3:04:52
主题: Re: [ANNOUNCE] New Apache Flink PMC Member - Matthias Pohl

Congratulation, Matthias!


Best
Yun Tang

From: Jark Wu 
Sent: Friday, August 4, 2023 15:00
To: dev@flink.apache.org 
Subject: Re: [ANNOUNCE] New Apache Flink PMC Member - Matthias Pohl

Congratulations, Matthias!

Best,
Jark

On Fri, 4 Aug 2023 at 14:59, Weihua Hu  wrote:

> Congratulations,  Matthias!
>
> Best,
> Weihua
>
>
> On Fri, Aug 4, 2023 at 2:49 PM Yuxin Tan  wrote:
>
> > Congratulations, Matthias!
> >
> > Best,
> > Yuxin
> >
> >
> > Sergey Nuyanzin  于2023年8月4日周五 14:21写道:
> >
> > > Congratulations, Matthias!
> > > Well deserved!
> > >
> > > On Fri, Aug 4, 2023 at 7:59 AM liu ron  wrote:
> > >
> > > > Congrats, Matthias!
> > > >
> > > > Best,
> > > > Ron
> > > >
> > > > Shammon FY  于2023年8月4日周五 13:24写道:
> > > >
> > > > > Congratulations, Matthias!
> > > > >
> > > > > On Fri, Aug 4, 2023 at 1:13 PM Samrat Deb 
> > > wrote:
> > > > >
> > > > > > Congrats, Matthias!
> > > > > >
> > > > > >
> > > > > > On Fri, 4 Aug 2023 at 10:13 AM, Benchao Li  >
> > > > wrote:
> > > > > >
> > > > > > > Congratulations, Matthias!
> > > > > > >
> > > > > > > Jing Ge  于2023年8月4日周五 12:35写道:
> > > > > > >
> > > > > > > > Congrats! Matthias!
> > > > > > > >
> > > > > > > > Best regards,
> > > > > > > > Jing
> > > > > > > >
> > > > > > > > On Fri, Aug 4, 2023 at 12:09 PM Yangze Guo <
> karma...@gmail.com
> > >
> > > > > wrote:
> > > > > > > >
> > > > > > > > > Congrats, Matthias!
> > > > > > > > >
> > > > > > > > > Best,
> > > > > > > > > Yangze Guo
> > > > > > > > >
> > > > > > > > > On Fri, Aug 4, 2023 at 11:44 AM Qingsheng Ren <
> > > re...@apache.org>
> > > > > > > wrote:
> > > > > > > > > >
> > > > > > > > > > Congratulations, Matthias! This is absolutely well
> > deserved.
> > > > > > > > > >
> > > > > > > > > > Best,
> > > > > > > > > > Qingsheng
> > > > > > > > > >
> > > > > > > > > > On Fri, Aug 4, 2023 at 11:31 AM Rui Fan <
> > > 1996fan...@gmail.com>
> > > > > > > wrote:
> > > > > > > > > >
> > > > > > > > > > > Congratulations Matthias, well deserved!
> > > > > > > > > > >
> > > > > > > > > > > Best,
> > > > > > > > > > > Rui Fan
> > > > > > > > > > >
> > > > > > > > > > > On Fri, Aug 4, 2023 at 11:30 AM Leonard Xu <
> > > > xbjt...@gmail.com>
> > > > > > > > wrote:
> > > > > > > > > > >
> > > > > > > > > > > > Congratulations,  Matthias.
> > > > > > > > > > > >
> > > > > > > > > > > > Well deserved ^_^
> > > > > > > > > > > >
> > > > > > > > > > > > Best,
> > > > > > > > > > > > Leonard
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > > On Aug 4, 2023, at 11:18 AM, Xintong Song <
> > > > > > > tonysong...@gmail.com
> > > > > > > > >
> > > > > > > > > > > wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Hi everyone,
> > > > > > > > > > > > >
> > > > > > > > > > > > > On behalf of the PMC, I'm very happy to announce
> that
> > > > > > Matthias
> > > > > > > > > Pohl has
> > > > > > > > > > > > > joined the Flink PMC!
> > > > > > > > > > > > >
> > > > > > > > > > > > > Matthias has been consistently contributing to the
> > > > project
> > > > > > > since
> > > > > > > > > Sep
> > > > > > > > > > > > 2020,
> > > > > > > > > > > > > and became a committer in Dec 2021. He mainly works
> > in
> > > > > > Flink's
> > > > > > > > > > > > distributed
> > > > > > > > > > > > > coordination and high availability areas. He has
> > worked
> > > > on
> > > > > > many
> > > > > > > > > FLIPs
> > > > > > > > > > > > > including FLIP195/270/285. He helped a lot with the
> > > > release
> > > > > > > > > management,
> > > > > > > > > > > > > being one of the Flink 1.17 release managers and
> also
> > > > very
> > > > > > > active
> > > > > > > > > in
> > > > > > > > > > > > Flink
> > > > > > > > > > > > > 1.18 / 2.0 efforts. He also contributed a lot to
> > > > improving
> > > > > > the
> > > > > > > > > build
> > > > > > > > > > > > > stability.
> > > > > > > > > > > > >
> > > > > > > > > > > > > Please join me in congratulating Matthias!
> > > > > > > > > > > > >
> > > > > > > > > > > > > Best,
> > > > > > > > > > > > >
> > > > > > > > > > > > > Xintong (on behalf of the Apache Flink PMC)
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > --
> > > > > > >
> > > > > > > Best,
> > > > > > > Benchao Li
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> > >
> > > --
> > > Best regards,
> > > Sergey
> > >
> >
>


[jira] [Created] (FLINK-32751) DistinctAggregateITCaseBase.testMultiDistinctAggOnDifferentColumn got stuck on AZP

2023-08-04 Thread Sergey Nuyanzin (Jira)
Sergey Nuyanzin created FLINK-32751:
---

 Summary: 
DistinctAggregateITCaseBase.testMultiDistinctAggOnDifferentColumn got stuck on 
AZP
 Key: FLINK-32751
 URL: https://issues.apache.org/jira/browse/FLINK-32751
 Project: Flink
  Issue Type: Bug
  Components: Table SQL / API
Affects Versions: 1.18.0
Reporter: Sergey Nuyanzin


This build hangs 
https://dev.azure.com/apache-flink/apache-flink/_build/results?buildId=51955=logs=ce3801ad-3bd5-5f06-d165-34d37e757d90=5e4d9387-1dcc-5885-a901-90469b7e6d2f=14399

{noformat}
Aug 04 03:03:47 "ForkJoinPool-1-worker-51" #28 daemon prio=5 os_prio=0 
cpu=49342.66ms elapsed=3079.49s tid=0x7f67ccdd nid=0x5234 waiting on 
condition  [0x7f6791a19000]
Aug 04 03:03:47java.lang.Thread.State: WAITING (parking)
Aug 04 03:03:47 at 
jdk.internal.misc.Unsafe.park(java.base@11.0.19/Native Method)
Aug 04 03:03:47 - parking to wait for  <0xad3b1fb8> (a 
java.util.concurrent.CompletableFuture$Signaller)
Aug 04 03:03:47 at 
java.util.concurrent.locks.LockSupport.park(java.base@11.0.19/LockSupport.java:194)
Aug 04 03:03:47 at 
java.util.concurrent.CompletableFuture$Signaller.block(java.base@11.0.19/CompletableFuture.java:1796)
Aug 04 03:03:47 at 
java.util.concurrent.ForkJoinPool.managedBlock(java.base@11.0.19/ForkJoinPool.java:3118)
Aug 04 03:03:47 at 
java.util.concurrent.CompletableFuture.waitingGet(java.base@11.0.19/CompletableFuture.java:1823)
Aug 04 03:03:47 at 
java.util.concurrent.CompletableFuture.get(java.base@11.0.19/CompletableFuture.java:1998)
Aug 04 03:03:47 at 
org.apache.flink.streaming.api.operators.collect.CollectResultFetcher.sendRequest(CollectResultFetcher.java:171)
Aug 04 03:03:47 at 
org.apache.flink.streaming.api.operators.collect.CollectResultFetcher.next(CollectResultFetcher.java:129)
Aug 04 03:03:47 at 
org.apache.flink.streaming.api.operators.collect.CollectResultIterator.nextResultFromFetcher(CollectResultIterator.java:106)
Aug 04 03:03:47 at 
org.apache.flink.streaming.api.operators.collect.CollectResultIterator.hasNext(CollectResultIterator.java:80)
Aug 04 03:03:47 at 
org.apache.flink.table.planner.connectors.CollectDynamicSink$CloseableRowIteratorWrapper.hasNext(CollectDynamicSink.java:222)
Aug 04 03:03:47 at 
java.util.Iterator.forEachRemaining(java.base@11.0.19/Iterator.java:132)
Aug 04 03:03:47 at 
org.apache.flink.util.CollectionUtil.iteratorToList(CollectionUtil.java:122)
Aug 04 03:03:47 at 
org.apache.flink.table.planner.runtime.utils.BatchTestBase.executeQuery(BatchTestBase.scala:309)
Aug 04 03:03:47 at 
org.apache.flink.table.planner.runtime.utils.BatchTestBase.check(BatchTestBase.scala:145)
Aug 04 03:03:47 at 
org.apache.flink.table.planner.runtime.utils.BatchTestBase.checkResult(BatchTestBase.scala:109)
Aug 04 03:03:47 at 
org.apache.flink.table.planner.runtime.batch.sql.agg.DistinctAggregateITCaseBase.testMultiDistinctAggOnDifferentColumn(DistinctAggregateITCaseBase.scala:97)
~~
{noformat}
it is very likely that it is an old issue
the similar case was mentioned for 1.11.0 and closed because of lack of 
occurrences 
FLINK-16923



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


Re: [ANNOUNCE] New Apache Flink Committer - Weihua Hu

2023-08-04 Thread Yun Tang
Congratulations, Weihua!


Best
Yun Tang

From: Jark Wu 
Sent: Friday, August 4, 2023 15:00
To: dev@flink.apache.org 
Subject: Re: [ANNOUNCE] New Apache Flink Committer - Weihua Hu

Congratulations, Weihua!

Best,
Jark

On Fri, 4 Aug 2023 at 14:48, Yuxin Tan  wrote:

> Congratulations Weihua!
>
> Best,
> Yuxin
>
>
> Junrui Lee  于2023年8月4日周五 14:28写道:
>
> > Congrats, Weihua!
> > Best,
> > Junrui
> >
> > Geng Biao  于2023年8月4日周五 14:25写道:
> >
> > > Congrats, Weihua!
> > > Best,
> > > Biao Geng
> > >
> > > 发送自 Outlook for iOS
> > > 
> > > 发件人: 周仁祥 
> > > 发送时间: Friday, August 4, 2023 2:23:42 PM
> > > 收件人: dev@flink.apache.org 
> > > 抄送: Weihua Hu 
> > > 主题: Re: [ANNOUNCE] New Apache Flink Committer - Weihua Hu
> > >
> > > Congratulations, Weihua~
> > >
> > > > 2023年8月4日 14:21,Sergey Nuyanzin  写道:
> > > >
> > > > Congratulations, Weihua!
> > > >
> > > > On Fri, Aug 4, 2023 at 8:03 AM Chen Zhanghao <
> > zhanghao.c...@outlook.com>
> > > > wrote:
> > > >
> > > >> Congratulations, Weihua!
> > > >>
> > > >> Best,
> > > >> Zhanghao Chen
> > > >> 
> > > >> 发件人: Xintong Song 
> > > >> 发送时间: 2023年8月4日 11:18
> > > >> 收件人: dev 
> > > >> 抄送: Weihua Hu 
> > > >> 主题: [ANNOUNCE] New Apache Flink Committer - Weihua Hu
> > > >>
> > > >> Hi everyone,
> > > >>
> > > >> On behalf of the PMC, I'm very happy to announce Weihua Hu as a new
> > > Flink
> > > >> Committer!
> > > >>
> > > >> Weihua has been consistently contributing to the project since May
> > > 2022. He
> > > >> mainly works in Flink's distributed coordination areas. He is the
> main
> > > >> contributor of FLIP-298 and many other improvements in large-scale
> job
> > > >> scheduling and improvements. He is also quite active in mailing
> lists,
> > > >> participating discussions and answering user questions.
> > > >>
> > > >> Please join me in congratulating Weihua!
> > > >>
> > > >> Best,
> > > >>
> > > >> Xintong (on behalf of the Apache Flink PMC)
> > > >>
> > > >
> > > >
> > > > --
> > > > Best regards,
> > > > Sergey
> > >
> > >
> >
>


Re: [ANNOUNCE] New Apache Flink PMC Member - Matthias Pohl

2023-08-04 Thread Yun Tang
Congratulation, Matthias!


Best
Yun Tang

From: Jark Wu 
Sent: Friday, August 4, 2023 15:00
To: dev@flink.apache.org 
Subject: Re: [ANNOUNCE] New Apache Flink PMC Member - Matthias Pohl

Congratulations, Matthias!

Best,
Jark

On Fri, 4 Aug 2023 at 14:59, Weihua Hu  wrote:

> Congratulations,  Matthias!
>
> Best,
> Weihua
>
>
> On Fri, Aug 4, 2023 at 2:49 PM Yuxin Tan  wrote:
>
> > Congratulations, Matthias!
> >
> > Best,
> > Yuxin
> >
> >
> > Sergey Nuyanzin  于2023年8月4日周五 14:21写道:
> >
> > > Congratulations, Matthias!
> > > Well deserved!
> > >
> > > On Fri, Aug 4, 2023 at 7:59 AM liu ron  wrote:
> > >
> > > > Congrats, Matthias!
> > > >
> > > > Best,
> > > > Ron
> > > >
> > > > Shammon FY  于2023年8月4日周五 13:24写道:
> > > >
> > > > > Congratulations, Matthias!
> > > > >
> > > > > On Fri, Aug 4, 2023 at 1:13 PM Samrat Deb 
> > > wrote:
> > > > >
> > > > > > Congrats, Matthias!
> > > > > >
> > > > > >
> > > > > > On Fri, 4 Aug 2023 at 10:13 AM, Benchao Li  >
> > > > wrote:
> > > > > >
> > > > > > > Congratulations, Matthias!
> > > > > > >
> > > > > > > Jing Ge  于2023年8月4日周五 12:35写道:
> > > > > > >
> > > > > > > > Congrats! Matthias!
> > > > > > > >
> > > > > > > > Best regards,
> > > > > > > > Jing
> > > > > > > >
> > > > > > > > On Fri, Aug 4, 2023 at 12:09 PM Yangze Guo <
> karma...@gmail.com
> > >
> > > > > wrote:
> > > > > > > >
> > > > > > > > > Congrats, Matthias!
> > > > > > > > >
> > > > > > > > > Best,
> > > > > > > > > Yangze Guo
> > > > > > > > >
> > > > > > > > > On Fri, Aug 4, 2023 at 11:44 AM Qingsheng Ren <
> > > re...@apache.org>
> > > > > > > wrote:
> > > > > > > > > >
> > > > > > > > > > Congratulations, Matthias! This is absolutely well
> > deserved.
> > > > > > > > > >
> > > > > > > > > > Best,
> > > > > > > > > > Qingsheng
> > > > > > > > > >
> > > > > > > > > > On Fri, Aug 4, 2023 at 11:31 AM Rui Fan <
> > > 1996fan...@gmail.com>
> > > > > > > wrote:
> > > > > > > > > >
> > > > > > > > > > > Congratulations Matthias, well deserved!
> > > > > > > > > > >
> > > > > > > > > > > Best,
> > > > > > > > > > > Rui Fan
> > > > > > > > > > >
> > > > > > > > > > > On Fri, Aug 4, 2023 at 11:30 AM Leonard Xu <
> > > > xbjt...@gmail.com>
> > > > > > > > wrote:
> > > > > > > > > > >
> > > > > > > > > > > > Congratulations,  Matthias.
> > > > > > > > > > > >
> > > > > > > > > > > > Well deserved ^_^
> > > > > > > > > > > >
> > > > > > > > > > > > Best,
> > > > > > > > > > > > Leonard
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > > On Aug 4, 2023, at 11:18 AM, Xintong Song <
> > > > > > > tonysong...@gmail.com
> > > > > > > > >
> > > > > > > > > > > wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Hi everyone,
> > > > > > > > > > > > >
> > > > > > > > > > > > > On behalf of the PMC, I'm very happy to announce
> that
> > > > > > Matthias
> > > > > > > > > Pohl has
> > > > > > > > > > > > > joined the Flink PMC!
> > > > > > > > > > > > >
> > > > > > > > > > > > > Matthias has been consistently contributing to the
> > > > project
> > > > > > > since
> > > > > > > > > Sep
> > > > > > > > > > > > 2020,
> > > > > > > > > > > > > and became a committer in Dec 2021. He mainly works
> > in
> > > > > > Flink's
> > > > > > > > > > > > distributed
> > > > > > > > > > > > > coordination and high availability areas. He has
> > worked
> > > > on
> > > > > > many
> > > > > > > > > FLIPs
> > > > > > > > > > > > > including FLIP195/270/285. He helped a lot with the
> > > > release
> > > > > > > > > management,
> > > > > > > > > > > > > being one of the Flink 1.17 release managers and
> also
> > > > very
> > > > > > > active
> > > > > > > > > in
> > > > > > > > > > > > Flink
> > > > > > > > > > > > > 1.18 / 2.0 efforts. He also contributed a lot to
> > > > improving
> > > > > > the
> > > > > > > > > build
> > > > > > > > > > > > > stability.
> > > > > > > > > > > > >
> > > > > > > > > > > > > Please join me in congratulating Matthias!
> > > > > > > > > > > > >
> > > > > > > > > > > > > Best,
> > > > > > > > > > > > >
> > > > > > > > > > > > > Xintong (on behalf of the Apache Flink PMC)
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > --
> > > > > > >
> > > > > > > Best,
> > > > > > > Benchao Li
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> > >
> > > --
> > > Best regards,
> > > Sergey
> > >
> >
>


Re: [VOTE] FLIP-333: Redesign Apache Flink website

2023-08-04 Thread Yun Tang
+1 (binding)

Best
Yun Tang

From: liu ron 
Sent: Friday, August 4, 2023 10:56
To: dev@flink.apache.org 
Subject: Re: [VOTE] FLIP-333: Redesign Apache Flink website

+1

Best,
Ron

Xintong Song  于2023年8月4日周五 09:35写道:

> +1 (binding)
>
> Best,
>
> Xintong
>
>
>
> On Fri, Aug 4, 2023 at 3:05 AM Hong Liang  wrote:
>
> > +1 (binding)
> >
> > Thanks Deepthi!
> >
> >
> >
> > On Thu, Aug 3, 2023 at 7:44 PM Danny Cranmer 
> > wrote:
> >
> > > +1 (binding)
> > >
> > > Thanks Deepthi
> > >
> > >
> > > On Thu, 3 Aug 2023, 12:03 Rui Fan, <1996fan...@gmail.com> wrote:
> > >
> > > > +1(binding), thanks for driving this proposal, it's cool !
> > > >
> > > > Best,
> > > > Rui Fan
> > > >
> > > > On Thu, Aug 3, 2023 at 6:06 PM Jing Ge 
> > > wrote:
> > > >
> > > > > +1, thanks for driving it!
> > > > >
> > > > > Best regards,
> > > > > Jing
> > > > >
> > > > > On Thu, Aug 3, 2023 at 4:49 AM Mohan, Deepthi
> > >  > > > >
> > > > > wrote:
> > > > >
> > > > > > Hi,
> > > > > >
> > > > > > Thank you all for your feedback on FLIP-333. I’d like to start a
> > > vote.
> > > > > >
> > > > > > Discussion thread:
> > > > > > https://lists.apache.org/thread/z9j0rqt61ftgbkr37gzwbjg0n4fl1hsf
> > > > > > FLIP:
> > > > > >
> > > > >
> > > >
> > >
> >
> https://cwiki.apache.org/confluence/display/FLINK/FLIP-333%3A+Redesign+Apache+Flink+website
> > > > > >
> > > > > >
> > > > > > Thanks,
> > > > > > Deepthi
> > > > > >
> > > > >
> > > >
> > >
> >
>


Re: [ANNOUNCE] New Apache Flink Committer - Weihua Hu

2023-08-04 Thread Jark Wu
Congratulations, Weihua!

Best,
Jark

On Fri, 4 Aug 2023 at 14:48, Yuxin Tan  wrote:

> Congratulations Weihua!
>
> Best,
> Yuxin
>
>
> Junrui Lee  于2023年8月4日周五 14:28写道:
>
> > Congrats, Weihua!
> > Best,
> > Junrui
> >
> > Geng Biao  于2023年8月4日周五 14:25写道:
> >
> > > Congrats, Weihua!
> > > Best,
> > > Biao Geng
> > >
> > > 发送自 Outlook for iOS
> > > 
> > > 发件人: 周仁祥 
> > > 发送时间: Friday, August 4, 2023 2:23:42 PM
> > > 收件人: dev@flink.apache.org 
> > > 抄送: Weihua Hu 
> > > 主题: Re: [ANNOUNCE] New Apache Flink Committer - Weihua Hu
> > >
> > > Congratulations, Weihua~
> > >
> > > > 2023年8月4日 14:21,Sergey Nuyanzin  写道:
> > > >
> > > > Congratulations, Weihua!
> > > >
> > > > On Fri, Aug 4, 2023 at 8:03 AM Chen Zhanghao <
> > zhanghao.c...@outlook.com>
> > > > wrote:
> > > >
> > > >> Congratulations, Weihua!
> > > >>
> > > >> Best,
> > > >> Zhanghao Chen
> > > >> 
> > > >> 发件人: Xintong Song 
> > > >> 发送时间: 2023年8月4日 11:18
> > > >> 收件人: dev 
> > > >> 抄送: Weihua Hu 
> > > >> 主题: [ANNOUNCE] New Apache Flink Committer - Weihua Hu
> > > >>
> > > >> Hi everyone,
> > > >>
> > > >> On behalf of the PMC, I'm very happy to announce Weihua Hu as a new
> > > Flink
> > > >> Committer!
> > > >>
> > > >> Weihua has been consistently contributing to the project since May
> > > 2022. He
> > > >> mainly works in Flink's distributed coordination areas. He is the
> main
> > > >> contributor of FLIP-298 and many other improvements in large-scale
> job
> > > >> scheduling and improvements. He is also quite active in mailing
> lists,
> > > >> participating discussions and answering user questions.
> > > >>
> > > >> Please join me in congratulating Weihua!
> > > >>
> > > >> Best,
> > > >>
> > > >> Xintong (on behalf of the Apache Flink PMC)
> > > >>
> > > >
> > > >
> > > > --
> > > > Best regards,
> > > > Sergey
> > >
> > >
> >
>


Re: [ANNOUNCE] New Apache Flink PMC Member - Matthias Pohl

2023-08-04 Thread Jark Wu
Congratulations, Matthias!

Best,
Jark

On Fri, 4 Aug 2023 at 14:59, Weihua Hu  wrote:

> Congratulations,  Matthias!
>
> Best,
> Weihua
>
>
> On Fri, Aug 4, 2023 at 2:49 PM Yuxin Tan  wrote:
>
> > Congratulations, Matthias!
> >
> > Best,
> > Yuxin
> >
> >
> > Sergey Nuyanzin  于2023年8月4日周五 14:21写道:
> >
> > > Congratulations, Matthias!
> > > Well deserved!
> > >
> > > On Fri, Aug 4, 2023 at 7:59 AM liu ron  wrote:
> > >
> > > > Congrats, Matthias!
> > > >
> > > > Best,
> > > > Ron
> > > >
> > > > Shammon FY  于2023年8月4日周五 13:24写道:
> > > >
> > > > > Congratulations, Matthias!
> > > > >
> > > > > On Fri, Aug 4, 2023 at 1:13 PM Samrat Deb 
> > > wrote:
> > > > >
> > > > > > Congrats, Matthias!
> > > > > >
> > > > > >
> > > > > > On Fri, 4 Aug 2023 at 10:13 AM, Benchao Li  >
> > > > wrote:
> > > > > >
> > > > > > > Congratulations, Matthias!
> > > > > > >
> > > > > > > Jing Ge  于2023年8月4日周五 12:35写道:
> > > > > > >
> > > > > > > > Congrats! Matthias!
> > > > > > > >
> > > > > > > > Best regards,
> > > > > > > > Jing
> > > > > > > >
> > > > > > > > On Fri, Aug 4, 2023 at 12:09 PM Yangze Guo <
> karma...@gmail.com
> > >
> > > > > wrote:
> > > > > > > >
> > > > > > > > > Congrats, Matthias!
> > > > > > > > >
> > > > > > > > > Best,
> > > > > > > > > Yangze Guo
> > > > > > > > >
> > > > > > > > > On Fri, Aug 4, 2023 at 11:44 AM Qingsheng Ren <
> > > re...@apache.org>
> > > > > > > wrote:
> > > > > > > > > >
> > > > > > > > > > Congratulations, Matthias! This is absolutely well
> > deserved.
> > > > > > > > > >
> > > > > > > > > > Best,
> > > > > > > > > > Qingsheng
> > > > > > > > > >
> > > > > > > > > > On Fri, Aug 4, 2023 at 11:31 AM Rui Fan <
> > > 1996fan...@gmail.com>
> > > > > > > wrote:
> > > > > > > > > >
> > > > > > > > > > > Congratulations Matthias, well deserved!
> > > > > > > > > > >
> > > > > > > > > > > Best,
> > > > > > > > > > > Rui Fan
> > > > > > > > > > >
> > > > > > > > > > > On Fri, Aug 4, 2023 at 11:30 AM Leonard Xu <
> > > > xbjt...@gmail.com>
> > > > > > > > wrote:
> > > > > > > > > > >
> > > > > > > > > > > > Congratulations,  Matthias.
> > > > > > > > > > > >
> > > > > > > > > > > > Well deserved ^_^
> > > > > > > > > > > >
> > > > > > > > > > > > Best,
> > > > > > > > > > > > Leonard
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > > On Aug 4, 2023, at 11:18 AM, Xintong Song <
> > > > > > > tonysong...@gmail.com
> > > > > > > > >
> > > > > > > > > > > wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Hi everyone,
> > > > > > > > > > > > >
> > > > > > > > > > > > > On behalf of the PMC, I'm very happy to announce
> that
> > > > > > Matthias
> > > > > > > > > Pohl has
> > > > > > > > > > > > > joined the Flink PMC!
> > > > > > > > > > > > >
> > > > > > > > > > > > > Matthias has been consistently contributing to the
> > > > project
> > > > > > > since
> > > > > > > > > Sep
> > > > > > > > > > > > 2020,
> > > > > > > > > > > > > and became a committer in Dec 2021. He mainly works
> > in
> > > > > > Flink's
> > > > > > > > > > > > distributed
> > > > > > > > > > > > > coordination and high availability areas. He has
> > worked
> > > > on
> > > > > > many
> > > > > > > > > FLIPs
> > > > > > > > > > > > > including FLIP195/270/285. He helped a lot with the
> > > > release
> > > > > > > > > management,
> > > > > > > > > > > > > being one of the Flink 1.17 release managers and
> also
> > > > very
> > > > > > > active
> > > > > > > > > in
> > > > > > > > > > > > Flink
> > > > > > > > > > > > > 1.18 / 2.0 efforts. He also contributed a lot to
> > > > improving
> > > > > > the
> > > > > > > > > build
> > > > > > > > > > > > > stability.
> > > > > > > > > > > > >
> > > > > > > > > > > > > Please join me in congratulating Matthias!
> > > > > > > > > > > > >
> > > > > > > > > > > > > Best,
> > > > > > > > > > > > >
> > > > > > > > > > > > > Xintong (on behalf of the Apache Flink PMC)
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > --
> > > > > > >
> > > > > > > Best,
> > > > > > > Benchao Li
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> > >
> > > --
> > > Best regards,
> > > Sergey
> > >
> >
>


Re: [ANNOUNCE] New Apache Flink Committer - Hong Teoh

2023-08-04 Thread Jark Wu
Congratulations, Hong!

Best,
Jark

On Fri, 4 Aug 2023 at 14:24, Sergey Nuyanzin  wrote:

> Congratulations, Hong!
>
> On Fri, Aug 4, 2023 at 7:25 AM Shammon FY  wrote:
>
> > Congratulations, Hong!
> >
> > Best,
> > Shammon FY
> >
> > On Fri, Aug 4, 2023 at 12:33 PM Jing Ge 
> > wrote:
> >
> > > congrats! Hong!
> > >
> > > Best regards,
> > > Jing
> > >
> > > On Fri, Aug 4, 2023 at 11:48 AM Qingsheng Ren 
> > wrote:
> > >
> > > > Congratulations and welcome aboard, Hong!
> > > >
> > > > Best,
> > > > Qingsheng
> > > >
> > > > On Fri, Aug 4, 2023 at 11:04 AM Matt Wang  wrote:
> > > >
> > > > > Congratulations, Hong!
> > > > >
> > > > >
> > > > > --
> > > > >
> > > > > Best,
> > > > > Matt Wang
> > > > >
> > > > >
> > > > >  Replied Message 
> > > > > | From | Weihua Hu |
> > > > > | Date | 08/4/2023 10:55 |
> > > > > | To |  |
> > > > > | Subject | Re: [ANNOUNCE] New Apache Flink Committer - Hong Teoh |
> > > > > Congratulations, Hong!
> > > > >
> > > > > Best,
> > > > > Weihua
> > > > >
> > > > >
> > > > > On Fri, Aug 4, 2023 at 10:49 AM Samrat Deb 
> > > > wrote:
> > > > >
> > > > > Congratulations, Hong Teoh
> > > > >
> > > > > On Fri, 4 Aug 2023 at 7:52 AM, Benchao Li 
> > > wrote:
> > > > >
> > > > > Congratulations, Hong!
> > > > >
> > > > > yuxia  于2023年8月4日周五 09:23写道:
> > > > >
> > > > > Congratulations, Hong Teoh!
> > > > >
> > > > > Best regards,
> > > > > Yuxia
> > > > >
> > > > > - 原始邮件 -
> > > > > 发件人: "Matthias Pohl" 
> > > > > 收件人: "dev" 
> > > > > 发送时间: 星期四, 2023年 8 月 03日 下午 11:24:39
> > > > > 主题: Re: [ANNOUNCE] New Apache Flink Committer - Hong Teoh
> > > > >
> > > > > Congratulations, Hong! :)
> > > > >
> > > > > On Thu, Aug 3, 2023 at 3:39 PM Leonard Xu 
> wrote:
> > > > >
> > > > > Congratulations, Hong!
> > > > >
> > > > >
> > > > > Best,
> > > > > Leonard
> > > > >
> > > > > On Aug 3, 2023, at 8:45 PM, Jiabao Sun  > > > > .INVALID>
> > > > > wrote:
> > > > >
> > > > > Congratulations, Hong Teoh!
> > > > >
> > > > > Best,
> > > > > Jiabao Sun
> > > > >
> > > > > 2023年8月3日 下午7:32,Danny Cranmer  写道:
> > > > >
> > > > > On behalf of the PMC, I'm very happy to announce Hong Teoh as a
> > > > > new
> > > > > Flink
> > > > > Committer.
> > > > >
> > > > > Hong has been active in the Flink community for over 1 year and
> > > > > has
> > > > > played
> > > > > a key role in developing and maintaining AWS integrations, core
> > > > > connector
> > > > > APIs and more recently, improvements to the Flink REST API.
> > > > > Additionally,
> > > > > Hong is a very active community member, supporting users and
> > > > > participating
> > > > > in discussions on the mailing lists, Flink slack channels and
> > > > > speaking
> > > > > at
> > > > > conferences.
> > > > >
> > > > > Please join me in congratulating Hong for becoming a Flink
> > > > > Committer!
> > > > >
> > > > > Thanks,
> > > > > Danny Cranmer (on behalf of the Flink PMC)
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > --
> > > > >
> > > > > Best,
> > > > > Benchao Li
> > > > >
> > > > >
> > > > >
> > > >
> > >
> >
>
>
> --
> Best regards,
> Sergey
>


Re: [ANNOUNCE] New Apache Flink PMC Member - Matthias Pohl

2023-08-04 Thread Weihua Hu
Congratulations,  Matthias!

Best,
Weihua


On Fri, Aug 4, 2023 at 2:49 PM Yuxin Tan  wrote:

> Congratulations, Matthias!
>
> Best,
> Yuxin
>
>
> Sergey Nuyanzin  于2023年8月4日周五 14:21写道:
>
> > Congratulations, Matthias!
> > Well deserved!
> >
> > On Fri, Aug 4, 2023 at 7:59 AM liu ron  wrote:
> >
> > > Congrats, Matthias!
> > >
> > > Best,
> > > Ron
> > >
> > > Shammon FY  于2023年8月4日周五 13:24写道:
> > >
> > > > Congratulations, Matthias!
> > > >
> > > > On Fri, Aug 4, 2023 at 1:13 PM Samrat Deb 
> > wrote:
> > > >
> > > > > Congrats, Matthias!
> > > > >
> > > > >
> > > > > On Fri, 4 Aug 2023 at 10:13 AM, Benchao Li 
> > > wrote:
> > > > >
> > > > > > Congratulations, Matthias!
> > > > > >
> > > > > > Jing Ge  于2023年8月4日周五 12:35写道:
> > > > > >
> > > > > > > Congrats! Matthias!
> > > > > > >
> > > > > > > Best regards,
> > > > > > > Jing
> > > > > > >
> > > > > > > On Fri, Aug 4, 2023 at 12:09 PM Yangze Guo  >
> > > > wrote:
> > > > > > >
> > > > > > > > Congrats, Matthias!
> > > > > > > >
> > > > > > > > Best,
> > > > > > > > Yangze Guo
> > > > > > > >
> > > > > > > > On Fri, Aug 4, 2023 at 11:44 AM Qingsheng Ren <
> > re...@apache.org>
> > > > > > wrote:
> > > > > > > > >
> > > > > > > > > Congratulations, Matthias! This is absolutely well
> deserved.
> > > > > > > > >
> > > > > > > > > Best,
> > > > > > > > > Qingsheng
> > > > > > > > >
> > > > > > > > > On Fri, Aug 4, 2023 at 11:31 AM Rui Fan <
> > 1996fan...@gmail.com>
> > > > > > wrote:
> > > > > > > > >
> > > > > > > > > > Congratulations Matthias, well deserved!
> > > > > > > > > >
> > > > > > > > > > Best,
> > > > > > > > > > Rui Fan
> > > > > > > > > >
> > > > > > > > > > On Fri, Aug 4, 2023 at 11:30 AM Leonard Xu <
> > > xbjt...@gmail.com>
> > > > > > > wrote:
> > > > > > > > > >
> > > > > > > > > > > Congratulations,  Matthias.
> > > > > > > > > > >
> > > > > > > > > > > Well deserved ^_^
> > > > > > > > > > >
> > > > > > > > > > > Best,
> > > > > > > > > > > Leonard
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > > On Aug 4, 2023, at 11:18 AM, Xintong Song <
> > > > > > tonysong...@gmail.com
> > > > > > > >
> > > > > > > > > > wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > Hi everyone,
> > > > > > > > > > > >
> > > > > > > > > > > > On behalf of the PMC, I'm very happy to announce that
> > > > > Matthias
> > > > > > > > Pohl has
> > > > > > > > > > > > joined the Flink PMC!
> > > > > > > > > > > >
> > > > > > > > > > > > Matthias has been consistently contributing to the
> > > project
> > > > > > since
> > > > > > > > Sep
> > > > > > > > > > > 2020,
> > > > > > > > > > > > and became a committer in Dec 2021. He mainly works
> in
> > > > > Flink's
> > > > > > > > > > > distributed
> > > > > > > > > > > > coordination and high availability areas. He has
> worked
> > > on
> > > > > many
> > > > > > > > FLIPs
> > > > > > > > > > > > including FLIP195/270/285. He helped a lot with the
> > > release
> > > > > > > > management,
> > > > > > > > > > > > being one of the Flink 1.17 release managers and also
> > > very
> > > > > > active
> > > > > > > > in
> > > > > > > > > > > Flink
> > > > > > > > > > > > 1.18 / 2.0 efforts. He also contributed a lot to
> > > improving
> > > > > the
> > > > > > > > build
> > > > > > > > > > > > stability.
> > > > > > > > > > > >
> > > > > > > > > > > > Please join me in congratulating Matthias!
> > > > > > > > > > > >
> > > > > > > > > > > > Best,
> > > > > > > > > > > >
> > > > > > > > > > > > Xintong (on behalf of the Apache Flink PMC)
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > > >
> > > > > > --
> > > > > >
> > > > > > Best,
> > > > > > Benchao Li
> > > > > >
> > > > >
> > > >
> > >
> >
> >
> > --
> > Best regards,
> > Sergey
> >
>


Re: [ANNOUNCE] New Apache Flink Committer - Hong Teoh

2023-08-04 Thread Yuxin Tan
Congratulations, Hong!

Best,
Yuxin


Sergey Nuyanzin  于2023年8月4日周五 14:24写道:

> Congratulations, Hong!
>
> On Fri, Aug 4, 2023 at 7:25 AM Shammon FY  wrote:
>
> > Congratulations, Hong!
> >
> > Best,
> > Shammon FY
> >
> > On Fri, Aug 4, 2023 at 12:33 PM Jing Ge 
> > wrote:
> >
> > > congrats! Hong!
> > >
> > > Best regards,
> > > Jing
> > >
> > > On Fri, Aug 4, 2023 at 11:48 AM Qingsheng Ren 
> > wrote:
> > >
> > > > Congratulations and welcome aboard, Hong!
> > > >
> > > > Best,
> > > > Qingsheng
> > > >
> > > > On Fri, Aug 4, 2023 at 11:04 AM Matt Wang  wrote:
> > > >
> > > > > Congratulations, Hong!
> > > > >
> > > > >
> > > > > --
> > > > >
> > > > > Best,
> > > > > Matt Wang
> > > > >
> > > > >
> > > > >  Replied Message 
> > > > > | From | Weihua Hu |
> > > > > | Date | 08/4/2023 10:55 |
> > > > > | To |  |
> > > > > | Subject | Re: [ANNOUNCE] New Apache Flink Committer - Hong Teoh |
> > > > > Congratulations, Hong!
> > > > >
> > > > > Best,
> > > > > Weihua
> > > > >
> > > > >
> > > > > On Fri, Aug 4, 2023 at 10:49 AM Samrat Deb 
> > > > wrote:
> > > > >
> > > > > Congratulations, Hong Teoh
> > > > >
> > > > > On Fri, 4 Aug 2023 at 7:52 AM, Benchao Li 
> > > wrote:
> > > > >
> > > > > Congratulations, Hong!
> > > > >
> > > > > yuxia  于2023年8月4日周五 09:23写道:
> > > > >
> > > > > Congratulations, Hong Teoh!
> > > > >
> > > > > Best regards,
> > > > > Yuxia
> > > > >
> > > > > - 原始邮件 -
> > > > > 发件人: "Matthias Pohl" 
> > > > > 收件人: "dev" 
> > > > > 发送时间: 星期四, 2023年 8 月 03日 下午 11:24:39
> > > > > 主题: Re: [ANNOUNCE] New Apache Flink Committer - Hong Teoh
> > > > >
> > > > > Congratulations, Hong! :)
> > > > >
> > > > > On Thu, Aug 3, 2023 at 3:39 PM Leonard Xu 
> wrote:
> > > > >
> > > > > Congratulations, Hong!
> > > > >
> > > > >
> > > > > Best,
> > > > > Leonard
> > > > >
> > > > > On Aug 3, 2023, at 8:45 PM, Jiabao Sun  > > > > .INVALID>
> > > > > wrote:
> > > > >
> > > > > Congratulations, Hong Teoh!
> > > > >
> > > > > Best,
> > > > > Jiabao Sun
> > > > >
> > > > > 2023年8月3日 下午7:32,Danny Cranmer  写道:
> > > > >
> > > > > On behalf of the PMC, I'm very happy to announce Hong Teoh as a
> > > > > new
> > > > > Flink
> > > > > Committer.
> > > > >
> > > > > Hong has been active in the Flink community for over 1 year and
> > > > > has
> > > > > played
> > > > > a key role in developing and maintaining AWS integrations, core
> > > > > connector
> > > > > APIs and more recently, improvements to the Flink REST API.
> > > > > Additionally,
> > > > > Hong is a very active community member, supporting users and
> > > > > participating
> > > > > in discussions on the mailing lists, Flink slack channels and
> > > > > speaking
> > > > > at
> > > > > conferences.
> > > > >
> > > > > Please join me in congratulating Hong for becoming a Flink
> > > > > Committer!
> > > > >
> > > > > Thanks,
> > > > > Danny Cranmer (on behalf of the Flink PMC)
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > --
> > > > >
> > > > > Best,
> > > > > Benchao Li
> > > > >
> > > > >
> > > > >
> > > >
> > >
> >
>
>
> --
> Best regards,
> Sergey
>


Re: [ANNOUNCE] New Apache Flink PMC Member - Matthias Pohl

2023-08-04 Thread Yuxin Tan
Congratulations, Matthias!

Best,
Yuxin


Sergey Nuyanzin  于2023年8月4日周五 14:21写道:

> Congratulations, Matthias!
> Well deserved!
>
> On Fri, Aug 4, 2023 at 7:59 AM liu ron  wrote:
>
> > Congrats, Matthias!
> >
> > Best,
> > Ron
> >
> > Shammon FY  于2023年8月4日周五 13:24写道:
> >
> > > Congratulations, Matthias!
> > >
> > > On Fri, Aug 4, 2023 at 1:13 PM Samrat Deb 
> wrote:
> > >
> > > > Congrats, Matthias!
> > > >
> > > >
> > > > On Fri, 4 Aug 2023 at 10:13 AM, Benchao Li 
> > wrote:
> > > >
> > > > > Congratulations, Matthias!
> > > > >
> > > > > Jing Ge  于2023年8月4日周五 12:35写道:
> > > > >
> > > > > > Congrats! Matthias!
> > > > > >
> > > > > > Best regards,
> > > > > > Jing
> > > > > >
> > > > > > On Fri, Aug 4, 2023 at 12:09 PM Yangze Guo 
> > > wrote:
> > > > > >
> > > > > > > Congrats, Matthias!
> > > > > > >
> > > > > > > Best,
> > > > > > > Yangze Guo
> > > > > > >
> > > > > > > On Fri, Aug 4, 2023 at 11:44 AM Qingsheng Ren <
> re...@apache.org>
> > > > > wrote:
> > > > > > > >
> > > > > > > > Congratulations, Matthias! This is absolutely well deserved.
> > > > > > > >
> > > > > > > > Best,
> > > > > > > > Qingsheng
> > > > > > > >
> > > > > > > > On Fri, Aug 4, 2023 at 11:31 AM Rui Fan <
> 1996fan...@gmail.com>
> > > > > wrote:
> > > > > > > >
> > > > > > > > > Congratulations Matthias, well deserved!
> > > > > > > > >
> > > > > > > > > Best,
> > > > > > > > > Rui Fan
> > > > > > > > >
> > > > > > > > > On Fri, Aug 4, 2023 at 11:30 AM Leonard Xu <
> > xbjt...@gmail.com>
> > > > > > wrote:
> > > > > > > > >
> > > > > > > > > > Congratulations,  Matthias.
> > > > > > > > > >
> > > > > > > > > > Well deserved ^_^
> > > > > > > > > >
> > > > > > > > > > Best,
> > > > > > > > > > Leonard
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > > On Aug 4, 2023, at 11:18 AM, Xintong Song <
> > > > > tonysong...@gmail.com
> > > > > > >
> > > > > > > > > wrote:
> > > > > > > > > > >
> > > > > > > > > > > Hi everyone,
> > > > > > > > > > >
> > > > > > > > > > > On behalf of the PMC, I'm very happy to announce that
> > > > Matthias
> > > > > > > Pohl has
> > > > > > > > > > > joined the Flink PMC!
> > > > > > > > > > >
> > > > > > > > > > > Matthias has been consistently contributing to the
> > project
> > > > > since
> > > > > > > Sep
> > > > > > > > > > 2020,
> > > > > > > > > > > and became a committer in Dec 2021. He mainly works in
> > > > Flink's
> > > > > > > > > > distributed
> > > > > > > > > > > coordination and high availability areas. He has worked
> > on
> > > > many
> > > > > > > FLIPs
> > > > > > > > > > > including FLIP195/270/285. He helped a lot with the
> > release
> > > > > > > management,
> > > > > > > > > > > being one of the Flink 1.17 release managers and also
> > very
> > > > > active
> > > > > > > in
> > > > > > > > > > Flink
> > > > > > > > > > > 1.18 / 2.0 efforts. He also contributed a lot to
> > improving
> > > > the
> > > > > > > build
> > > > > > > > > > > stability.
> > > > > > > > > > >
> > > > > > > > > > > Please join me in congratulating Matthias!
> > > > > > > > > > >
> > > > > > > > > > > Best,
> > > > > > > > > > >
> > > > > > > > > > > Xintong (on behalf of the Apache Flink PMC)
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > > >
> > > > > --
> > > > >
> > > > > Best,
> > > > > Benchao Li
> > > > >
> > > >
> > >
> >
>
>
> --
> Best regards,
> Sergey
>


Re: [ANNOUNCE] New Apache Flink Committer - Weihua Hu

2023-08-04 Thread Yuxin Tan
Congratulations Weihua!

Best,
Yuxin


Junrui Lee  于2023年8月4日周五 14:28写道:

> Congrats, Weihua!
> Best,
> Junrui
>
> Geng Biao  于2023年8月4日周五 14:25写道:
>
> > Congrats, Weihua!
> > Best,
> > Biao Geng
> >
> > 发送自 Outlook for iOS
> > 
> > 发件人: 周仁祥 
> > 发送时间: Friday, August 4, 2023 2:23:42 PM
> > 收件人: dev@flink.apache.org 
> > 抄送: Weihua Hu 
> > 主题: Re: [ANNOUNCE] New Apache Flink Committer - Weihua Hu
> >
> > Congratulations, Weihua~
> >
> > > 2023年8月4日 14:21,Sergey Nuyanzin  写道:
> > >
> > > Congratulations, Weihua!
> > >
> > > On Fri, Aug 4, 2023 at 8:03 AM Chen Zhanghao <
> zhanghao.c...@outlook.com>
> > > wrote:
> > >
> > >> Congratulations, Weihua!
> > >>
> > >> Best,
> > >> Zhanghao Chen
> > >> 
> > >> 发件人: Xintong Song 
> > >> 发送时间: 2023年8月4日 11:18
> > >> 收件人: dev 
> > >> 抄送: Weihua Hu 
> > >> 主题: [ANNOUNCE] New Apache Flink Committer - Weihua Hu
> > >>
> > >> Hi everyone,
> > >>
> > >> On behalf of the PMC, I'm very happy to announce Weihua Hu as a new
> > Flink
> > >> Committer!
> > >>
> > >> Weihua has been consistently contributing to the project since May
> > 2022. He
> > >> mainly works in Flink's distributed coordination areas. He is the main
> > >> contributor of FLIP-298 and many other improvements in large-scale job
> > >> scheduling and improvements. He is also quite active in mailing lists,
> > >> participating discussions and answering user questions.
> > >>
> > >> Please join me in congratulating Weihua!
> > >>
> > >> Best,
> > >>
> > >> Xintong (on behalf of the Apache Flink PMC)
> > >>
> > >
> > >
> > > --
> > > Best regards,
> > > Sergey
> >
> >
>


Re: Heartbeat of TaskManager with id container

2023-08-04 Thread xiangyu feng
Hi ynagireddy4u,

>From the exception info, I think your application has met a HDFS file issue
during the commit phase of checkpoint. Can u check why 'Staging file does
not exist' in the first place?

Regards,
Xiangyu

Y SREEKARA BHARGAVA REDDY  于2023年8月4日周五 12:21写道:

> Hi Xiangyu/Dev Team,
>
> Thanks for reply.
>
> In  our flink job, we increase the *checkpoint timeout to 30 min.*
> And the *checkpoint interval is 10 min.*
>
> But while running the job we got below exception.
>
> java.lang.RuntimeException: Error while confirming checkpoint
> at org.apache.flink.streaming.runtime.tasks.StreamTask
> .notifyCheckpointComplete(StreamTask.java:952)
> at org.apache.flink.streaming.runtime.tasks.StreamTask
> .lambda$notifyCheckpointCompleteAsync$7(StreamTask.java:924)
> at org.apache.flink.util.function.FunctionUtils.lambda$asCallable$5(
> FunctionUtils.java:125)
> at java.util.concurrent.FutureTask.run(FutureTask.java:266)
> at org.apache.flink.streaming.runtime.tasks.
> StreamTaskActionExecutor$SynchronizedStreamTaskActionExecutor.run(
> StreamTaskActionExecutor.java:87)
> at org.apache.flink.streaming.runtime.tasks.mailbox.Mail.run(Mail
> .java:78)
> at org.apache.flink.streaming.runtime.tasks.mailbox.MailboxProcessor
> .processMail(MailboxProcessor.java:261)
> at org.apache.flink.streaming.runtime.tasks.mailbox.MailboxProcessor
> .runMailboxLoop(MailboxProcessor.java:186)
> at org.apache.flink.streaming.runtime.tasks.StreamTask.runMailboxLoop(
> StreamTask.java:487)
> at org.apache.flink.streaming.runtime.tasks.StreamTask.invoke(
> StreamTask.java:470)
> at org.apache.flink.runtime.taskmanager.Task.doRun(Task.java:707)
> at org.apache.flink.runtime.taskmanager.Task.run(Task.java:532)
> at java.lang.Thread.run(Thread.java:748)
> Caused by: java.io.IOException: Cannot clean commit: Staging file does not
> exist.
> at org.apache.flink.runtime.fs.hdfs.
> HadoopRecoverableFsDataOutputStream$HadoopFsCommitter.commit(
> HadoopRecoverableFsDataOutputStream.java:250)
> at org.apache.flink.streaming.api.functions.sink.filesystem.Bucket
> .onSuccessfulCompletionOfCheckpoint(Bucket.java:300)
> at org.apache.flink.streaming.api.functions.sink.filesystem.Buckets
> .commitUpToCheckpoint(Buckets.java:216)
> at org.apache.flink.streaming.api.functions.sink.filesystem.
> StreamingFileSink.notifyCheckpointComplete(StreamingFileSink.java:415)
> at org.apache.flink.streaming.api.operators.AbstractUdfStreamOperator
> .notifyCheckpointComplete(AbstractUdfStreamOperator.java:130)
> at org.apache.flink.streaming.runtime.tasks.StreamTask
> .lambda$notifyCheckpointComplete$8(StreamTask.java:936)
> at org.apache.flink.streaming.runtime.tasks.
> StreamTaskActionExecutor$SynchronizedStreamTaskActionExecutor.call(
> StreamTaskActionExecutor.java:101)
> at org.apache.flink.streaming.runtime.tasks.StreamTask
> .notifyCheckpointComplete(StreamTask.java:930)
> ... 12 more
>
> It would be great, if you have any workaround for that.
>
> Regards,
> Nagireddy Y.
>
>
>
>
>
>
> On Thu, Aug 3, 2023 at 7:24 AM xiangyu feng  wrote:
>
>> Hi ynagireddy4u,
>>
>> We have met this exception before. Usually it is caused by following
>> reasons:
>>
>> 1), TaskManager is too busy with other works to send the heartbeat to
>> JobMaster or TaskManager process might already exited;
>> 2), There might be a network issues between this TaskManager and
>> JobMaster;
>> 3), In certain cases, JobMaster actor might also being too busy to
>> process the RPC requests from TaskManager;
>>
>> Pls check if your problem fits the above situations.
>>
>> Best,
>> Xiangyu
>>
>>
>> Y SREEKARA BHARGAVA REDDY  于2023年7月31日周一 20:49写道:
>>
>>> Hi Team,
>>>
>>> Did any one face the below exception.
>>> If yes, please share the resolution.
>>>
>>>
>>> 2023-07-28 22:04:16
>>> j*ava.util.concurrent.TimeoutException: Heartbeat of TaskManager with id
>>> container_e19_1690528962823_0382_01_05 timed out.*
>>> at org.apache.flink.runtime.jobmaster.
>>> JobMaster$TaskManagerHeartbeatListener.notifyHeartbeatTimeout(JobMaster
>>> .java:1147)
>>> at org.apache.flink.runtime.heartbeat.HeartbeatMonitorImpl.run(
>>> HeartbeatMonitorImpl.java:109)
>>> at
>>> java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:
>>> 511)
>>> at java.util.concurrent.FutureTask.run(FutureTask.java:266)
>>> at org.apache.flink.runtime.rpc.akka.AkkaRpcActor.handleRunAsync(
>>> AkkaRpcActor.java:397)
>>> at org.apache.flink.runtime.rpc.akka.AkkaRpcActor.handleRpcMessage(
>>> AkkaRpcActor.java:190)
>>> at org.apache.flink.runtime.rpc.akka.FencedAkkaRpcActor
>>> .handleRpcMessage(FencedAkkaRpcActor.java:74)
>>> at org.apache.flink.runtime.rpc.akka.AkkaRpcActor.handleMessage(
>>> AkkaRpcActor.java:152)
>>> at akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:26)
>>> at akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:21)
>>> at 

Re: [ANNOUNCE] New Apache Flink Committer - Weihua Hu

2023-08-04 Thread Junrui Lee
Congrats, Weihua!
Best,
Junrui

Geng Biao  于2023年8月4日周五 14:25写道:

> Congrats, Weihua!
> Best,
> Biao Geng
>
> 发送自 Outlook for iOS
> 
> 发件人: 周仁祥 
> 发送时间: Friday, August 4, 2023 2:23:42 PM
> 收件人: dev@flink.apache.org 
> 抄送: Weihua Hu 
> 主题: Re: [ANNOUNCE] New Apache Flink Committer - Weihua Hu
>
> Congratulations, Weihua~
>
> > 2023年8月4日 14:21,Sergey Nuyanzin  写道:
> >
> > Congratulations, Weihua!
> >
> > On Fri, Aug 4, 2023 at 8:03 AM Chen Zhanghao 
> > wrote:
> >
> >> Congratulations, Weihua!
> >>
> >> Best,
> >> Zhanghao Chen
> >> 
> >> 发件人: Xintong Song 
> >> 发送时间: 2023年8月4日 11:18
> >> 收件人: dev 
> >> 抄送: Weihua Hu 
> >> 主题: [ANNOUNCE] New Apache Flink Committer - Weihua Hu
> >>
> >> Hi everyone,
> >>
> >> On behalf of the PMC, I'm very happy to announce Weihua Hu as a new
> Flink
> >> Committer!
> >>
> >> Weihua has been consistently contributing to the project since May
> 2022. He
> >> mainly works in Flink's distributed coordination areas. He is the main
> >> contributor of FLIP-298 and many other improvements in large-scale job
> >> scheduling and improvements. He is also quite active in mailing lists,
> >> participating discussions and answering user questions.
> >>
> >> Please join me in congratulating Weihua!
> >>
> >> Best,
> >>
> >> Xintong (on behalf of the Apache Flink PMC)
> >>
> >
> >
> > --
> > Best regards,
> > Sergey
>
>


Re: [ANNOUNCE] New Apache Flink Committer - Weihua Hu

2023-08-04 Thread Geng Biao
Congrats, Weihua!
Best,
Biao Geng

发送自 Outlook for iOS

发件人: 周仁祥 
发送时间: Friday, August 4, 2023 2:23:42 PM
收件人: dev@flink.apache.org 
抄送: Weihua Hu 
主题: Re: [ANNOUNCE] New Apache Flink Committer - Weihua Hu

Congratulations, Weihua~

> 2023年8月4日 14:21,Sergey Nuyanzin  写道:
>
> Congratulations, Weihua!
>
> On Fri, Aug 4, 2023 at 8:03 AM Chen Zhanghao 
> wrote:
>
>> Congratulations, Weihua!
>>
>> Best,
>> Zhanghao Chen
>> 
>> 发件人: Xintong Song 
>> 发送时间: 2023年8月4日 11:18
>> 收件人: dev 
>> 抄送: Weihua Hu 
>> 主题: [ANNOUNCE] New Apache Flink Committer - Weihua Hu
>>
>> Hi everyone,
>>
>> On behalf of the PMC, I'm very happy to announce Weihua Hu as a new Flink
>> Committer!
>>
>> Weihua has been consistently contributing to the project since May 2022. He
>> mainly works in Flink's distributed coordination areas. He is the main
>> contributor of FLIP-298 and many other improvements in large-scale job
>> scheduling and improvements. He is also quite active in mailing lists,
>> participating discussions and answering user questions.
>>
>> Please join me in congratulating Weihua!
>>
>> Best,
>>
>> Xintong (on behalf of the Apache Flink PMC)
>>
>
>
> --
> Best regards,
> Sergey



Re: [ANNOUNCE] New Apache Flink Committer - Weihua Hu

2023-08-04 Thread 周仁祥
Congratulations, Weihua~

> 2023年8月4日 14:21,Sergey Nuyanzin  写道:
> 
> Congratulations, Weihua!
> 
> On Fri, Aug 4, 2023 at 8:03 AM Chen Zhanghao 
> wrote:
> 
>> Congratulations, Weihua!
>> 
>> Best,
>> Zhanghao Chen
>> 
>> 发件人: Xintong Song 
>> 发送时间: 2023年8月4日 11:18
>> 收件人: dev 
>> 抄送: Weihua Hu 
>> 主题: [ANNOUNCE] New Apache Flink Committer - Weihua Hu
>> 
>> Hi everyone,
>> 
>> On behalf of the PMC, I'm very happy to announce Weihua Hu as a new Flink
>> Committer!
>> 
>> Weihua has been consistently contributing to the project since May 2022. He
>> mainly works in Flink's distributed coordination areas. He is the main
>> contributor of FLIP-298 and many other improvements in large-scale job
>> scheduling and improvements. He is also quite active in mailing lists,
>> participating discussions and answering user questions.
>> 
>> Please join me in congratulating Weihua!
>> 
>> Best,
>> 
>> Xintong (on behalf of the Apache Flink PMC)
>> 
> 
> 
> -- 
> Best regards,
> Sergey



Re: [ANNOUNCE] New Apache Flink Committer - Hong Teoh

2023-08-04 Thread Sergey Nuyanzin
Congratulations, Hong!

On Fri, Aug 4, 2023 at 7:25 AM Shammon FY  wrote:

> Congratulations, Hong!
>
> Best,
> Shammon FY
>
> On Fri, Aug 4, 2023 at 12:33 PM Jing Ge 
> wrote:
>
> > congrats! Hong!
> >
> > Best regards,
> > Jing
> >
> > On Fri, Aug 4, 2023 at 11:48 AM Qingsheng Ren 
> wrote:
> >
> > > Congratulations and welcome aboard, Hong!
> > >
> > > Best,
> > > Qingsheng
> > >
> > > On Fri, Aug 4, 2023 at 11:04 AM Matt Wang  wrote:
> > >
> > > > Congratulations, Hong!
> > > >
> > > >
> > > > --
> > > >
> > > > Best,
> > > > Matt Wang
> > > >
> > > >
> > > >  Replied Message 
> > > > | From | Weihua Hu |
> > > > | Date | 08/4/2023 10:55 |
> > > > | To |  |
> > > > | Subject | Re: [ANNOUNCE] New Apache Flink Committer - Hong Teoh |
> > > > Congratulations, Hong!
> > > >
> > > > Best,
> > > > Weihua
> > > >
> > > >
> > > > On Fri, Aug 4, 2023 at 10:49 AM Samrat Deb 
> > > wrote:
> > > >
> > > > Congratulations, Hong Teoh
> > > >
> > > > On Fri, 4 Aug 2023 at 7:52 AM, Benchao Li 
> > wrote:
> > > >
> > > > Congratulations, Hong!
> > > >
> > > > yuxia  于2023年8月4日周五 09:23写道:
> > > >
> > > > Congratulations, Hong Teoh!
> > > >
> > > > Best regards,
> > > > Yuxia
> > > >
> > > > - 原始邮件 -
> > > > 发件人: "Matthias Pohl" 
> > > > 收件人: "dev" 
> > > > 发送时间: 星期四, 2023年 8 月 03日 下午 11:24:39
> > > > 主题: Re: [ANNOUNCE] New Apache Flink Committer - Hong Teoh
> > > >
> > > > Congratulations, Hong! :)
> > > >
> > > > On Thu, Aug 3, 2023 at 3:39 PM Leonard Xu  wrote:
> > > >
> > > > Congratulations, Hong!
> > > >
> > > >
> > > > Best,
> > > > Leonard
> > > >
> > > > On Aug 3, 2023, at 8:45 PM, Jiabao Sun  > > > .INVALID>
> > > > wrote:
> > > >
> > > > Congratulations, Hong Teoh!
> > > >
> > > > Best,
> > > > Jiabao Sun
> > > >
> > > > 2023年8月3日 下午7:32,Danny Cranmer  写道:
> > > >
> > > > On behalf of the PMC, I'm very happy to announce Hong Teoh as a
> > > > new
> > > > Flink
> > > > Committer.
> > > >
> > > > Hong has been active in the Flink community for over 1 year and
> > > > has
> > > > played
> > > > a key role in developing and maintaining AWS integrations, core
> > > > connector
> > > > APIs and more recently, improvements to the Flink REST API.
> > > > Additionally,
> > > > Hong is a very active community member, supporting users and
> > > > participating
> > > > in discussions on the mailing lists, Flink slack channels and
> > > > speaking
> > > > at
> > > > conferences.
> > > >
> > > > Please join me in congratulating Hong for becoming a Flink
> > > > Committer!
> > > >
> > > > Thanks,
> > > > Danny Cranmer (on behalf of the Flink PMC)
> > > >
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > --
> > > >
> > > > Best,
> > > > Benchao Li
> > > >
> > > >
> > > >
> > >
> >
>


-- 
Best regards,
Sergey


Re: [ANNOUNCE] New Apache Flink Committer - Weihua Hu

2023-08-04 Thread Sergey Nuyanzin
Congratulations, Weihua!

On Fri, Aug 4, 2023 at 8:03 AM Chen Zhanghao 
wrote:

> Congratulations, Weihua!
>
> Best,
> Zhanghao Chen
> 
> 发件人: Xintong Song 
> 发送时间: 2023年8月4日 11:18
> 收件人: dev 
> 抄送: Weihua Hu 
> 主题: [ANNOUNCE] New Apache Flink Committer - Weihua Hu
>
> Hi everyone,
>
> On behalf of the PMC, I'm very happy to announce Weihua Hu as a new Flink
> Committer!
>
> Weihua has been consistently contributing to the project since May 2022. He
> mainly works in Flink's distributed coordination areas. He is the main
> contributor of FLIP-298 and many other improvements in large-scale job
> scheduling and improvements. He is also quite active in mailing lists,
> participating discussions and answering user questions.
>
> Please join me in congratulating Weihua!
>
> Best,
>
> Xintong (on behalf of the Apache Flink PMC)
>


-- 
Best regards,
Sergey


Re: [ANNOUNCE] New Apache Flink PMC Member - Matthias Pohl

2023-08-04 Thread Sergey Nuyanzin
Congratulations, Matthias!
Well deserved!

On Fri, Aug 4, 2023 at 7:59 AM liu ron  wrote:

> Congrats, Matthias!
>
> Best,
> Ron
>
> Shammon FY  于2023年8月4日周五 13:24写道:
>
> > Congratulations, Matthias!
> >
> > On Fri, Aug 4, 2023 at 1:13 PM Samrat Deb  wrote:
> >
> > > Congrats, Matthias!
> > >
> > >
> > > On Fri, 4 Aug 2023 at 10:13 AM, Benchao Li 
> wrote:
> > >
> > > > Congratulations, Matthias!
> > > >
> > > > Jing Ge  于2023年8月4日周五 12:35写道:
> > > >
> > > > > Congrats! Matthias!
> > > > >
> > > > > Best regards,
> > > > > Jing
> > > > >
> > > > > On Fri, Aug 4, 2023 at 12:09 PM Yangze Guo 
> > wrote:
> > > > >
> > > > > > Congrats, Matthias!
> > > > > >
> > > > > > Best,
> > > > > > Yangze Guo
> > > > > >
> > > > > > On Fri, Aug 4, 2023 at 11:44 AM Qingsheng Ren 
> > > > wrote:
> > > > > > >
> > > > > > > Congratulations, Matthias! This is absolutely well deserved.
> > > > > > >
> > > > > > > Best,
> > > > > > > Qingsheng
> > > > > > >
> > > > > > > On Fri, Aug 4, 2023 at 11:31 AM Rui Fan <1996fan...@gmail.com>
> > > > wrote:
> > > > > > >
> > > > > > > > Congratulations Matthias, well deserved!
> > > > > > > >
> > > > > > > > Best,
> > > > > > > > Rui Fan
> > > > > > > >
> > > > > > > > On Fri, Aug 4, 2023 at 11:30 AM Leonard Xu <
> xbjt...@gmail.com>
> > > > > wrote:
> > > > > > > >
> > > > > > > > > Congratulations,  Matthias.
> > > > > > > > >
> > > > > > > > > Well deserved ^_^
> > > > > > > > >
> > > > > > > > > Best,
> > > > > > > > > Leonard
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > > On Aug 4, 2023, at 11:18 AM, Xintong Song <
> > > > tonysong...@gmail.com
> > > > > >
> > > > > > > > wrote:
> > > > > > > > > >
> > > > > > > > > > Hi everyone,
> > > > > > > > > >
> > > > > > > > > > On behalf of the PMC, I'm very happy to announce that
> > > Matthias
> > > > > > Pohl has
> > > > > > > > > > joined the Flink PMC!
> > > > > > > > > >
> > > > > > > > > > Matthias has been consistently contributing to the
> project
> > > > since
> > > > > > Sep
> > > > > > > > > 2020,
> > > > > > > > > > and became a committer in Dec 2021. He mainly works in
> > > Flink's
> > > > > > > > > distributed
> > > > > > > > > > coordination and high availability areas. He has worked
> on
> > > many
> > > > > > FLIPs
> > > > > > > > > > including FLIP195/270/285. He helped a lot with the
> release
> > > > > > management,
> > > > > > > > > > being one of the Flink 1.17 release managers and also
> very
> > > > active
> > > > > > in
> > > > > > > > > Flink
> > > > > > > > > > 1.18 / 2.0 efforts. He also contributed a lot to
> improving
> > > the
> > > > > > build
> > > > > > > > > > stability.
> > > > > > > > > >
> > > > > > > > > > Please join me in congratulating Matthias!
> > > > > > > > > >
> > > > > > > > > > Best,
> > > > > > > > > >
> > > > > > > > > > Xintong (on behalf of the Apache Flink PMC)
> > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > >
> > > > >
> > > >
> > > >
> > > > --
> > > >
> > > > Best,
> > > > Benchao Li
> > > >
> > >
> >
>


-- 
Best regards,
Sergey


[jira] [Created] (FLINK-32750) fix resouces not fix in testcase

2023-08-04 Thread xy (Jira)
xy created FLINK-32750:
--

 Summary: fix resouces not fix in testcase
 Key: FLINK-32750
 URL: https://issues.apache.org/jira/browse/FLINK-32750
 Project: Flink
  Issue Type: Bug
  Components: Tests
Reporter: xy
 Fix For: 1.19.0


fix resouces not fix in testcase



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


回复: [ANNOUNCE] New Apache Flink Committer - Weihua Hu

2023-08-04 Thread Chen Zhanghao
Congratulations, Weihua!

Best,
Zhanghao Chen

发件人: Xintong Song 
发送时间: 2023年8月4日 11:18
收件人: dev 
抄送: Weihua Hu 
主题: [ANNOUNCE] New Apache Flink Committer - Weihua Hu

Hi everyone,

On behalf of the PMC, I'm very happy to announce Weihua Hu as a new Flink
Committer!

Weihua has been consistently contributing to the project since May 2022. He
mainly works in Flink's distributed coordination areas. He is the main
contributor of FLIP-298 and many other improvements in large-scale job
scheduling and improvements. He is also quite active in mailing lists,
participating discussions and answering user questions.

Please join me in congratulating Weihua!

Best,

Xintong (on behalf of the Apache Flink PMC)