Re: FLINK-20767 - Support for nested fields filter push down

2023-08-06 Thread yh z
Hi, Venkatakrishnan, I think this is a very useful feature. I have been focusing on the development of the flink-table-planner module recently, so if you need some help, I can assist you in completing the development of some sub-tasks or code review. Returning to the design itself, I think it's ne

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

2023-08-06 Thread yh z
Congratulations, Weihua! Best, Yunhong Zheng (Swuferhong) Runkang He 于2023年8月5日周六 21:34写道: > Congratulations, Weihua! > > Best, > Runkang He > > Kelu Tao 于2023年8月4日周五 18:21写道: > > > Congratulations! > > > > On 2023/08/04 08:35:49 Danny Cranmer wrote: > > > Congrats and welcome to the team, Wei

Re: FLINK-20767 - Support for nested fields filter push down

2023-08-07 Thread yh z
023 at 10:23 PM Venkatakrishnan Sowrirajan < > vsowr...@asu.edu> > wrote: > > > Thanks @zhengyunhon...@gmail.com > > Regards > > Venkata krishnan > > > > > > On Sun, Aug 6, 2023 at 6:16 PM yh z wrote: > > > >> Hi, Venkatakrishnan, &g

Re: [ANNOUNCE] New Apache Flink Committer - Hangxiang Yu

2023-08-07 Thread yh z
Congratulations, Hangxiang ! Best, Yunhong Zheng (Swuferhong) yuxia 于2023年8月8日周二 09:20写道: > Congratulations, Hangxiang ! > > Best regards, > Yuxia > > - 原始邮件 - > 发件人: "Wencong Liu" > 收件人: "dev" > 发送时间: 星期一, 2023年 8 月 07日 下午 11:55:24 > 主题: Re:[ANNOUNCE] New Apache Flink Committer - Ha

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

2023-08-07 Thread yh z
Congratulations, Matthias! Best, Yunhong Zheng (Swuferhong) Ryan Skraba 于2023年8月7日周一 21:39写道: > Congratulations Matthias -- very well-deserved, the community is lucky to > have you <3 > > All my best, Ryan > > On Mon, Aug 7, 2023 at 3:04 PM Lincoln Lee wrote: > > > Congratulations! > > > > Bes

Re: [DISCUSS] FLIP-356: Support Nested Fields Filter Pushdown

2023-08-24 Thread yh z
Hi, Venkat, Thanks for the FLIP, it sounds good to support nested fields filter pushdown. Based on the design of flip and the above options, I would like to make a few suggestions: 1. At present, introducing NestedFieldReferenceExpression looks like a better solution, which can fully meet our re

Re: [ANNOUNCE] New Apache Flink Committer - Ron Liu

2023-10-15 Thread yh z
Congratulations, Ron! Best, Yunhong (SwuferHong) Yuxin Tan 于2023年10月16日周一 11:12写道: > Congratulations, Ron! > > Best, > Yuxin > > > Junrui Lee 于2023年10月16日周一 10:24写道: > > > Congratulations Ron ! > > > > Best, > > Junrui > > > > Yun Tang 于2023年10月16日周一 10:22写道: > > > > > Congratulations, Ron! >

Re: [ANNOUNCE] New Apache Flink Committer - Jane Chan

2023-10-15 Thread yh z
Congratulations Jane! Best, Yunhong (swuferHong) Yuxin Tan 于2023年10月16日周一 11:11写道: > Congratulations Jane! > > Best, > Yuxin > > > xiangyu feng 于2023年10月16日周一 10:27写道: > > > Congratulations Jane! > > > > Best, > > Xiangyu > > > > Xuannan Su 于2023年10月16日周一 10:25写道: > > > > > Congratulations Ja

Re: [PROPOSAL] Contribute Flink CDC Connectors project to Apache Flink

2023-12-11 Thread yh z
Excited to hear the news, +1 Best, Yunhong (Swuferhong) liu ron 于2023年12月11日周一 14:05写道: > +1 > > Best, > Ron > > Yunqing Mo 于2023年12月11日周一 12:01写道: > > > So cool, Big +1 for this exciting work. > > > > On 2023/12/07 03:24:59 Leonard Xu wrote: > > > Dear Flink devs, > > > > > > As you may have

Re: [DISCUSS] Release Flink 1.16.1

2022-12-22 Thread yh z
Hi Martijn, +1 Thank you for bringing this up. There is a serious bug in planner rule #FlinkJoinToMultiJoinRule, which will generate a wrong join reorder plan and will cause data correctness issue: https://issues.apache.org/jira/browse/FLINK-30270 (reviewing) I hope this bug fix can be picked to

[DISCUSS] Adding a option for planner to decide which join reorder rule to choose

2022-12-28 Thread yh z
Hi, devs, I'd like to start a discuss about adding an option called "table.oprimizer.busy-join-reorder-threshold" for planner rule while we try to introduce a new busy join reorder rule[1] into Flink. This join reorder rule is based on dynamic programing[2], which can store all possible intermedi

Re: [DISCUSS] Adding a option for planner to decide which join reorder rule to choose

2023-01-02 Thread yh z
in some way? > > [1] > > https://github.com/apache/calcite/blob/9054682145727fbf8a13e3c79b3512be41574349/core/src/main/java/org/apache/calcite/rel/rules/MultiJoinOptimizeBushyRule.java#L78 > > yh z 于2022年12月29日周四 14:44写道: > > > Hi, devs, > > > > I'd like

Re: [DISCUSS] Adding a option for planner to decide which join reorder rule to choose

2023-01-03 Thread yh z
> > MultiJoinOptimizeBushyRule, is it possible to use the Calcite version > > directly or extend it in some way? > > > > [1] > > > https://github.com/apache/calcite/blob/9054682145727fbf8a13e3c79b3512be41574349/core/src/main/java/org/apache/calcite/rel/rules/MultiJoinOpt

Re: [DISCUSS] Adding a option for planner to decide which join reorder rule to choose

2023-01-04 Thread yh z
to get more reasonable > > join reorder results. > > > It's ok to do it in Flink as the first step. It would be great to also > contribute it to Calcite later if possible, it depends on you. > > yh z 于2023年1月3日周二 15:27写道: > > > Hi Benchao, > > > > Tha

Re: [DISCUSS] Adding a option for planner to decide which join reorder rule to choose

2023-01-10 Thread yh z
ing this rule back to Apache Calcite. > > Best, > Godfrey > > > > yh z 于2023年1月5日周四 15:32写道: > > > > Hi Benchao, > > > > Thanks for your reply. > > > > Since our existing test results are based on multiple performance > > optimiza

Re: [ANNOUNCE] New Apache Flink Committer - Lincoln Lee

2023-01-10 Thread yh z
Congratulations, Lincoln! Best regards, Yunhong Zheng Biao Liu 于2023年1月10日周二 15:02写道: > Congratulations, Lincoln! > > Thanks, > Biao /'bɪ.aʊ/ > > > > On Tue, 10 Jan 2023 at 14:59, Hang Ruan wrote: > > > Congratulations, Lincoln! > > > > Best, > > Hang > > > > Biao Geng 于2023年1月10日周二 14:57写道:

Re: [ANNOUNCE] Release 1.17.0, release candidate #1

2023-03-13 Thread yh z
Hi Qingsheng Ren and other release manager, Thank you for bringing this up. There is a serious bug in planner rule #FlinkFilterJoinRule, which will generate a wrong join plan and no result will output: https://issues.apache.org/jira/browse/FLINK-31273 (reviewing). This bug will be triggered by a

[DISCUSS] Flink aggregate push down is not user-friendly.

2024-02-05 Thread yh z
Hi, Devs, When I try to develop a new connector, which support aggregate push down. I found that Flink aggregate pushdown is not user-friendly. The `AggregateExpression` passed to the connector by `SupportsAggregatePushDown#applyAggregates` doesn't provide access to subclasses. This makes it i

Re: [ANNOUNCE] New Apache Flink Committer - Jiabao Sun

2024-02-26 Thread yh z
Congratulations Jiabao! Best, Yunhong Zheng (SwufeHong) yu'an huang 于2024年2月26日周一 10:28写道: > Congratulations, Jiabao! > > Best, > Yuan > > > On Mon, 26 Feb 2024 at 9:38 AM, Ron liu wrote: > > > Congratulations, Jiabao! > > > > Best, > > Ron > > > > Yun Tang 于2024年2月23日周五 19:59写道: > > > > > Co

Re: [ANNOUNCE] New Apache Flink PMC Member - Lincoln Lee

2024-04-15 Thread yh z
Congratulations, Lincoln! Best, Yunhong (Swuferhong) Swapnal Varma 于2024年4月15日周一 18:50写道: > Congratulations, Lincoln! > > Best, > Swapnal > > > On Mon, 15 Apr 2024, 15:16 Jacky Lau, wrote: > > > Congratulations, Lincoln! > > > > Best, > > Jacky Lau > > > > Jinzhong Li 于2024年4月15日周一 15:45写道:

Re: [ANNOUNCE] New Apache Flink Committer - Zakelly Lan

2024-04-17 Thread yh z
Congratulations Zakelly! Best regards, Yunhong (swuferhong) gongzhongqiang 于2024年4月17日周三 21:26写道: > Congratulations, Zakelly! > > > Best, > Zhongqiang Gong > > Yuan Mei 于2024年4月15日周一 10:51写道: > > > Hi everyone, > > > > On behalf of the PMC, I'm happy to let you know that Zakelly Lan has > beco

Re: [ANNOUNCE] New Apache Flink Committer - Xuyang

2025-02-19 Thread yh z
Congratulations Best, Ron Ron Liu 于2025年2月20日周四 09:56写道: > Congratulations, you deserve it. > > Best, > Ron > > > Lincoln Lee 于2025年2月20日周四 09:50写道: > > > Hi everyone, > > > > On behalf of the PMC, I'm happy to announce that Xuyang has become a > > new Flink Committer! > > > > Xuyang has been