[GitHub] flink pull request: [FLINK-1528][Gelly] Added Local Clustering Coe...

2015-08-09 Thread balidani
Github user balidani closed the pull request at: https://github.com/apache/flink/pull/420 --- 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

[GitHub] flink pull request: [FLINK-1528][Gelly] Added Local Clustering Coe...

2015-08-09 Thread balidani
Github user balidani commented on the pull request: https://github.com/apache/flink/pull/420#issuecomment-129223724 @vasia yes, I'm sorry about not finishing it, but I just did not have the time lately. Cheers! --- If your project is set up for it, you can reply

[GitHub] flink pull request: [FLINK-1528][Gelly] Added Local Clustering Coe...

2015-06-03 Thread balidani
Github user balidani commented on the pull request: https://github.com/apache/flink/pull/420#issuecomment-108284218 Yeah, I should definitely finish this! I'll take a look tonight, sorry about that :) --- If your project is set up for it, you can reply to this email and have your

[GitHub] flink pull request: [FLINK-1514][Gelly] Add a Gather-Sum-Apply ite...

2015-04-19 Thread balidani
Github user balidani commented on the pull request: https://github.com/apache/flink/pull/408#issuecomment-94306580 Hi @vasia! I fixed the problems, sorry about that. I had to resolve some merge conflicts and it appears that I did not notice some things. Next time I'll check

[GitHub] flink pull request: [FLINK-1514][Gelly] Add a Gather-Sum-Apply ite...

2015-04-17 Thread balidani
Github user balidani commented on the pull request: https://github.com/apache/flink/pull/408#issuecomment-93977860 Hi @andralungu! I just talked to Vasia, and I'll do a rebase today. Cheers! --- If your project is set up for it, you can reply to this email and have your

[GitHub] flink pull request: [FLINK-1514][Gelly] Add a Gather-Sum-Apply ite...

2015-04-17 Thread balidani
Github user balidani commented on the pull request: https://github.com/apache/flink/pull/408#issuecomment-94015915 Okay, I updated the PR and Travis passed. --- 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

[GitHub] flink pull request: Fix issue where Windows paths were not recogni...

2015-04-16 Thread balidani
Github user balidani commented on the pull request: https://github.com/apache/flink/pull/491#issuecomment-93723421 Hi! This PR was closed, but the commit right after mine removes the part that fixed the windows issue. https://github.com/apache/flink/commit

[GitHub] flink pull request: Fix issue where Windows paths were not recogni...

2015-03-27 Thread balidani
Github user balidani commented on the pull request: https://github.com/apache/flink/pull/491#issuecomment-87062926 So most of the jobs passed, except for PROFILE=-Dhadoop.version=2.6.0 -Dscala-2.11, where it says No output has been received in the last 10 minutes

[GitHub] flink pull request: Fix issue where Windows paths were not recogni...

2015-03-25 Thread balidani
Github user balidani commented on the pull request: https://github.com/apache/flink/pull/491#issuecomment-86219748 Thanks, I did that, hopefully the tests will pass now. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well

[GitHub] flink pull request: [FLINK-1514][Gelly] Add a Gather-Sum-Apply ite...

2015-03-20 Thread balidani
Github user balidani commented on the pull request: https://github.com/apache/flink/pull/408#issuecomment-84033474 @vasia was completely right about the GGC algorithm, I misunderstood what it was supposed to do. I implemented the correct version, but it turns out, after reading

[GitHub] flink pull request: [FLINK-1528][Gelly] Added Local Clustering Coe...

2015-03-20 Thread balidani
Github user balidani commented on the pull request: https://github.com/apache/flink/pull/420#issuecomment-84068746 Hi @vasia! I fixed the algorithm, now it will convert all edges to a pair of edges and call `distinct` on the edge set. This gives the correct results now. Thanks

[GitHub] flink pull request: Fix issue where Windows paths were not recogni...

2015-03-19 Thread balidani
Github user balidani commented on the pull request: https://github.com/apache/flink/pull/491#issuecomment-83666214 I doubt that paths like `/C:/...` are valid on Windows. I guess Path should be changed then? How can we tell whether a path comes from Windows or not? The Travis

[GitHub] flink pull request: Fix issue where Windows paths were not recogni...

2015-03-17 Thread balidani
Github user balidani commented on the pull request: https://github.com/apache/flink/pull/491#issuecomment-82586976 Yeah, that makes sense, I added two more assertions. Sorry, I forgot to check checkstyle before committing. Should I squash these commits in the end

[GitHub] flink pull request: Fix issue where Windows paths were not recogni...

2015-03-17 Thread balidani
Github user balidani commented on a diff in the pull request: https://github.com/apache/flink/pull/491#discussion_r26613854 --- Diff: flink-core/src/test/java/org/apache/flink/core/fs/PathTest.java --- @@ -63,6 +63,15 @@ public void testPathFromString

[GitHub] flink pull request: Fix issue where Windows paths were not recogni...

2015-03-17 Thread balidani
Github user balidani commented on the pull request: https://github.com/apache/flink/pull/491#issuecomment-82625011 Hi! I squashed them, I hope it's done correctly. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well

[GitHub] flink pull request: Fix issue where Windows paths were not recogni...

2015-03-17 Thread balidani
Github user balidani commented on the pull request: https://github.com/apache/flink/pull/491#issuecomment-82567110 Hi! I added some test cases to `PathTest`. Is it okay like this? --- If your project is set up for it, you can reply to this email and have your reply appear

[GitHub] flink pull request: Fix issue where Windows paths were not recogni...

2015-03-17 Thread balidani
Github user balidani commented on the pull request: https://github.com/apache/flink/pull/491#issuecomment-82577438 I just realized that this fails in Travis, because in `hasWindowsDrive` (Path.java, line 282) there is `if (!OperatingSystem.isWindows()) {`. What can we do

[GitHub] flink pull request: Fix issue where Windows paths were not recogni...

2015-03-17 Thread balidani
Github user balidani commented on the pull request: https://github.com/apache/flink/pull/491#issuecomment-82580762 I removed that part, I hope you meant it like this :) --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well

[GitHub] flink pull request: [FLINK-1522][FLINK-1576] Updated LabelPropagat...

2015-03-03 Thread balidani
Github user balidani commented on the pull request: https://github.com/apache/flink/pull/441#issuecomment-76998835 Hi @vasia! Thanks for the ideas! I tried to add more test cases that reflect them. However, I'm not sure about the last bullet-point. Do you think my last

[GitHub] flink pull request: [FLINK-1528][Gelly] Added Local Clustering Coe...

2015-02-27 Thread balidani
Github user balidani commented on the pull request: https://github.com/apache/flink/pull/420#issuecomment-76391973 I made the changes @vasia suggested --- 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

[GitHub] flink pull request: [FLINK-1522][FLINK-1576] Updated LabelPropagat...

2015-02-27 Thread balidani
GitHub user balidani opened a pull request: https://github.com/apache/flink/pull/441 [FLINK-1522][FLINK-1576] Updated LabelPropagationExample and test Hi! I converted the Label Propagation example to the conventional format, where the main program takes (optional

[GitHub] flink pull request: [FLINK-1514][Gelly] Add a Gather-Sum-Apply ite...

2015-02-25 Thread balidani
Github user balidani commented on a diff in the pull request: https://github.com/apache/flink/pull/408#discussion_r25391476 --- Diff: flink-staging/flink-gelly/src/main/java/org/apache/flink/graph/example/GSASingleSourceShortestPathsExample.java --- @@ -0,0 +1,216

[GitHub] flink pull request: [FLINK-1514][Gelly] Add a Gather-Sum-Apply ite...

2015-02-24 Thread balidani
Github user balidani commented on a diff in the pull request: https://github.com/apache/flink/pull/408#discussion_r25255094 --- Diff: flink-staging/flink-gelly/src/main/java/org/apache/flink/graph/example/GSASingleSourceShortestPathsExample.java --- @@ -0,0 +1,232

[GitHub] flink pull request: [FLINK-1514][Gelly] Add a Gather-Sum-Apply ite...

2015-02-24 Thread balidani
Github user balidani commented on a diff in the pull request: https://github.com/apache/flink/pull/408#discussion_r25255250 --- Diff: flink-staging/flink-gelly/src/main/java/org/apache/flink/graph/example/GSASingleSourceShortestPathsExample.java --- @@ -0,0 +1,232

[GitHub] flink pull request: [FLINK-1514][Gelly] Add a Gather-Sum-Apply ite...

2015-02-23 Thread balidani
Github user balidani commented on the pull request: https://github.com/apache/flink/pull/408#issuecomment-75546102 Hi @vasia! Thanks for the review! I started making the changed, but I got stuck. I get an exception about `GatherUdf` not being Serializable. I tried copying

[GitHub] flink pull request: [FLINK-1528][Gelly] Added Local Clustering Coe...

2015-02-23 Thread balidani
Github user balidani commented on the pull request: https://github.com/apache/flink/pull/420#issuecomment-75588338 Hi! I agree. I will change the example then :) --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well

[GitHub] flink pull request: [FLINK-1528] Added local clustering coefficien...

2015-02-19 Thread balidani
Github user balidani closed the pull request at: https://github.com/apache/flink/pull/400 --- 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

[GitHub] flink pull request: Added Local Clustering Coefficient Example (He...

2015-02-19 Thread balidani
GitHub user balidani opened a pull request: https://github.com/apache/flink/pull/420 Added Local Clustering Coefficient Example (Help needed) Hi! I closed https://github.com/apache/flink/pull/400 and created this instead, because the commit history was messed up

[GitHub] flink pull request: [FLINK-1514][Gelly] Add a Gather-Sum-Apply ite...

2015-02-16 Thread balidani
Github user balidani commented on a diff in the pull request: https://github.com/apache/flink/pull/408#discussion_r24763748 --- Diff: flink-staging/flink-gelly/src/test/java/org/apache/flink/graph/test/GatherSumApplyITCase.java --- @@ -0,0 +1,212 @@ +/* + * Licensed

[GitHub] flink pull request: [FLINK-1514][Gelly] Add a Gather-Sum-Apply ite...

2015-02-16 Thread balidani
GitHub user balidani opened a pull request: https://github.com/apache/flink/pull/408 [FLINK-1514][Gelly] Add a Gather-Sum-Apply iteration method You can merge this pull request into a Git repository by running: $ git pull https://github.com/balidani/flink gelly-gsa

[GitHub] flink pull request: [FLINK-1528] Added local clustering coefficien...

2015-02-15 Thread balidani
GitHub user balidani opened a pull request: https://github.com/apache/flink/pull/400 [FLINK-1528] Added local clustering coefficient example (failing) As @vasia requested, here is the current version of local clustering coefficient for Gelly. It causes exceptions, so this PR

[GitHub] flink pull request: [FLINK-1201] Add flink-gelly to flink-addons (...

2015-02-04 Thread balidani
Github user balidani commented on the pull request: https://github.com/apache/flink/pull/335#issuecomment-72851434 Sorry, I will only be able to fill the form on Sunday, my internet connection is horrible here. Is that ok? Daniel On Feb 2, 2015 3:53 PM, Carsten Brandt