feature: optimize data receiving (#181)

* use zero-copy optimize data recv
* remove fail message
* improve some config
* support buffer file sort
* support sort with buffer file and fix some unit test
* create target file
* rebuild sort module

Co-authored-by: ShouJing <1075185785@qq.com>
151 files changed
tree: 5439f2bd2be7b4a5eb0d79f1c9602348ba686db8
  1. .github/
  2. computer-algorithm/
  3. computer-api/
  4. computer-core/
  5. computer-dist/
  6. computer-driver/
  7. computer-k8s/
  8. computer-k8s-operator/
  9. computer-test/
  10. computer-yarn/
  11. .gitignore
  12. .travis.yml
  13. checkstyle.xml
  14. LICENSE
  15. pom.xml
  16. README.md
README.md

hugegraph-computer

License Build Status codecov Docker Pulls

hugegraph-computer is a distributed graph processing system for hugegraph. It is an implementaion of Pregel. 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 spilt some data to disk, the framework will never OOM(Out of Memory).
  • The the part of edges or the messages of super node can be in memory, so you will never loss it.
  • You can output the result to HDFS or HugeGraph, or any other system.
  • Easy to develop a new algotirhm. You need to focus on a vertex only, not to worry about messages transfering and memory.

Learn More

The project homepage contains more information about hugegraph-computer.

License

hugegraph-computer is licensed under Apache 2.0 License.