Skip to content

Commit e77658c

Browse files
committed
chore: update for release 1.5
1 parent 20cb885 commit e77658c

File tree

4 files changed

+20
-21
lines changed

4 files changed

+20
-21
lines changed

NOTICE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Apache HugeGraph(incubating)
2-
Copyright 2022-2023 The Apache Software Foundation
2+
Copyright 2022-2024 The Apache Software Foundation
33

44
This product includes software developed at
55
The Apache Software Foundation (http://www.apache.org/).

README.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,19 @@
55
[![codecov](https://codecov.io/gh/apache/incubator-hugegraph-computer/branch/master/graph/badge.svg)](https://codecov.io/gh/apache/incubator-hugegraph-computer)
66
[![Docker Pulls](https://img.shields.io/docker/pulls/hugegraph/hugegraph-computer)](https://hub.docker.com/repository/docker/hugegraph/hugegraph-computer)
77

8-
The [hugegraph-computer](./computer/README.md) is a distributed graph processing system for hugegraph.
8+
The [hugegraph-computer](./computer/README.md) is a distributed graph processing system for hugegraph.
9+
(Also, the in-memory computing engine(vermeer) is on the way 🚧)
910

1011
## Learn More
1112

12-
The [project homepage](https://hugegraph.apache.org/docs/) contains more information about hugegraph-computer.
13+
The [project homepage](https://hugegraph.apache.org/docs/quickstart/hugegraph-computer/) contains more information about hugegraph-computer.
1314

1415
And here are links of other repositories:
15-
1. [hugegraph-server](https://github.com/apache/hugegraph) (graph's core component - OLTP server)
16-
2. [hugegraph-toolchain](https://github.com/apache/hugegraph-toolchain) (include loader/dashboard/tool/client)
17-
3. [hugegraph-commons](https://github.com/apache/hugegraph-commons) (include common & rpc module)
18-
4. [hugegraph-website](https://github.com/apache/hugegraph-doc) (include doc & website code)
16+
1. [hugegraph](https://github.com/apache/hugegraph) (graph's core component - Graph server + PD + Store)
17+
2. [hugegraph-toolchain](https://github.com/apache/hugegraph-toolchain) (graph tools **[loader](https://github.com/apache/incubator-hugegraph-toolchain/tree/master/hugegraph-loader)/[dashboard](https://github.com/apache/incubator-hugegraph-toolchain/tree/master/hugegraph-hubble)/[tool](https://github.com/apache/incubator-hugegraph-toolchain/tree/master/hugegraph-tools)/[client](https://github.com/apache/incubator-hugegraph-toolchain/tree/master/hugegraph-client)**)
18+
3. [hugegraph-ai](https://github.com/apache/incubator-hugegraph-ai) (integrated **Graph AI/LLM/KG** system)
19+
4. [hugegraph-website](https://github.com/apache/hugegraph-doc) (**doc & website** code)
20+
1921

2022
## Note
2123

@@ -41,5 +43,5 @@ hugegraph-computer is licensed under [Apache 2.0](https://github.com/apache/incu
4143
- Feedback Email: [[email protected]](mailto:[email protected]) ([subscriber](https://hugegraph.apache.org/docs/contribution-guidelines/subscribe/) only)
4244
- WeChat public account: Apache HugeGraph, welcome to scan this QR code to follow us.
4345

44-
<img src="https://github.com/apache/incubator-hugegraph-doc/blob/master/assets/images/wechat.png?raw=true" alt="QR png" width="350"/>
46+
<img src="https://github.com/apache/hugegraph-doc/blob/master/assets/images/wechat.png?raw=true" alt="QR png" width="350"/>
4547

computer/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ The hugegraph-computer is a distributed graph processing system for hugegraph. I
55
## Features
66

77
- Support distributed MPP graph computing, and integrates with HugeGraph as graph input/output storage.
8-
- Based on BSP(Bulk Synchronous Parallel) model, an algorithm performs computing through multiple parallel iterations, every iteration is a superstep.
8+
- Based on BSP (Bulk Synchronous Parallel) model, an algorithm performs computing through multiple parallel iterations, every iteration is a superstep.
99
- Auto memory management. The framework will never be OOM(Out of Memory) since it will split some data to disk if it doesn't have enough memory to hold all the data.
10-
- The part of edges or the messages of super node can be in memory, so you will never lose it.
10+
- The part of edges or the messages of supernode can be in memory, so you will never lose it.
1111
- You can load the data from HDFS or HugeGraph, output the results to HDFS or HugeGraph, or adapt any other systems manually as needed.
12-
- Easy to develop a new algorithm. You just need to focus on a vertex only processing just like as in a single server, without worrying about message transfer and memory/storage management.
12+
- Easy to develop a new algorithm. You need to focus on a vertex only processing just like as in a single server, without worrying about message transfer and memory/storage management.

computer/pom.xml

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -91,12 +91,9 @@
9191
</prerequisites>
9292

9393
<properties>
94-
<!-- TODO: update the version after toolchain v1.2 fixed -->
95-
<revision>1.3.0</revision>
96-
<hugegraph-common-version>1.3.0</hugegraph-common-version>
97-
<hugegraph-client-version>1.3.0</hugegraph-client-version>
98-
<hugegraph-rpc-version>1.3.0</hugegraph-rpc-version>
99-
<hugegraph-loader-version>1.3.0</hugegraph-loader-version>
94+
<revision>1.5.0</revision>
95+
<hugegraph-commons-version>${revision}</hugegraph-commons-version>
96+
<hugegraph-toolchain-version>${revision}</hugegraph-toolchain-version>
10097
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
10198
<top.level.dir>${project.basedir}/..</top.level.dir>
10299
<release.name>hugegraph-computer</release.name>
@@ -128,12 +125,12 @@
128125
<dependency>
129126
<groupId>org.apache.hugegraph</groupId>
130127
<artifactId>hugegraph-common</artifactId>
131-
<version>${hugegraph-common-version}</version>
128+
<version>${hugegraph-commons-version}</version>
132129
</dependency>
133130
<dependency>
134131
<groupId>org.apache.hugegraph</groupId>
135132
<artifactId>hugegraph-rpc</artifactId>
136-
<version>${hugegraph-rpc-version}</version>
133+
<version>${hugegraph-commons-version}</version>
137134
<exclusions>
138135
<!-- conflict with etcd -->
139136
<exclusion>
@@ -154,7 +151,7 @@
154151
<dependency>
155152
<groupId>org.apache.hugegraph</groupId>
156153
<artifactId>hugegraph-client</artifactId>
157-
<version>${hugegraph-client-version}</version>
154+
<version>${hugegraph-toolchain-version}</version>
158155
</dependency>
159156
<dependency>
160157
<groupId>org.apache.hugegraph</groupId>
@@ -251,7 +248,7 @@
251248
<dependency>
252249
<groupId>org.apache.hugegraph</groupId>
253250
<artifactId>hugegraph-loader</artifactId>
254-
<version>${hugegraph-loader-version}</version>
251+
<version>${hugegraph-toolchain-version}</version>
255252
<exclusions>
256253
<exclusion>
257254
<groupId>org.apache.hive</groupId>

0 commit comments

Comments
 (0)