Skip to content

Commit 7960ce9

Browse files
authored
docs: fixes typos in documentation (alibaba#3554)
Signed-off-by: Josh Soref <[email protected]>
1 parent 647794b commit 7960ce9

File tree

81 files changed

+180
-180
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+180
-180
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ If applicable, add screenshots to help explain your problem.
2525

2626
**Environment (please complete the following information):**
2727
- GraphScope version: [e.g., v0.1, v0.2.2, master]
28-
- OS: [e.g. MacOS, Linux]
28+
- OS: [e.g. macOS, Linux]
2929
- Version [e.g. 10.15]
3030
- Kubernetes Version [e.g., 1.19]
3131

CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Newcomers to GraphScope
1313
For newcomers to GraphScope, you could find instructions about how to build
1414
and run applications using GraphScope in [README][2].
1515

16-
GraphScope is hosted on Github, and use Github issues as the bug tracker.
16+
GraphScope is hosted on GitHub, and use GitHub issues as the bug tracker.
1717
you can [file an issue][3] when you meets trouble when working with GraphScope.
1818

1919
Before creating a new bug entry, we recommend you first [search][4] among existing
@@ -72,7 +72,7 @@ or `[FEATURE-2345] Support loading empty graphs`.
7272
### Git workflow for newcomers
7373

7474
You generally do NOT need to rebase your pull requests unless there are merge
75-
conflicts with the main. When Github complaining that "Can’t automatically merge"
75+
conflicts with the main. When GitHub complaining that "Can’t automatically merge"
7676
on your pull request, you'll be asked to rebase your pull request on top of
7777
the latest main branch, using the following commands:
7878

README-zh.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
GraphScope 是阿里巴巴达摩院智能计算实验室研发并开源的一站式图计算平台。依托于阿里海量数据和丰富场景,与达摩院的高水平研究,GraphScope 致力于针对实际生产场景中图计算的挑战,提供一站式高效的解决方案。
1515

16-
GraphScope 提供了 Python 客户端,能十分方便的对接上下游工作流,具有一站式、开发便捷、性能极致等特点。它整合了智能计算实验室多个重要的创新性技术,包括 [GRAPE](https://github.com/alibaba/libgrape-lite)[MaxGraph](interactive_engine/)[Graph-Learn](https://github.com/alibaba/graph-learn),分别支持图分析、图的交互式查询和图学习任务,引擎间使用 [Vineyard](htps://github.com/v6d-io/v6d) 存储,提供跨进程,零拷贝的内存数据共享服务。其中核心优势包括在业界首次支持了 Gremlin 分布式编译优化,支持了算法的自动并行化、提供了企业级场景下的极致性能等。在阿里巴巴内外部应用中,GraphScope 已经证明在多个关键互联网领域(如风控,电商推荐,广告,网络安全,知识图谱等)实现了重要的业务新价值。
16+
GraphScope 提供了 Python 客户端,能十分方便的对接上下游工作流,具有一站式、开发便捷、性能极致等特点。它整合了智能计算实验室多个重要的创新性技术,包括 [GRAPE](https://github.com/alibaba/libgrape-lite)[MaxGraph](interactive_engine/)[Graph-Learn](https://github.com/alibaba/graph-learn),分别支持图分析、图的交互式查询和图学习任务,引擎间使用 [Vineyard](https://github.com/v6d-io/v6d) 存储,提供跨进程,零拷贝的内存数据共享服务。其中核心优势包括在业界首次支持了 Gremlin 分布式编译优化,支持了算法的自动并行化、提供了企业级场景下的极致性能等。在阿里巴巴内外部应用中,GraphScope 已经证明在多个关键互联网领域(如风控,电商推荐,广告,网络安全,知识图谱等)实现了重要的业务新价值。
1717

1818
GraphScope 整合了达摩院的多项学术研究成果,其中的核心技术曾获得数据库领域顶级学术会议 SIGMOD2017 最佳论文奖、VLDB2017 最佳演示奖、VLDB2020 最佳论文奖亚军、世界人工智能创新大赛SAIL奖等。GraphScope 的交互查询引擎的论文已被 NSDI 2021录用。还有其它围绕 GraphScope 的十多项研究成果发表在领域顶级的学术会议或期刊上,如 TODS、SIGMOD、VLDB、KDD等。
1919

analytical_engine/java/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ enables Java programmers to write and run graph algorithms with these benefits.
1212
GRAPE-JDK substantially narrows the gap between apps written in Java and in C++. As [experiments](#performance) shows, the overall performance gap
1313
between native C++ and GRAPE-JDK are lower than 2x, and in some scenarios like PageRank, GRAPE-JDK runs nearly as fast as native C++ implementation.
1414

15-
- **Support Giraph app**. We also prvide user with a Giraph SDK, grape-giraph. The algorithms user implemented on [Giraph](https://github.com/apache/giraph)
15+
- **Support Giraph app**. We also provide user with a Giraph SDK, grape-giraph. The algorithms user implemented on [Giraph](https://github.com/apache/giraph)
1616
interface can be run on GRAPE-JDK without any modification.
1717

1818
- **Support Spark Graphx**. We break down the storage gap between Spark RDD and GraphScope Fragment, enabling `fragment-as-rdd` wrapping
@@ -29,7 +29,7 @@ enables Java programmers to write and run graph algorithms with these benefits.
2929

3030
- **grape-demo** Provides example apps and [FFIMirrors](#user-defined-data-structure).
3131
- **grape-jdk** Provides the PIE SDK with graph computing interfaces.
32-
- **grape-runtime** Contains the essential files for JNI code-gen and the glue code invoked by the analytcial engine (building with `ENABLE_JAVA_SDK`).
32+
- **grape-runtime** Contains the essential files for JNI code-gen and the glue code invoked by the analytical engine (building with `ENABLE_JAVA_SDK`).
3333
- **grape-giraph** Integrating grape with Apache Giraph.
3434
- **grape-graphx** Integrating grape with Spark GraphX.
3535
- **grape-rdd-reader** Providing RDD reader for spark RDD.
@@ -49,7 +49,7 @@ mvn clean install
4949
This will only install `grape-jdk` for you, if you are only interested in writing
5050
graph algorithms in java, that's enough for you :D.
5151

52-
To build the whole project, make sure there is one usable c++ compiler in your envirment
52+
To build the whole project, make sure there is one usable c++ compiler in your environment
5353
and both [`GraphScope-Analytical engine`](https://github.com/alibaba/GraphScope/tree/main/analytical_engine)
5454
and [`Vineyard`](https://github.com/v6d-io/v6d) is installed.
5555

@@ -76,7 +76,7 @@ You can include grape-jdk as a dependency in your maven project
7676
Online JavaDoc is available at [GraphScope Docs](https://graphscope.io/docs/reference/gae_java/index.html).
7777

7878
You can also generate the documentation with in three different ways.
79-
- use Intellij IDEA plugin: [Intellij IDEA-javadoc](https://www.jetbrains.com/help/idea/working-with-code-documentation.html)
79+
- use IntelliJ IDEA plugin: [IntelliJ IDEA-javadoc](https://www.jetbrains.com/help/idea/working-with-code-documentation.html)
8080
- Use Eclipse plugin: [Eclipse-javadoc](https://www.tutorialspoint.com/How-to-write-generate-and-use-Javadoc-in-Eclipse).
8181
- Generate javaDoc from cmd.
8282
```bash

analytical_engine/java/grape-graphx/performance.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
We test GraphScope for GraphX in end-to-end scenarios to measure the performance improvement of graph computing on Spark GraphX. This includes:
44
- Graph loading: loading graphs from the file system into memory in the form of a graph
55
- RDD Op: transforming the graph using RDD-defined operators
6-
- Pregel computin: running graph algorithms based on GraphX Pregel, such as SSSP, PageRank, and CC
6+
- Pregel computing: running graph algorithms based on GraphX Pregel, such as SSSP, PageRank, and CC
77

88
## Settings:
99

analytical_engine/java/grape-runtime/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This folder contains the implementation of **```GraphScope Java runtime```**.
55
If you just want to implement your java app and run it on ```GraphScope```
66
Analytical Engine, you have nothing to know about this directory. You Just need to download
77
GRAPE-jdk, write your own app with the programming interfaces, and invoke
8-
```Graphscope.JavaApp``` to run your java app.
8+
```GraphScope.JavaApp``` to run your java app.
99

1010
If you are interested in this submodule, than you may find some runtime-needed java utilities to run
1111
your Java App on ```GraphScope``` Analytical Engine, and the actual implementation code for

analytical_engine/java/performance.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Performance
22

3-
We evaluate the performandce of `grape-jdk` on [LDBC Graph Analytics Benchmark.](https://graphalytics.org/).
3+
We evaluate the performance of `grape-jdk` on [LDBC Graph Analytics Benchmark.](https://graphalytics.org/).
44
In particular, we evaluate the performance with typical graph apps over LDBC XL-size datasets.
55

66
Comparing the performance result of `grape-jdk` with the performance data from native **analytical engine**, we found that the performance gap between **Java app** and **C++ app** has been made narrowed substantially with the help of `grape-jdk`.
@@ -138,6 +138,6 @@ pr_delta set to 0.85, running for 50 rounds.
138138
| Java(+LLVM4JNI) time | 49.80 | 24.15 | 10.54 | 6.63 | 3.83 | 2.95 | 3.42 |
139139

140140

141-
## Graphscope-GraphX Integration
141+
## GraphScope-GraphX Integration
142142

143-
We also evaluate the performance of `grape-graphx`, the integration of GraphScope on Spark GraphX. See [grape-graphX performace](grape-graphx/performance.md).
143+
We also evaluate the performance of `grape-graphx`, the integration of GraphScope on Spark GraphX. See [grape-graphX performance](grape-graphx/performance.md).

charts/graphscope-store/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ $ helm install my-release \
125125
```
126126

127127
Add multiple extra config to the component which is defined in the configmap by
128-
`--set extraConfig="k1=v1;k2=v2"`. Note we use `;` to seperate config items. For example,
128+
`--set extraConfig="k1=v1;k2=v2"`. Note we use `;` to separate config items. For example,
129129

130130
```bash
131131
$ helm install my-release \

docs/analytical_engine/dev_and_test.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ docker run --name dev -it --shm-size=4096m registry.cn-hongkong.aliyuncs.com/gra
1414
Alternatively, you can also manually install all dependencies on your local machine.
1515
Please refer to [Dev Environment](../development/dev_guide.md#dev-environment) to find more options to get a dev environment.
1616

17-
After the environment is prepared, clone the repository and enter the `analatical_engine` directory of the repository.
17+
After the environment is prepared, clone the repository and enter the `analytical_engine` directory of the repository.
1818

1919
```bash
2020
git clone https://github.com/alibaba/GraphScope.git
21-
cd analatical_engine
21+
cd analytical_engine
2222
```
2323

2424
## Understanding the Codebase
@@ -27,7 +27,7 @@ Since the analytical engine inherits from GRAPE, it requires libgrape-lite as a
2727
Please note that the core functionalities of libgrape-lite, such as graph structures, graph partitioners, workers,
2828
communication between workers, and applications, are heavily reused in the analytical engine of GraphScope.
2929

30-
If you want to fully understand the analytcial engine, it is highly recommaned that you start from libgrape-lite.
30+
If you want to fully understand the analytical engine, it is highly recommended that you start from libgrape-lite.
3131

3232
The code located in the `analytical_engine` directory functions like extensions to libgrape-lite, thereby making it full-fledged with the following enhancements:
3333

docs/analytical_engine/getting_started.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,4 @@ Next, you may want to learn more about the following topics:
5959

6060
- [Design of the analytical engine of GraphScope and its technical details](analytical_engine/design_of_gae)
6161
- [Disaggregated deployment of GraphScope on a k8s cluster for large-scale graph analysis](analytical_engine/deployment)
62-
- [A set of examples with advanced usage, including customized algorithms, NetworkX/Giraph/GraphX compatibility, etc.](analytical_engine/guide_and_exmaples)
62+
- [A set of examples with advanced usage, including customized algorithms, NetworkX/Giraph/GraphX compatibility, etc.](analytical_engine/guide_and_examples)

docs/analytical_engine/performance_tuning.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ its property graphs. Basically, the `ArrowFragment` has the following members:
6060

6161
By default, the type of `offset` is `size_t`.
6262

63-
The size of `indices` aray is `num_vertices + 1`, which is a 0-based offset array.
63+
The size of `indices` array is `num_vertices + 1`, which is a 0-based offset array.
6464

6565
- outgoing edges: a CSR matrix, same as the incoming edges, but for outgoing edges
6666
of current partition.
@@ -81,7 +81,7 @@ its property graphs. Basically, the `ArrowFragment` has the following members:
8181

8282
By default, the type of `offset` is `size_t`.
8383

84-
The size of `indices` aray is `num_vertices + 1`, which is a 0-based offset array.
84+
The size of `indices` array is `num_vertices + 1`, which is a 0-based offset array.
8585

8686
- Properties: the second part of the property graph is the properties: each vertex
8787
label and each edge label has a table for its properties:

docs/analytical_engine/programming_model_pie.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ void IncEval(const fragment_t& frag, context_t& ctx,
9090
```
9191
9292
In the above code, given a source vertex `source`, in the `PEval` function, we first execute the Dijkstra's
93-
algorithm on the sub-graph (fragment) where the `source` resides in to obtain a partial result. After that, the [`SyncStateOnOuterVertex` function](https://graphscope.io/docs/latest/analytical_engine/key_concepts.html#synconoutervertex) is invoked, where the partial result is sent to other fragments to trigger `IncEval` function.
93+
algorithm on the sub-graph (fragment) where the `source` resides to obtain a partial result. After that, the [`SyncStateOnOuterVertex` function](https://graphscope.io/docs/latest/analytical_engine/key_concepts.html#synconoutervertex) is invoked, where the partial result is sent to other fragments to trigger `IncEval` function.
9494
9595
In the `IncEval` function, each fragment first receives messages through the [message manager](https://graphscope.io/docs/latest/analytical_engine/key_concepts.html#messagemanager-and-messagestrategy), then executes incremental evaluation based on received messages to update the partial result. If the partial result is updated, each fragment needs to execute the `SyncStateOnOuterVertex` function to synchronize the latest partial result of [outer vertices](https://graphscope.io/docs/latest/analytical_engine/key_concepts.html#outervertex) with other fragments to trigger next round of `IncEval`. Please checkout the following tutorials for more details about how to develop graph applications with the PIE model.
9696

docs/analytical_engine/tutorial_dev_algo_cpp_pie.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class MyAppContext : public grape::VertexDataContext<FRAG_T, uint64_t> {
3636
};
3737
```
3838
39-
As shown in the code, the MyAppContext class defines two member variables called `step` and `param1` to store the current superstep and algorithm-specific parameter, respectively. And we also define a member variable named `result` with `uint64_t` type to store the the degree for each vertex in the fragment. The `Init` method is used to initialize the context of the computation. In current example, we initialize the `step` and `param1` variables to zero and the algorithm-specific parameter. We also set the result to zero for each vertex.
39+
As shown in the code, the MyAppContext class defines two member variables called `step` and `param1` to store the current superstep and algorithm-specific parameter, respectively. And we also define a member variable named `result` with `uint64_t` type to store the degree for each vertex in the fragment. The `Init` method is used to initialize the context of the computation. In current example, we initialize the `step` and `param1` variables to zero and the algorithm-specific parameter. We also set the result to zero for each vertex.
4040
4141
## Step 2: Define the Algorithm class
4242
@@ -142,7 +142,7 @@ result = my_app(simple_graph, 10) # pass 10 as param1 defined in 'MyAppContext.
142142
print(result.to_numpy('r'))
143143
```
144144

145-
## GraphScope C++ SDK with Github Template
145+
## GraphScope C++ SDK with GitHub Template
146146

147147
To help you develop your algorithms more efficiently, we provide a [C++ template library](https://github.com/GraphScope/cpp-template) to help you get started with your algorithm development. It includes examples and best practices for implementing PIE algorithms in C++.
148148

docs/analytical_engine/tutorial_dev_algo_java.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ from graphscope.framework.app import load_app
1717
# turn on this line to enable log verbose
1818
# graphscope.set_option(show_log=True)
1919

20-
"""Or lauch session in k8s cluster"""
20+
"""Or launch session in k8s cluster"""
2121
sess = graphscope.session(cluster_type='hosts')
2222

2323
graph = load_p2p_network(sess)
@@ -170,17 +170,17 @@ sess = graphscope.session(cluster_type='hosts')
170170
graph = load_p2p_network(sess)
171171
graph = graph.project(vertices={"host": ['id']}, edges={"connect": ["dist"]})
172172
# you can also use your own graph, refer to graphscope load graph tutorial.
173-
# But remember project to singel property graph before running algorithms.
173+
# But remember project to single property graph before running algorithms.
174174

175175
app=JavaApp(
176176
full_jar_path="{full/path/to/your/packed/jar}", # *-shaded.jar
177-
java_app_class="{fullly/qualified/class/name/of/your/app}", # com.a.b.c
177+
java_app_class="{fully/qualified/class/name/of/your/app}", # com.a.b.c
178178
)
179179
ctx=app(graph, "{param string}") # a=b,c=d
180180
```
181181

182182
After computation, you can obtain the results stored in context with the help of [`Context`](https://graphscope.io/docs/reference/context.html#context).
183183

184-
## GraphScope JavaSDK with Github Template
184+
## GraphScope JavaSDK with GitHub Template
185185

186186
If you don't bother creating new project to try `GRAPE-jdk`, we provide a template project [GraphScope-Java-template](https://github.com/zhanglei1949/GraphScope-Java-template). By click **Use this template**, you can create a new repository with same files and structure of the template repository. You can then try developing your own algorithms in this project.

docs/analytical_engine/tutorial_networkx_algorithms.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Tutorial: Graph Algorithms with NetowrkX APIs
1+
# Tutorial: Graph Algorithms with NetworkX APIs
22

33
In the [previous tutorial](https://graphscope.io/docs/latest/analytical_engine/tutorial_networkx_operations.html), we have introduced how to manipulate graph data with NetworkX APIs. In this tutorial, we will show how to use GraphScope to perform graph analysis like Networkx.
44

@@ -119,7 +119,7 @@ Download dataset if it is not in environment:
119119
wget https://raw.githubusercontent.com/GraphScope/gstest/master/twitter.e -P /tmp
120120
```
121121

122-
Then load dataset both in GraphScope and NetwrokX.
122+
Then load dataset both in GraphScope and NetworkX.
123123

124124
```python
125125
import os

docs/analytical_engine/tutorial_networkx_operations.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Tutorial: Graph Operations with NetowrkX APIs
1+
# Tutorial: Graph Operations with NetworkX APIs
22
[NetworkX](https://networkx.org/) is a Python package for the manipulation and functions for graph data on a single machine. However, it lacks the capability of handling large-scale graphs on a distributed environment. Fortunately, GraphScope is compatible with NetworkX APIs, and thus a program written with NetworkX can directly run on GraphScope with only some small changes. In this tutorial, we will first introduce how to manipulate graph data with NetworkX APIs.
33

44
## Creating an Empty Graph
@@ -264,7 +264,7 @@ list(K.edges)
264264
Note that different from `subgraph`/`edge_subgraph` APIs in NetworkX which return a view, `graphscope.nx` returns a deepcopy of `subgraph`/`edge_subgraph`.
265265

266266
## Making Copies
267-
One can use `to_directed` to return a directed representaion of the graph.
267+
One can use `to_directed` to return a directed representation of the graph.
268268

269269
```python
270270
DG = G.to_directed() # here would return a "deepcopy" directed representation of G.

0 commit comments

Comments
 (0)