[jira] [Created] (FLINK-12955) Add HBase LookupableTableSource

2019-06-23 Thread Chance Li (JIRA)
Chance Li created FLINK-12955: - Summary: Add HBase LookupableTableSource Key: FLINK-12955 URL: https://issues.apache.org/jira/browse/FLINK-12955 Project: Flink Issue Type: New Feature

[jira] [Created] (FLINK-12954) Supports watermark and create view for sql parser

2019-06-23 Thread Danny Chan (JIRA)
Danny Chan created FLINK-12954: -- Summary: Supports watermark and create view for sql parser Key: FLINK-12954 URL: https://issues.apache.org/jira/browse/FLINK-12954 Project: Flink Issue Type:

Re: [DISCUSS] Start a user...@flink.apache.org mailing list for the Chinese-speaking community?

2019-06-23 Thread Hequn Cheng
Hi, I'd like to share you the result of the survey. Thanks for the help from @Gordon, @Jark and the Flink China operation team when conducting the survey. A total of 81 people participated in the survey. 46 of them choose not to use the mailing list. Among these people, the reasons are(Note that

[jira] [Created] (FLINK-12953) View logs from Job view in Web Dashboard

2019-06-23 Thread Chad Dombrova (JIRA)
Chad Dombrova created FLINK-12953: - Summary: View logs from Job view in Web Dashboard Key: FLINK-12953 URL: https://issues.apache.org/jira/browse/FLINK-12953 Project: Flink Issue Type:

[ANNOUNCE] Weekly Community Update 2019/25

2019-06-23 Thread Konstantin Knauf
Dear community, this week's update contains a few pointers to upcoming changes in the development process, two recent proposals around metrics as well as smaller discussions on the dev mailing list. Still processing the backlog of topics & discussions by including a few of them each week. As

Re: [DISCUSS] Adopting a Code Style and Quality Guide

2019-06-23 Thread David Morávek
I love this kind of unification being pushed forward, the benefit it has on code reviews is enormous. Just my two cents, did you guys think about adopting an automatic code formatter for java, the same way as Apache Beam did? It is super easy to use for contributors as they don't need to keep any

get contributor permission

2019-06-23 Thread jinxiaolong_al...@163.com
Hi, I want to contribute to Apache Flink. Would you please give me the contributor permission? My JIRA ID is jinxl. jinxiaolong_al...@163.com

Re: [DISCUSS] Connectors and NULL handling

2019-06-23 Thread Xiaowei Jiang
Error handling policy for streaming jobs goes beyond potential corrupted messages in the source. Users may have subtle bugs while processing some messages which may cause the streaming jobs to fail. Even though this can be considered as a bug in user's code, users may prefer skip such messages (or

Re: Specifying parallelism on join operation

2019-06-23 Thread Xiaowei Jiang
You can use with(JoinFunction) to workaround it. See JavaDoc for Flink 1.8: @PublicEvolving