[jira] [Created] (FLINK-3976) Alias fields of physical plan node to avoid name collision with Calcite protected fields

2016-05-25 Thread Yijie Shen (JIRA)
Yijie Shen created FLINK-3976: - Summary: Alias fields of physical plan node to avoid name collision with Calcite protected fields Key: FLINK-3976 URL: https://issues.apache.org/jira/browse/FLINK-3976 Proj

[jira] [Updated] (FLINK-3976) Alias fields of physical plan node to avoid name collision with Calcite protected fields

2016-05-25 Thread Yijie Shen (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-3976?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Yijie Shen updated FLINK-3976: -- Description: The field name collisions in physical plan node make IDE hard to get a field's type and un

[jira] [Commented] (FLINK-3941) Add support for UNION (with duplicate elimination)

2016-05-25 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-3941?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15301332#comment-15301332 ] ASF GitHub Bot commented on FLINK-3941: --- Github user yjshen commented on the pull re

[GitHub] flink pull request: [FLINK-3941][TableAPI]Add support for UNION (w...

2016-05-25 Thread yjshen
Github user yjshen commented on the pull request: https://github.com/apache/flink/pull/2025#issuecomment-221762766 Hi @fhueske , I've updated the `expectedType` fix and reverted changes in `DataSetUnion` and `DataSetUnionRule` to make the implementation clear and simple, what do you t

[jira] [Updated] (FLINK-2765) Upgrade hbase version for hadoop-2 to 1.2 release

2016-05-25 Thread Ted Yu (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-2765?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ted Yu updated FLINK-2765: -- Description: Currently 0.98.11 is used: {code} 0.98.11-hadoop2 {code} Stable release for hadoop-

[jira] [Commented] (FLINK-3477) Add hash-based combine strategy for ReduceFunction

2016-05-25 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-3477?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15301143#comment-15301143 ] ASF GitHub Bot commented on FLINK-3477: --- Github user fhueske commented on the pull r

[GitHub] flink pull request: [FLINK-3477] [runtime] Add hash-based combine ...

2016-05-25 Thread fhueske
Github user fhueske commented on a diff in the pull request: https://github.com/apache/flink/pull/1517#discussion_r64667132 --- Diff: flink-scala/src/main/scala/org/apache/flink/api/scala/GroupedDataSet.scala --- @@ -282,27 +283,57 @@ class GroupedDataSet[T: ClassTag]( }

[GitHub] flink pull request: [FLINK-3477] [runtime] Add hash-based combine ...

2016-05-25 Thread fhueske
Github user fhueske commented on the pull request: https://github.com/apache/flink/pull/1517#issuecomment-221740318 This PR does also fix issue FLINK-2246 (add ChainedReduceCombineDriver). Would be nice to have that change in a separate commit before we merge. --- If your project is

[jira] [Commented] (FLINK-3477) Add hash-based combine strategy for ReduceFunction

2016-05-25 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-3477?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15301148#comment-15301148 ] ASF GitHub Bot commented on FLINK-3477: --- Github user fhueske commented on the pull r

[GitHub] flink pull request: [FLINK-3477] [runtime] Add hash-based combine ...

2016-05-25 Thread fhueske
Github user fhueske commented on a diff in the pull request: https://github.com/apache/flink/pull/1517#discussion_r64669221 --- Diff: flink-runtime/src/test/java/org/apache/flink/runtime/operators/hash/CompactingHashTableTest.java --- @@ -252,4 +262,81 @@ private static String get

[GitHub] flink pull request: [FLINK-3477] [runtime] Add hash-based combine ...

2016-05-25 Thread fhueske
Github user fhueske commented on a diff in the pull request: https://github.com/apache/flink/pull/1517#discussion_r64670146 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/operators/hash/ReduceHashTable.java --- @@ -0,0 +1,1048 @@ +/* + * Licensed to the Apa

[jira] [Commented] (FLINK-3477) Add hash-based combine strategy for ReduceFunction

2016-05-25 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-3477?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15301128#comment-15301128 ] ASF GitHub Bot commented on FLINK-3477: --- Github user fhueske commented on a diff in

[GitHub] flink pull request: [FLINK-3477] [runtime] Add hash-based combine ...

2016-05-25 Thread fhueske
Github user fhueske commented on a diff in the pull request: https://github.com/apache/flink/pull/1517#discussion_r64671483 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/operators/hash/ReduceHashTable.java --- @@ -0,0 +1,1048 @@ +/* + * Licensed to the Apa

[GitHub] flink pull request: [FLINK-3477] [runtime] Add hash-based combine ...

2016-05-25 Thread fhueske
Github user fhueske commented on a diff in the pull request: https://github.com/apache/flink/pull/1517#discussion_r64669166 --- Diff: flink-runtime/src/test/java/org/apache/flink/runtime/operators/hash/MemoryHashTableTestCommon.java --- @@ -0,0 +1,666 @@ +/* + * Licensed t

[GitHub] flink pull request: [FLINK-3477] [runtime] Add hash-based combine ...

2016-05-25 Thread fhueske
Github user fhueske commented on the pull request: https://github.com/apache/flink/pull/1517#issuecomment-221739936 Hi @ggevay as promised yesterday, I added my comments and suggestions. Let me know what you think. @greghogan, would you like to take a look as well? Another pa

[GitHub] flink pull request: [FLINK-3477] [runtime] Add hash-based combine ...

2016-05-25 Thread fhueske
Github user fhueske commented on a diff in the pull request: https://github.com/apache/flink/pull/1517#discussion_r64671403 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/operators/hash/ReduceHashTable.java --- @@ -0,0 +1,1048 @@ +/* + * Licensed to the Apa

[jira] [Commented] (FLINK-3477) Add hash-based combine strategy for ReduceFunction

2016-05-25 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-3477?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15301126#comment-15301126 ] ASF GitHub Bot commented on FLINK-3477: --- Github user fhueske commented on a diff in

[GitHub] flink pull request: [FLINK-3477] [runtime] Add hash-based combine ...

2016-05-25 Thread fhueske
Github user fhueske commented on a diff in the pull request: https://github.com/apache/flink/pull/1517#discussion_r64671543 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/operators/hash/ReduceHashTable.java --- @@ -0,0 +1,1048 @@ +/* + * Licensed to the Apa

[GitHub] flink pull request: [FLINK-3477] [runtime] Add hash-based combine ...

2016-05-25 Thread fhueske
Github user fhueske commented on a diff in the pull request: https://github.com/apache/flink/pull/1517#discussion_r64671325 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/operators/hash/ReduceHashTable.java --- @@ -0,0 +1,1048 @@ +/* + * Licensed to the Apa

[GitHub] flink pull request: FLINK-3967 - Flink Sink for Rethink Db

2016-05-25 Thread mans2singh
Github user mans2singh commented on the pull request: https://github.com/apache/flink/pull/2031#issuecomment-221737718 Hey @zentol - Thanks for your feedback. - I've renamed the sink as you had recommended. - Currently the driver from rethinkdb supports java 8 only. There i

[GitHub] flink pull request: [FLINK-3477] [runtime] Add hash-based combine ...

2016-05-25 Thread fhueske
Github user fhueske commented on a diff in the pull request: https://github.com/apache/flink/pull/1517#discussion_r64670534 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/operators/hash/ReduceHashTable.java --- @@ -0,0 +1,1048 @@ +/* + * Licensed to the Apa

[GitHub] flink pull request: [FLINK-3477] [runtime] Add hash-based combine ...

2016-05-25 Thread fhueske
Github user fhueske commented on a diff in the pull request: https://github.com/apache/flink/pull/1517#discussion_r64669861 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/operators/hash/ReduceHashTable.java --- @@ -0,0 +1,1048 @@ +/* + * Licensed to the Apa

[GitHub] flink pull request: [FLINK-3477] [runtime] Add hash-based combine ...

2016-05-25 Thread fhueske
Github user fhueske commented on a diff in the pull request: https://github.com/apache/flink/pull/1517#discussion_r64670218 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/operators/hash/ReduceHashTable.java --- @@ -0,0 +1,1048 @@ +/* + * Licensed to the Apa

[jira] [Commented] (FLINK-3477) Add hash-based combine strategy for ReduceFunction

2016-05-25 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-3477?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15301122#comment-15301122 ] ASF GitHub Bot commented on FLINK-3477: --- Github user fhueske commented on a diff in

[jira] [Commented] (FLINK-3477) Add hash-based combine strategy for ReduceFunction

2016-05-25 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-3477?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15301124#comment-15301124 ] ASF GitHub Bot commented on FLINK-3477: --- Github user fhueske commented on a diff in

[GitHub] flink pull request: [FLINK-3477] [runtime] Add hash-based combine ...

2016-05-25 Thread fhueske
Github user fhueske commented on a diff in the pull request: https://github.com/apache/flink/pull/1517#discussion_r64668757 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/operators/chaining/ChainedReduceCombineDriver.java --- @@ -0,0 +1,305 @@ +/* + * Licen

[jira] [Commented] (FLINK-3967) Provide RethinkDB Sink for Flink

2016-05-25 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-3967?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15301112#comment-15301112 ] ASF GitHub Bot commented on FLINK-3967: --- Github user mans2singh commented on the pul

[jira] [Commented] (FLINK-3477) Add hash-based combine strategy for ReduceFunction

2016-05-25 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-3477?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15301108#comment-15301108 ] ASF GitHub Bot commented on FLINK-3477: --- Github user fhueske commented on a diff in

[GitHub] flink pull request: [FLINK-3477] [runtime] Add hash-based combine ...

2016-05-25 Thread fhueske
Github user fhueske commented on a diff in the pull request: https://github.com/apache/flink/pull/1517#discussion_r64668798 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/operators/ReduceCombineDriver.java --- @@ -114,85 +118,133 @@ public void prepare() throws Exc

[GitHub] flink pull request: [FLINK-3477] [runtime] Add hash-based combine ...

2016-05-25 Thread fhueske
Github user fhueske commented on a diff in the pull request: https://github.com/apache/flink/pull/1517#discussion_r64667955 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/io/disk/RandomAccessInputView.java --- @@ -45,7 +45,12 @@ public RandomAccessInputView(ArrayLi

[jira] [Commented] (FLINK-3477) Add hash-based combine strategy for ReduceFunction

2016-05-25 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-3477?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15301104#comment-15301104 ] ASF GitHub Bot commented on FLINK-3477: --- Github user fhueske commented on a diff in

[GitHub] flink pull request: [FLINK-3477] [runtime] Add hash-based combine ...

2016-05-25 Thread fhueske
Github user fhueske commented on a diff in the pull request: https://github.com/apache/flink/pull/1517#discussion_r64668428 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/operators/ReduceCombineDriver.java --- @@ -42,34 +44,38 @@ * Combine operator for Reduce

[GitHub] flink pull request: [FLINK-3477] [runtime] Add hash-based combine ...

2016-05-25 Thread fhueske
Github user fhueske commented on a diff in the pull request: https://github.com/apache/flink/pull/1517#discussion_r64668630 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/operators/chaining/ChainedReduceCombineDriver.java --- @@ -0,0 +1,305 @@ +/* + * Licen

[jira] [Commented] (FLINK-3477) Add hash-based combine strategy for ReduceFunction

2016-05-25 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-3477?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15301102#comment-15301102 ] ASF GitHub Bot commented on FLINK-3477: --- Github user fhueske commented on a diff in

[GitHub] flink pull request: [FLINK-3477] [runtime] Add hash-based combine ...

2016-05-25 Thread fhueske
Github user fhueske commented on a diff in the pull request: https://github.com/apache/flink/pull/1517#discussion_r64667048 --- Diff: flink-java/src/main/java/org/apache/flink/api/java/operators/UnsortedGrouping.java --- @@ -135,10 +136,37 @@ public UnsortedGrouping(DataSet set, K

[GitHub] flink pull request: [FLINK-3477] [runtime] Add hash-based combine ...

2016-05-25 Thread fhueske
Github user fhueske commented on a diff in the pull request: https://github.com/apache/flink/pull/1517#discussion_r64668546 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/operators/chaining/ChainedReduceCombineDriver.java --- @@ -0,0 +1,305 @@ +/* + * Licen

[GitHub] flink pull request: [FLINK-3477] [runtime] Add hash-based combine ...

2016-05-25 Thread fhueske
Github user fhueske commented on a diff in the pull request: https://github.com/apache/flink/pull/1517#discussion_r64666960 --- Diff: flink-java/src/main/java/org/apache/flink/api/java/operators/UnsortedGrouping.java --- @@ -135,10 +136,37 @@ public UnsortedGrouping(DataSet set, K

[jira] [Commented] (FLINK-3477) Add hash-based combine strategy for ReduceFunction

2016-05-25 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-3477?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15301097#comment-15301097 ] ASF GitHub Bot commented on FLINK-3477: --- Github user fhueske commented on a diff in

[jira] [Commented] (FLINK-3477) Add hash-based combine strategy for ReduceFunction

2016-05-25 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-3477?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15301083#comment-15301083 ] ASF GitHub Bot commented on FLINK-3477: --- Github user fhueske commented on a diff in

[jira] [Commented] (FLINK-3477) Add hash-based combine strategy for ReduceFunction

2016-05-25 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-3477?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15301082#comment-15301082 ] ASF GitHub Bot commented on FLINK-3477: --- Github user fhueske commented on a diff in

[jira] [Commented] (FLINK-3477) Add hash-based combine strategy for ReduceFunction

2016-05-25 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-3477?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15301075#comment-15301075 ] ASF GitHub Bot commented on FLINK-3477: --- Github user fhueske commented on a diff in

[jira] [Commented] (FLINK-3477) Add hash-based combine strategy for ReduceFunction

2016-05-25 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-3477?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15301073#comment-15301073 ] ASF GitHub Bot commented on FLINK-3477: --- Github user fhueske commented on a diff in

[jira] [Commented] (FLINK-3477) Add hash-based combine strategy for ReduceFunction

2016-05-25 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-3477?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15301061#comment-15301061 ] ASF GitHub Bot commented on FLINK-3477: --- Github user fhueske commented on a diff in

[jira] [Commented] (FLINK-3477) Add hash-based combine strategy for ReduceFunction

2016-05-25 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-3477?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15301070#comment-15301070 ] ASF GitHub Bot commented on FLINK-3477: --- Github user fhueske commented on a diff in

[jira] [Commented] (FLINK-3477) Add hash-based combine strategy for ReduceFunction

2016-05-25 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-3477?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15301069#comment-15301069 ] ASF GitHub Bot commented on FLINK-3477: --- Github user fhueske commented on a diff in

[jira] [Commented] (FLINK-3477) Add hash-based combine strategy for ReduceFunction

2016-05-25 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-3477?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15301065#comment-15301065 ] ASF GitHub Bot commented on FLINK-3477: --- Github user fhueske commented on a diff in

[jira] [Commented] (FLINK-3477) Add hash-based combine strategy for ReduceFunction

2016-05-25 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-3477?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15301046#comment-15301046 ] ASF GitHub Bot commented on FLINK-3477: --- Github user fhueske commented on a diff in

[jira] [Commented] (FLINK-3477) Add hash-based combine strategy for ReduceFunction

2016-05-25 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-3477?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15301050#comment-15301050 ] ASF GitHub Bot commented on FLINK-3477: --- Github user fhueske commented on a diff in

[jira] [Commented] (FLINK-3477) Add hash-based combine strategy for ReduceFunction

2016-05-25 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-3477?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15301042#comment-15301042 ] ASF GitHub Bot commented on FLINK-3477: --- Github user fhueske commented on a diff in

[jira] [Updated] (FLINK-3974) enableObjectReuse fails when an operator chains to multiple downstream operators

2016-05-25 Thread B Wyatt (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-3974?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] B Wyatt updated FLINK-3974: --- Attachment: bwyatt-FLINK3974.1.patch I was able to fix this for my topology and the test case by making a very

[jira] [Commented] (FLINK-3970) How to deal with "resouce isolation" problem

2016-05-25 Thread Stephan Ewen (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-3970?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15300746#comment-15300746 ] Stephan Ewen commented on FLINK-3970: - I think the best way to completely isolate jobs

[GitHub] flink pull request: [FLINK-3806] [gelly] Revert use of DataSet.cou...

2016-05-25 Thread greghogan
GitHub user greghogan opened a pull request: https://github.com/apache/flink/pull/2036 [FLINK-3806] [gelly] Revert use of DataSet.count() This leaves the Graph API unchanged but GatherSumApplyIteration and ScatterGatherIteration now use broadcast variables to share the numberOfVert

[jira] [Updated] (FLINK-3975) docs build script isn't serving the preview on the correct base url

2016-05-25 Thread Dyana Rose (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-3975?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Dyana Rose updated FLINK-3975: -- Description: when running the documentation build script as: {{./build_docs.sh -p}} the docs are built u

[jira] [Created] (FLINK-3975) docs build script isn't serving the preview on the correct base url

2016-05-25 Thread Dyana Rose (JIRA)
Dyana Rose created FLINK-3975: - Summary: docs build script isn't serving the preview on the correct base url Key: FLINK-3975 URL: https://issues.apache.org/jira/browse/FLINK-3975 Project: Flink

[jira] [Updated] (FLINK-3801) Upgrade Joda-Time library to 2.9.3

2016-05-25 Thread Ted Yu (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-3801?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ted Yu updated FLINK-3801: -- Description: Currently yoda-time 2.5 is used which was very old. We should upgrade to 2.9.3 was: Currently

[jira] [Commented] (FLINK-3806) Revert use of DataSet.count() in Gelly

2016-05-25 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-3806?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15300691#comment-15300691 ] ASF GitHub Bot commented on FLINK-3806: --- GitHub user greghogan opened a pull request

[GitHub] flink pull request: [FLINK-3477] [runtime] Add hash-based combine ...

2016-05-25 Thread ggevay
Github user ggevay commented on the pull request: https://github.com/apache/flink/pull/1517#issuecomment-221670393 And @th0br0 is working on CombineHint.NONE. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your projec

[jira] [Commented] (FLINK-3477) Add hash-based combine strategy for ReduceFunction

2016-05-25 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-3477?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15300638#comment-15300638 ] ASF GitHub Bot commented on FLINK-3477: --- Github user ggevay commented on the pull re

[jira] [Commented] (FLINK-3974) enableObjectReuse fails when an operator chains to multiple downstream operators

2016-05-25 Thread B Wyatt (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-3974?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15300642#comment-15300642 ] B Wyatt commented on FLINK-3974: After attempting to produce a minimal repro, I realized t

[jira] [Issue Comment Deleted] (FLINK-3974) enableObjectReuse fails when an operator chains to multiple downstream operators

2016-05-25 Thread B Wyatt (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-3974?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] B Wyatt updated FLINK-3974: --- Comment: was deleted (was: Simple repro program.) > enableObjectReuse fails when an operator chains to multip

[jira] [Updated] (FLINK-3974) enableObjectReuse fails when an operator chains to multiple downstream operators

2016-05-25 Thread B Wyatt (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-3974?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] B Wyatt updated FLINK-3974: --- Attachment: ReproFLINK3974.java Simple repro program. > enableObjectReuse fails when an operator chains to mu

[jira] [Commented] (FLINK-3477) Add hash-based combine strategy for ReduceFunction

2016-05-25 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-3477?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15300456#comment-15300456 ] ASF GitHub Bot commented on FLINK-3477: --- Github user ggevay commented on the pull re

[GitHub] flink pull request: [FLINK-3477] [runtime] Add hash-based combine ...

2016-05-25 Thread ggevay
Github user ggevay commented on the pull request: https://github.com/apache/flink/pull/1517#issuecomment-221644628 We talked about this yesterday with @fhueske at the Flink meetup, and the conclusion was that we will get it into 1.1. @fhueske has several comments that he will write he

[jira] [Commented] (FLINK-3477) Add hash-based combine strategy for ReduceFunction

2016-05-25 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-3477?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15300453#comment-15300453 ] ASF GitHub Bot commented on FLINK-3477: --- Github user greghogan commented on the pull

[GitHub] flink pull request: [FLINK-3477] [runtime] Add hash-based combine ...

2016-05-25 Thread greghogan
Github user greghogan commented on the pull request: https://github.com/apache/flink/pull/1517#issuecomment-221643813 What is the status of this PR? Can we get this in and tested for the 1.1 release? --- If your project is set up for it, you can reply to this email and have your repl

[jira] [Resolved] (FLINK-2044) Implementation of Gelly HITS Algorithm

2016-05-25 Thread Vasia Kalavri (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-2044?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Vasia Kalavri resolved FLINK-2044. -- Resolution: Implemented Fix Version/s: 1.1.0 > Implementation of Gelly HITS Algorithm > -

[jira] [Commented] (FLINK-2044) Implementation of Gelly HITS Algorithm

2016-05-25 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-2044?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15300415#comment-15300415 ] ASF GitHub Bot commented on FLINK-2044: --- Github user asfgit closed the pull request

[GitHub] flink pull request: [FLINK-2044] [gelly] Implementation of Gelly H...

2016-05-25 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/flink/pull/1956 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enab

[jira] [Commented] (FLINK-2044) Implementation of Gelly HITS Algorithm

2016-05-25 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-2044?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15300409#comment-15300409 ] ASF GitHub Bot commented on FLINK-2044: --- Github user vasia commented on the pull req

[GitHub] flink pull request: [FLINK-2044] [gelly] Implementation of Gelly H...

2016-05-25 Thread vasia
Github user vasia commented on the pull request: https://github.com/apache/flink/pull/1956#issuecomment-221637781 Thanks @gallenvara! All tests pass now. I will merge :) --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If

[jira] [Created] (FLINK-3974) enableObjectReuse fails when an operator chains to multiple downstream operators

2016-05-25 Thread B Wyatt (JIRA)
B Wyatt created FLINK-3974: -- Summary: enableObjectReuse fails when an operator chains to multiple downstream operators Key: FLINK-3974 URL: https://issues.apache.org/jira/browse/FLINK-3974 Project: Flink

[jira] [Created] (FLINK-3973) Table API documentation is "hidden" in Programming Guide menu list

2016-05-25 Thread Fabian Hueske (JIRA)
Fabian Hueske created FLINK-3973: Summary: Table API documentation is "hidden" in Programming Guide menu list Key: FLINK-3973 URL: https://issues.apache.org/jira/browse/FLINK-3973 Project: Flink

[jira] [Assigned] (FLINK-3714) Add Support for "Allowed Lateness"

2016-05-25 Thread Kostas Kloudas (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-3714?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Kostas Kloudas reassigned FLINK-3714: - Assignee: Kostas Kloudas > Add Support for "Allowed Lateness" > -

[jira] [Closed] (FLINK-1673) Colocate Flink Kafka consumer

2016-05-25 Thread Aljoscha Krettek (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-1673?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Aljoscha Krettek closed FLINK-1673. --- Resolution: Won't Fix > Colocate Flink Kafka consumer > - > >

[jira] [Commented] (FLINK-2044) Implementation of Gelly HITS Algorithm

2016-05-25 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-2044?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15300238#comment-15300238 ] ASF GitHub Bot commented on FLINK-2044: --- Github user gallenvara commented on the pul

[jira] [Commented] (FLINK-1673) Colocate Flink Kafka consumer

2016-05-25 Thread Robert Metzger (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-1673?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15300236#comment-15300236 ] Robert Metzger commented on FLINK-1673: --- I can not remember any user asking for this

[GitHub] flink pull request: [FLINK-2044] [gelly] Implementation of Gelly H...

2016-05-25 Thread gallenvara
Github user gallenvara commented on the pull request: https://github.com/apache/flink/pull/1956#issuecomment-221616393 @vasia In the travis failure reports, the failures are relevant with flink-yarn-tests module. I have merged the latest code from master and rebase all my commit in th

[jira] [Commented] (FLINK-3945) Degree annotation for directed graphs

2016-05-25 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-3945?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15300223#comment-15300223 ] ASF GitHub Bot commented on FLINK-3945: --- Github user greghogan commented on a diff i

[GitHub] flink pull request: [FLINK-3945] [gelly] Degree annotation for dir...

2016-05-25 Thread greghogan
Github user greghogan commented on a diff in the pull request: https://github.com/apache/flink/pull/2021#discussion_r64594890 --- Diff: flink-libraries/flink-gelly/src/main/java/org/apache/flink/graph/asm/degree/annotate/directed/EdgeDegreesPair.java --- @@ -0,0 +1,81 @@ +/*

[jira] [Created] (FLINK-3972) Subclasses of ResourceID may not to be serializable

2016-05-25 Thread Maximilian Michels (JIRA)
Maximilian Michels created FLINK-3972: - Summary: Subclasses of ResourceID may not to be serializable Key: FLINK-3972 URL: https://issues.apache.org/jira/browse/FLINK-3972 Project: Flink I

[jira] [Updated] (FLINK-3806) Revert use of DataSet.count() in Gelly

2016-05-25 Thread Greg Hogan (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-3806?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Greg Hogan updated FLINK-3806: -- Fix Version/s: 1.1.0 > Revert use of DataSet.count() in Gelly > -- >

[jira] [Commented] (FLINK-2044) Implementation of Gelly HITS Algorithm

2016-05-25 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-2044?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15300187#comment-15300187 ] ASF GitHub Bot commented on FLINK-2044: --- Github user gallenvara commented on the pul

[GitHub] flink pull request: [FLINK-2044] [gelly] Implementation of Gelly H...

2016-05-25 Thread gallenvara
Github user gallenvara commented on the pull request: https://github.com/apache/flink/pull/1956#issuecomment-221606502 @vasia wait for minutes and i will take a look. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If you

[GitHub] flink pull request: [FLINK-3945] [gelly] Degree annotation for dir...

2016-05-25 Thread vasia
Github user vasia commented on a diff in the pull request: https://github.com/apache/flink/pull/2021#discussion_r64589442 --- Diff: flink-libraries/flink-gelly/src/main/java/org/apache/flink/graph/asm/degree/annotate/directed/EdgeDegreesPair.java --- @@ -0,0 +1,81 @@ +/* +

[jira] [Commented] (FLINK-3945) Degree annotation for directed graphs

2016-05-25 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-3945?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15300183#comment-15300183 ] ASF GitHub Bot commented on FLINK-3945: --- Github user vasia commented on a diff in th

[GitHub] flink pull request: [FLINK-2044] [gelly] Implementation of Gelly H...

2016-05-25 Thread vasia
Github user vasia commented on the pull request: https://github.com/apache/flink/pull/1956#issuecomment-221603967 The failures were in the `HITSAlgorithmITCase`. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your pro

[jira] [Commented] (FLINK-2044) Implementation of Gelly HITS Algorithm

2016-05-25 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-2044?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15300178#comment-15300178 ] ASF GitHub Bot commented on FLINK-2044: --- Github user vasia commented on the pull req

[jira] [Commented] (FLINK-2044) Implementation of Gelly HITS Algorithm

2016-05-25 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-2044?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15300177#comment-15300177 ] ASF GitHub Bot commented on FLINK-2044: --- Github user greghogan commented on the pull

[jira] [Commented] (FLINK-3723) Aggregate Functions and scalar expressions shouldn't be mixed in select

2016-05-25 Thread Fabian Hueske (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-3723?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15300157#comment-15300157 ] Fabian Hueske commented on FLINK-3723: -- We should resolve this issue (either way) bef

[GitHub] flink pull request: [FLINK-2044] [gelly] Implementation of Gelly H...

2016-05-25 Thread greghogan
Github user greghogan commented on the pull request: https://github.com/apache/flink/pull/1956#issuecomment-221603165 @vasia in which module were the failures? master has been quite unstable recently now that tests are properly failing. --- If your project is set up for it, you can r

[GitHub] flink pull request: [FLINK-2044] [gelly] Implementation of Gelly H...

2016-05-25 Thread vasia
Github user vasia commented on the pull request: https://github.com/apache/flink/pull/1956#issuecomment-221600182 Hey @gallenvara, I was about to merge this, but I see test failures after rebasing on top of master. Can you please (1) rebase on top of the latest master and squas

[jira] [Commented] (FLINK-3945) Degree annotation for directed graphs

2016-05-25 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-3945?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15300173#comment-15300173 ] ASF GitHub Bot commented on FLINK-3945: --- Github user greghogan commented on a diff i

[jira] [Updated] (FLINK-2971) Add outer joins to the Table API

2016-05-25 Thread Fabian Hueske (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-2971?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Fabian Hueske updated FLINK-2971: - Priority: Critical (was: Major) > Add outer joins to the Table API >

[GitHub] flink pull request: [FLINK-3945] [gelly] Degree annotation for dir...

2016-05-25 Thread greghogan
Github user greghogan commented on a diff in the pull request: https://github.com/apache/flink/pull/2021#discussion_r64587577 --- Diff: flink-libraries/flink-gelly/src/main/java/org/apache/flink/graph/asm/degree/annotate/directed/EdgeDegreesPair.java --- @@ -0,0 +1,81 @@ +/*

[GitHub] flink pull request: [FLINK-3589] Allow setting Operator parallelis...

2016-05-25 Thread greghogan
Github user greghogan commented on the pull request: https://github.com/apache/flink/pull/1778#issuecomment-221597445 `PARALLELISM_UNKNOWN` is a no-op which leaves the parallelism unchanged. This is a useful default for batch algorithms such as `JaccardIndex` for which parallelism can

[jira] [Created] (FLINK-3971) Aggregates handle null values incorrectly.

2016-05-25 Thread Fabian Hueske (JIRA)
Fabian Hueske created FLINK-3971: Summary: Aggregates handle null values incorrectly. Key: FLINK-3971 URL: https://issues.apache.org/jira/browse/FLINK-3971 Project: Flink Issue Type: Bug

[jira] [Updated] (FLINK-3936) Add MIN / MAX aggregations function for BOOLEAN types

2016-05-25 Thread Fabian Hueske (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-3936?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Fabian Hueske updated FLINK-3936: - Priority: Critical (was: Major) > Add MIN / MAX aggregations function for BOOLEAN types > ---

[jira] [Commented] (FLINK-3589) Allow setting Operator parallelism to default value

2016-05-25 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-3589?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15300154#comment-15300154 ] ASF GitHub Bot commented on FLINK-3589: --- Github user greghogan commented on the pull

[jira] [Updated] (FLINK-3859) Add BigDecimal/BigInteger support to Table API

2016-05-25 Thread Fabian Hueske (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-3859?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Fabian Hueske updated FLINK-3859: - Priority: Critical (was: Major) > Add BigDecimal/BigInteger support to Table API > --

[jira] [Commented] (FLINK-2044) Implementation of Gelly HITS Algorithm

2016-05-25 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/FLINK-2044?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15300162#comment-15300162 ] ASF GitHub Bot commented on FLINK-2044: --- Github user vasia commented on the pull req

  1   2   >