hugegraph-sync/hugegraph-server
Aph-CUG 0b794c9ab9 增加一个link_buf类,以及log写入机制 2024-08-27 09:20:02 +08:00
..
hugegraph-api chore(api): support ignore graphspaces segment in url (#2612) 2024-08-13 20:56:53 +08:00
hugegraph-cassandra feat(server): support new backend Hstore (#2560) 2024-07-10 16:35:44 +08:00
hugegraph-core 增加一个link_buf类,以及log写入机制 2024-08-27 09:20:02 +08:00
hugegraph-dist Merge pull request #2628 from apache/intro-commons-v2 2024-08-22 19:07:20 +08:00
hugegraph-example fix: format and clean code in dist and example modules (#2441) 2024-02-20 17:22:07 +08:00
hugegraph-hbase feat(server): support new backend Hstore (#2560) 2024-07-10 16:35:44 +08:00
hugegraph-hstore chore(hstore): translate CJK comments to English (#2616) 2024-08-10 15:31:25 +08:00
hugegraph-mysql feat(server): support new backend Hstore (#2560) 2024-07-10 16:35:44 +08:00
hugegraph-palo fix(server): clean up the code (#2456) 2024-02-22 17:26:15 +08:00
hugegraph-postgresql fix(server): clean up the code (#2456) 2024-02-22 17:26:15 +08:00
hugegraph-rocksdb feat(server): support new backend Hstore (#2560) 2024-07-10 16:35:44 +08:00
hugegraph-scylladb fix(server): remove extra blank lines (#2459) 2024-02-25 11:45:00 +08:00
hugegraph-test chore(api): support ignore graphspaces segment in url (#2612) 2024-08-13 20:56:53 +08:00
Dockerfile Merge pull request #2628 from apache/intro-commons-v2 2024-08-22 19:07:20 +08:00
Dockerfile-hstore chore(dist): intro additional Dockerfile to build the server image & skip init-hstore backend (#2642) 2024-08-22 14:04:06 +08:00
README.md chore: reset hugegraph version to 1.2.0 (#2382) 2023-12-09 22:02:49 +08:00
pom.xml chore(dist): tar source and binary package for hugegraph with pd-store (#2594) 2024-08-06 21:21:14 +08:00

README.md

HugeGraph Server

HugeGraph Server consists of two layers of functionality: the graph engine layer, and the storage layer.

  • Graph Engine Layer:

    • REST Server: Provides a RESTful API for querying graph/schema information, supports the Gremlin and Cypher query languages, and offers APIs for service monitoring and operations.
    • Graph Engine: Supports both OLTP and OLAP graph computation types, with OLTP implementing the Apache TinkerPop3 framework.
    • Backend Interface: Implements the storage of graph data to the backend.
  • Storage Layer:

    • Storage Backend: Supports multiple built-in storage backends (RocksDB/MySQL/HBase/...) and allows users to extend custom backends without modifying the existing source code.