[jira] [Created] (FLINK-6632) Fix parameter case sensitive error for test passing/rejecting filter API

2017-05-18 Thread sunjincheng (JIRA)
sunjincheng created FLINK-6632: -- Summary: Fix parameter case sensitive error for test passing/rejecting filter API Key: FLINK-6632 URL: https://issues.apache.org/jira/browse/FLINK-6632 Project: Flink

[jira] [Created] (FLINK-6631) Implement FLIP-6 MesosTaskExecutorRunner

2017-05-18 Thread Eron Wright (JIRA)
Eron Wright created FLINK-6631: --- Summary: Implement FLIP-6 MesosTaskExecutorRunner Key: FLINK-6631 URL: https://issues.apache.org/jira/browse/FLINK-6631 Project: Flink Issue Type: Sub-task

[jira] [Created] (FLINK-6630) Implement FLIP-6 MesosAppMasterRunner

2017-05-18 Thread Eron Wright (JIRA)
Eron Wright created FLINK-6630: --- Summary: Implement FLIP-6 MesosAppMasterRunner Key: FLINK-6630 URL: https://issues.apache.org/jira/browse/FLINK-6630 Project: Flink Issue Type: Sub-task

Re: [DISCUSS] Reorganize Table API / SQL documentation

2017-05-18 Thread Fabian Hueske
Hi everybody, I came up with a proposal for the structure of the Table API / SQL documentation: https://docs.google.com/document/d/1ENY8tcPadZjoZ4AQ_lRRwWiVpScDkm_4rgxIGWGT5E0/edit?usp=sharing Feedback and comments are very welcome. Once we agree on a structure, we can create skeletons and

Re: [DISCUSS] Release 1.3.0 RC1 (Non voting, testing release candidate)

2017-05-18 Thread Till Rohrmann
I might have found another blocker: https://issues.apache.org/jira/browse/FLINK-6629. The issue is that the ClusterClient only allows to submit jobs to an HA cluster if you have specified the JobManager's address in the flink-conf.yaml or via the command line options. If no address is set, then

[jira] [Created] (FLINK-6629) ClusterClient cannot submit jobs to HA cluster if address not set in configuration

2017-05-18 Thread Till Rohrmann (JIRA)
Till Rohrmann created FLINK-6629: Summary: ClusterClient cannot submit jobs to HA cluster if address not set in configuration Key: FLINK-6629 URL: https://issues.apache.org/jira/browse/FLINK-6629

[jira] [Created] (FLINK-6628) Cannot start taskmanager with cygwin in directory containing spaces

2017-05-18 Thread Chesnay Schepler (JIRA)
Chesnay Schepler created FLINK-6628: --- Summary: Cannot start taskmanager with cygwin in directory containing spaces Key: FLINK-6628 URL: https://issues.apache.org/jira/browse/FLINK-6628 Project:

Re: [DISCUSS] Release 1.3.0 RC1 (Non voting, testing release candidate)

2017-05-18 Thread Chesnay Schepler
The test document says that the default flink-conf.yml "should define more than one task slot", but it currently configures exactly 1 task slot. Not sure if it is a typo in the doc though. On 18.05.2017 22:10, Chesnay Schepler wrote: The start-cluster.sh script failed for me on Windows when

Re: [DISCUSS] Release 1.3.0 RC1 (Non voting, testing release candidate)

2017-05-18 Thread Chesnay Schepler
The start-cluster.sh script failed for me on Windows when executed in a directory containing spaces. On 18.05.2017 20:47, Chesnay Schepler wrote: FLINK-6610 should also be fixed; it is currently not possible to disable web-submissions. On 18.05.2017 18:13, jincheng sun wrote: Hi Robert, I

Re: [DISCUSS] Reorganize Table API / SQL documentation

2017-05-18 Thread Haohui Mai
+1 The Table / SQL component has made significant progress in the last few months (kudos to all contributors). It is a good time to have a documentation to reflect all the changes in the Table / SQL side. On Thu, May 18, 2017 at 8:12 AM Robert Metzger wrote: > Thank you

Re: [DISCUSS] Release 1.3.0 RC1 (Non voting, testing release candidate)

2017-05-18 Thread Chesnay Schepler
FLINK-6610 should also be fixed; it is currently not possible to disable web-submissions. On 18.05.2017 18:13, jincheng sun wrote: Hi Robert, I have some checks to do and some test improve PRs ( https://issues.apache.org/jira/browse/FLINK-6619) need be done soon. Best, SunJincheng 2017-05-18

Re: [DISCUSS] Release 1.3.0 RC1 (Non voting, testing release candidate)

2017-05-18 Thread jincheng sun
Hi Robert, I have some checks to do and some test improve PRs ( https://issues.apache.org/jira/browse/FLINK-6619) need be done soon. Best, SunJincheng 2017-05-18 22:17 GMT+08:00 Greg Hogan : > The following tickets for 1.3.0 have a PR in need of review: > > [FLINK-6582]

[jira] [Created] (FLINK-6627) Expose tmp directories via API

2017-05-18 Thread Andrey (JIRA)
Andrey created FLINK-6627: - Summary: Expose tmp directories via API Key: FLINK-6627 URL: https://issues.apache.org/jira/browse/FLINK-6627 Project: Flink Issue Type: Improvement Affects Versions:

Re: [DISCUSS] Reorganize Table API / SQL documentation

2017-05-18 Thread Robert Metzger
Thank you Fabian for working on the proposal. On Thu, May 18, 2017 at 3:51 PM, Fabian Hueske wrote: > Thanks for starting this discussion Robert. > > I think with the next release the Table API / SQL should be moved up in the > Application Development menu. > I also though

Re: [DISCUSS] Release 1.3.0 RC1 (Non voting, testing release candidate)

2017-05-18 Thread Greg Hogan
The following tickets for 1.3.0 have a PR in need of review: [FLINK-6582] [docs] Project from maven archetype is not buildable by default [FLINK-6616] [docs] Clarify provenance of official Docker images > On May 18, 2017, at 5:40 AM, Fabian Hueske wrote: > > I have a couple

Re: [DISCUSS] Reorganize Table API / SQL documentation

2017-05-18 Thread Fabian Hueske
Thanks for starting this discussion Robert. I think with the next release the Table API / SQL should be moved up in the Application Development menu. I also though about restructuring the docs, but it won't be trivial to do this, IMO because there are many orthogonal aspects: - Stream/Batch -

Re: ListState to List

2017-05-18 Thread Fabian Hueske
I think the ListState interface is pretty well suited for this job. It allows to add elements with low effort and can serve all elements of a list through an iterator. Depending on the implementation the elements could be deserialized as needed. If the user code needs a List with all elements, it

RE: ListState to List

2017-05-18 Thread Radu Tudoran
Actually that was one option that I was considering. I am still a bit fuzzy about the advantages and disadvantages of using one type of state over another. I know that using ValueState would mean that when getting the object value (i.e. a List in this case) the whole would be deserialized at

Re: questions about Flink's HashJoin performance

2017-05-18 Thread Fabian Hueske
Hi, I'm not aware of a performance report for this feature. I don't think it is well known or used a lot. The classes to check out for prepartitioned / presorted data are SplitDataProperties [1], DataSource [2], and as an example PropertyDataSourceTest [3]. [1]

Re: [DISCUSS] Reorganize Table API / SQL documentation

2017-05-18 Thread Kostas Kloudas
A big +1 as well. > On May 18, 2017, at 1:55 PM, Ufuk Celebi wrote: > > On Thu, May 18, 2017 at 1:52 PM, Till Rohrmann wrote: >> I think we have a history of creating too long monolithic documentation >> pages which are hard to digest. So a big +1 for

Re: [DISCUSS] Reorganize Table API / SQL documentation

2017-05-18 Thread Ufuk Celebi
On Thu, May 18, 2017 at 1:52 PM, Till Rohrmann wrote: > I think we have a history of creating too long monolithic documentation > pages which are hard to digest. So a big +1 for splitting the Table API/SQL > documentation up into more easily digestible pieces. +1 Thanks

Re: questions about Flink's HashJoin performance

2017-05-18 Thread weijie tong
thanks for tip @Stephan. To [1] , there's a description about "I’ve got sooo much data to join, do I really need to ship it?" . How to configure Flink to touch that target? Is there a performance report ? [1] : https://flink.apache.org/news/2015/03/13/peeking-into-Apache-Flinks-Engine-Room.html

Re: [DISCUSS] Reorganize Table API / SQL documentation

2017-05-18 Thread Till Rohrmann
I think we have a history of creating too long monolithic documentation pages which are hard to digest. So a big +1 for splitting the Table API/SQL documentation up into more easily digestible pieces. Cheers, Till On Thu, May 18, 2017 at 12:01 PM, Shaoxuan Wang wrote: > Hi

Re: [DISCUSS] Reorganize Table API / SQL documentation

2017-05-18 Thread Shaoxuan Wang
Hi Robert, This sounds great to me. While I am in the middle of writing-up UDAGG doc (FLINK-5905), I also feel it's not good to have entire tableAPI introduction in one page. We can move tableAPI under "application development", and split it into small sub-topics, such as

Re: ListState to List

2017-05-18 Thread Kostas Kloudas
Hi Radu, Why not using a ValueState that inside stored the whole list. Whenever you state#get() you get the whole list and you can sort it. Kostas > On May 18, 2017, at 3:31 AM, Radu Tudoran wrote: > > Hi Aljoscha, > > Thanks for the clarification. I understand

Re: [DISCUSS] Release 1.3.0 RC1 (Non voting, testing release candidate)

2017-05-18 Thread Fabian Hueske
I have a couple of PRs ready with bugfixes that I'll try to get in as well. Should be done soon. 2017-05-18 11:24 GMT+02:00 Till Rohrmann : > I'd like to get a fix in for > https://issues.apache.org/jira/browse/FLINK-6612. This can basically > thwart > Flink's recovery

[jira] [Created] (FLINK-6626) Unifying lifecycle management of SubmittedJobGraph- and CompletedCheckpointStore

2017-05-18 Thread Till Rohrmann (JIRA)
Till Rohrmann created FLINK-6626: Summary: Unifying lifecycle management of SubmittedJobGraph- and CompletedCheckpointStore Key: FLINK-6626 URL: https://issues.apache.org/jira/browse/FLINK-6626

[jira] [Created] (FLINK-6625) Flink removes HA job data when reaching JobStatus.FAILED

2017-05-18 Thread Till Rohrmann (JIRA)
Till Rohrmann created FLINK-6625: Summary: Flink removes HA job data when reaching JobStatus.FAILED Key: FLINK-6625 URL: https://issues.apache.org/jira/browse/FLINK-6625 Project: Flink Issue

Re: [DISCUSS] Release 1.3.0 RC1 (Non voting, testing release candidate)

2017-05-18 Thread Till Rohrmann
I'd like to get a fix in for https://issues.apache.org/jira/browse/FLINK-6612. This can basically thwart Flink's recovery capabilities. On Thu, May 18, 2017 at 11:13 AM, Chesnay Schepler wrote: > This PR reduces logging noise a bit: (got +1 to merge) >

Re: [DISCUSS] Release 1.3.0 RC1 (Non voting, testing release candidate)

2017-05-18 Thread Chesnay Schepler
This PR reduces logging noise a bit: (got +1 to merge) https://github.com/apache/flink/pull/3917 This PR fixes the compilation on Windows: (reviewed once, most recent changes not reviewed) https://github.com/apache/flink/pull/3854 This PR enables a test for savepoint compatibility: (nice to

Re: [DISCUSS] Release 1.3.0 RC1 (Non voting, testing release candidate)

2017-05-18 Thread Tzu-Li (Gordon) Tai
Hi Robert, There is one last pending fix for the serializer upgrades feature:  https://issues.apache.org/jira/browse/FLINK-6482. Pending PR: https://github.com/apache/flink/pull/3937. I can’t say its a complete blocker, but since it will affect serialization format of checkpoints, it would be

[DISCUSS] Reorganize Table API / SQL documentation

2017-05-18 Thread Robert Metzger
Hi, I'm wondering whether we should make the Table API a bit more prominent in our documentation by upgrading it from below "Libraries" to the same level as "DataSet" and "DataStream". This would also allow us to split it from one large page into smaller sub-pages. I think it would be nice to

[jira] [Created] (FLINK-6623) unable to build flink master

2017-05-18 Thread constantine stanley (JIRA)
constantine stanley created FLINK-6623: -- Summary: unable to build flink master Key: FLINK-6623 URL: https://issues.apache.org/jira/browse/FLINK-6623 Project: Flink Issue Type: Bug

Re: [DISCUSS] Release 1.3.0 RC1 (Non voting, testing release candidate)

2017-05-18 Thread Robert Metzger
I will. Actually I had it already on my radar because its one of the three remaining blockers. Your JIRA has already a PR so I guess its on a good track, for the other blockers, I think its fine to release without having them fixed. Is there anything else we need to get into the 1.3.0 release?

Re: Update Netty version

2017-05-18 Thread Alexey Demin
Hi Problem not directly in flink, but it you use flink with beam then in classpath you have original netty 4.0.27 from flink and netty 4.1.x from beam (grpc use netty 4.1.x for communication). Other interest (specific for me now): netty have custom wrapper for openssl library which have more

[jira] [Created] (FLINK-6622) flink master code not compiling

2017-05-18 Thread constantine stanley (JIRA)
constantine stanley created FLINK-6622: -- Summary: flink master code not compiling Key: FLINK-6622 URL: https://issues.apache.org/jira/browse/FLINK-6622 Project: Flink Issue Type: Bug

Re: Update Netty version

2017-05-18 Thread Till Rohrmann
Hi Alexey, thanks for looking into it. Are we currently facing any problems with Netty 4.0.27 (bugs or performance)? I agree that in general we should try to use the latest bug fix release. However, in the past we have seen that they might entail some slight behaviour changes which breaks things

Update Netty version

2017-05-18 Thread Alexey Demin
Hi For now we use very old netty version. Netty 4.0.27.Final released on 02-Apr-15 If we so worry about slice in LengthFieldBasedFrameDecoder we can add custom LengthFieldBasedCopyFrameDecoder which extend original LengthFieldBasedFrameDecoder and override extractFrame for keep current

Re: Proposal about inner join in Flink

2017-05-18 Thread Xingcan Cui
Hi Shaoxuan and Yuhong, thanks for your feedbacks. @Shaoxuan, actually the unbounded inner join is just inspired by your document and the discussions. I've spent a lot of time arranging the references, but still put the link at a wrong please. Sorry for that and had it done now. Go back to

[jira] [Created] (FLINK-6621) Legal check for 1.3.0 RC01 Release

2017-05-18 Thread Xiaowei Jiang (JIRA)
Xiaowei Jiang created FLINK-6621: Summary: Legal check for 1.3.0 RC01 Release Key: FLINK-6621 URL: https://issues.apache.org/jira/browse/FLINK-6621 Project: Flink Issue Type: Bug