Skip to content

Commit

Permalink
[FLINK-23260][docs] Fix the link for Page "docs/libs/gelly/overview" (a…
Browse files Browse the repository at this point in the history
  • Loading branch information
hapihu authored Jul 6, 2021
1 parent c0244d3 commit aedfec0
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
18 changes: 9 additions & 9 deletions docs/content.zh/docs/libs/gelly/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ under the License.

Gelly is a Graph API for Flink. It contains a set of methods and utilities which aim to simplify the development of graph analysis applications in Flink. In Gelly, graphs can be transformed and modified using high-level functions similar to the ones provided by the batch processing API. Gelly provides methods to create, transform and modify graphs, as well as a library of graph algorithms.

* [Graph API](graph_api.html)
* [Iterative Graph Processing](iterative_graph_processing.html)
* [Library Methods](library_methods.html)
* [Graph Algorithms](graph_algorithms.html)
* [Graph Generators](graph_generators.html)
* [Bipartite Graphs](bipartite_graph.html)
* [Graph API]({{< ref "docs/libs/gelly/graph_api" >}})
* [Iterative Graph Processing]({{< ref "docs/libs/gelly/iterative_graph_processing" >}})
* [Library Methods]({{< ref "docs/libs/gelly/library_methods" >}})
* [Graph Algorithms]({{< ref "docs/libs/gelly/graph_algorithms" >}})
* [Graph Generators]({{< ref "docs/libs/gelly/graph_generators" >}})
* [Bipartite Graphs]({{< ref "docs/libs/gelly/bipartite_graph" >}})

Using Gelly
-----------
Expand Down Expand Up @@ -80,13 +80,13 @@ After configuring and starting the cluster, list the available algorithm classes

The Gelly drivers can generate graph data or read the edge list from a CSV file (each node in a cluster must have access
to the input file). The algorithm description, available inputs and outputs, and configuration are displayed when an
algorithm is selected. Print usage for [JaccardIndex](./library_methods.html#jaccard-index):
algorithm is selected. Print usage for [JaccardIndex]({{< ref "docs/libs/gelly/library_methods" >}}#jaccard-index):

```bash
./bin/flink run examples/gelly/flink-gelly-examples_*.jar --algorithm JaccardIndex
```

Display [graph metrics](./library_methods.html#metric) for a million vertex graph:
Display [graph metrics]({{< ref "docs/libs/gelly/library_methods" >}}#metric) for a million vertex graph:

```bash
./bin/flink run examples/gelly/flink-gelly-examples_*.jar \
Expand All @@ -96,7 +96,7 @@ Display [graph metrics](./library_methods.html#metric) for a million vertex grap
```

The size of the graph is adjusted by the *\-\-scale* and *\-\-edge_factor* parameters. The
[library generator](./graph_generators.html#rmat-graph) provides access to additional configuration to adjust the
[library generator]({{< ref "docs/libs/gelly/graph_generators" >}}#rmat-graph) provides access to additional configuration to adjust the
power-law skew and random noise.

Sample social network data is provided by the [Stanford Network Analysis Project](http://snap.stanford.edu/data/index.html).
Expand Down
18 changes: 9 additions & 9 deletions docs/content/docs/libs/gelly/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ under the License.

Gelly is a Graph API for Flink. It contains a set of methods and utilities which aim to simplify the development of graph analysis applications in Flink. In Gelly, graphs can be transformed and modified using high-level functions similar to the ones provided by the batch processing API. Gelly provides methods to create, transform and modify graphs, as well as a library of graph algorithms.

* [Graph API](graph_api.html)
* [Iterative Graph Processing](iterative_graph_processing.html)
* [Library Methods](library_methods.html)
* [Graph Algorithms](graph_algorithms.html)
* [Graph Generators](graph_generators.html)
* [Bipartite Graphs](bipartite_graph.html)
* [Graph API]({{< ref "docs/libs/gelly/graph_api" >}})
* [Iterative Graph Processing]({{< ref "docs/libs/gelly/iterative_graph_processing" >}})
* [Library Methods]({{< ref "docs/libs/gelly/library_methods" >}})
* [Graph Algorithms]({{< ref "docs/libs/gelly/graph_algorithms" >}})
* [Graph Generators]({{< ref "docs/libs/gelly/graph_generators" >}})
* [Bipartite Graphs]({{< ref "docs/libs/gelly/bipartite_graph" >}})

Using Gelly
-----------
Expand Down Expand Up @@ -80,13 +80,13 @@ After configuring and starting the cluster, list the available algorithm classes

The Gelly drivers can generate graph data or read the edge list from a CSV file (each node in a cluster must have access
to the input file). The algorithm description, available inputs and outputs, and configuration are displayed when an
algorithm is selected. Print usage for [JaccardIndex](./library_methods.html#jaccard-index):
algorithm is selected. Print usage for [JaccardIndex]({{< ref "docs/libs/gelly/library_methods" >}}#jaccard-index):

```bash
./bin/flink run examples/gelly/flink-gelly-examples_*.jar --algorithm JaccardIndex
```

Display [graph metrics](./library_methods.html#metric) for a million vertex graph:
Display [graph metrics]({{< ref "docs/libs/gelly/library_methods" >}}#metric) for a million vertex graph:

```bash
./bin/flink run examples/gelly/flink-gelly-examples_*.jar \
Expand All @@ -96,7 +96,7 @@ Display [graph metrics](./library_methods.html#metric) for a million vertex grap
```

The size of the graph is adjusted by the *\-\-scale* and *\-\-edge_factor* parameters. The
[library generator](./graph_generators.html#rmat-graph) provides access to additional configuration to adjust the
[library generator]({{< ref "docs/libs/gelly/graph_generators" >}}#rmat-graph) provides access to additional configuration to adjust the
power-law skew and random noise.

Sample social network data is provided by the [Stanford Network Analysis Project](http://snap.stanford.edu/data/index.html).
Expand Down

0 comments on commit aedfec0

Please sign in to comment.