You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by gr...@apache.org on 2017/05/11 16:43:11 UTC

[4/4] flink git commit: [hotfix] [docs] Update file path of Gelly examples

[hotfix] [docs] Update file path of Gelly examples


Project: http://git-wip-us.apache.org/repos/asf/flink/repo
Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/e43dd60b
Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/e43dd60b
Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/e43dd60b

Branch: refs/heads/master
Commit: e43dd60b58849295dca715c13486c7cbd08da151
Parents: fca8cae
Author: Greg Hogan <co...@greghogan.com>
Authored: Thu May 4 13:37:15 2017 -0400
Committer: Greg Hogan <co...@greghogan.com>
Committed: Thu May 11 12:42:25 2017 -0400

----------------------------------------------------------------------
 docs/dev/libs/gelly/index.md | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/e43dd60b/docs/dev/libs/gelly/index.md
----------------------------------------------------------------------
diff --git a/docs/dev/libs/gelly/index.md b/docs/dev/libs/gelly/index.md
index 193ba86..7ae7968 100644
--- a/docs/dev/libs/gelly/index.md
+++ b/docs/dev/libs/gelly/index.md
@@ -86,7 +86,7 @@ After configuring and starting the cluster, list the available algorithm classes
 
 ~~~bash
 ./bin/start-cluster.sh
-./bin/flink run examples/flink-gelly-examples_*.jar
+./bin/flink run examples/gelly/flink-gelly-examples_*.jar
 ~~~
 
 The Gelly drivers can generate graph data or read the edge list from a CSV file (each node in a cluster must have access
@@ -94,13 +94,13 @@ to the input file). The algorithm description, available inputs and outputs, and
 algorithm is selected. Print usage for [JaccardIndex](./library_methods.html#jaccard-index):
 
 ~~~bash
-./bin/flink run examples/flink-gelly-examples_*.jar --algorithm JaccardIndex
+./bin/flink run examples/gelly/flink-gelly-examples_*.jar --algorithm JaccardIndex
 ~~~
 
 Display [graph metrics](./library_methods.html#metric) for a million vertex graph:
 
 ~~~bash
-./bin/flink run examples/flink-gelly-examples_*.jar \
+./bin/flink run examples/gelly/flink-gelly-examples_*.jar \
     --algorithm GraphMetrics --order directed \
     --input RMatGraph --type integer --scale 20 --simplify directed \
     --output print
@@ -117,17 +117,17 @@ Run a few algorithms and monitor the job progress in Flink's Web UI:
 ~~~bash
 wget -O - http://snap.stanford.edu/data/bigdata/communities/com-lj.ungraph.txt.gz | gunzip -c > com-lj.ungraph.txt
 
-./bin/flink run -q examples/flink-gelly-examples_*.jar \
+./bin/flink run -q examples/gelly/flink-gelly-examples_*.jar \
     --algorithm GraphMetrics --order undirected \
     --input CSV --type integer --simplify undirected --input_filename com-lj.ungraph.txt --input_field_delimiter $'\t' \
     --output print
 
-./bin/flink run -q examples/flink-gelly-examples_*.jar \
+./bin/flink run -q examples/gelly/flink-gelly-examples_*.jar \
     --algorithm ClusteringCoefficient --order undirected \
     --input CSV --type integer --simplify undirected --input_filename com-lj.ungraph.txt --input_field_delimiter $'\t' \
     --output hash
 
-./bin/flink run -q examples/flink-gelly-examples_*.jar \
+./bin/flink run -q examples/gelly/flink-gelly-examples_*.jar \
     --algorithm JaccardIndex \
     --input CSV --type integer --simplify undirected --input_filename com-lj.ungraph.txt --input_field_delimiter $'\t' \
     --output hash