You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hugegraph.apache.org by je...@apache.org on 2022/11/23 14:00:26 UTC

[incubator-hugegraph-computer] branch improve-README created (now fcee2571)

This is an automated email from the ASF dual-hosted git repository.

jermy pushed a change to branch improve-README
in repository https://gitbox.apache.org/repos/asf/incubator-hugegraph-computer.git


      at fcee2571 improve README.md

This branch includes the following new commits:

     new fcee2571 improve README.md

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[incubator-hugegraph-computer] 01/01: improve README.md

Posted by je...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

jermy pushed a commit to branch improve-README
in repository https://gitbox.apache.org/repos/asf/incubator-hugegraph-computer.git

commit fcee257173a5786083c9263b7cf408e53389a776
Author: Jermy Li <je...@apache.org>
AuthorDate: Wed Nov 23 22:00:21 2022 +0800

    improve README.md
---
 README.md | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/README.md b/README.md
index 769b5b9c..db1430c7 100644
--- a/README.md
+++ b/README.md
@@ -5,15 +5,16 @@
 [![codecov](https://codecov.io/gh/apache/hugegraph-computer/branch/master/graph/badge.svg)](https://codecov.io/gh/apache/hugegraph-computer)
 [![Docker Pulls](https://img.shields.io/docker/pulls/hugegraph/hugegraph-builtin-algorithms)](https://hub.docker.com/repository/docker/hugegraph/hugegraph-builtin-algorithms)
 
-hugegraph-computer is a distributed graph processing system for hugegraph. It is an implementation of [Pregel](https://kowshik.github.io/JPregel/pregel_paper.pdf). It runs on Kubernetes or YARN framework.
+The hugegraph-computer is a distributed graph processing system for hugegraph. It is an implementation of [Pregel](https://kowshik.github.io/JPregel/pregel_paper.pdf). It runs on Kubernetes or YARN framework.
 
 ## Features
 
-- Based on BSP(Bulk Synchronous Parallel) model, every iteration is a superstep.
-- Auto memory management. The framework will split some data to disk, the framework will never OOM(Out of Memory).
+- Support distributed MPP graph computing, and integrates with HugeGraph as graph input/output storage.
+- Based on BSP(Bulk Synchronous Parallel) model, an algorithm performs computing through multiple parallel iterations, every iteration is a superstep.
+- 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.
 - The part of edges or the messages of super node can be in memory, so you will never lose it.
-- You can output the result to HDFS or HugeGraph, or any other system.
-- Easy to develop a new algorithm. You need to focus on a vertex only, not to worry about messages transferring and memory.
+- You can output the results to HDFS or HugeGraph, or any other system.
+- 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.
 
 ## Learn More