hugegraph-sync/hugegraph-server
V_Galaxy e1bd70831a
feat(dist): support docker deployment for PD and Store (#2529)
Co-authored-by: imbajin <jin@apache.org>
2024-05-18 23:18:26 +08:00
..
hugegraph-api fix: update resource references (#2522) 2024-04-20 16:14:30 +08:00
hugegraph-cassandra fix(server): clean up the code (#2456) 2024-02-22 17:28:43 +08:00
hugegraph-core fix(pd-store): reset previous unexpected cherry-pick for `TaskManager` (#2511) 2024-04-07 19:33:54 +08:00
hugegraph-dist feat(dist): support docker deployment for PD and Store (#2529) 2024-05-18 23:18:26 +08:00
hugegraph-example fix: format and clean code in dist and example modules (#2441) 2024-02-20 18:55:58 +08:00
hugegraph-hbase fix(server): clean up the code (#2456) 2024-02-22 17:28:43 +08:00
hugegraph-hstore fix(pd-store): fix hstore backend api tests failure (#2463) 2024-03-01 17:16:12 +08:00
hugegraph-mysql fix(server): clean up the code (#2456) 2024-02-22 17:28:43 +08:00
hugegraph-palo fix(server): clean up the code (#2456) 2024-02-22 17:28:43 +08:00
hugegraph-postgresql fix(server): clean up the code (#2456) 2024-02-22 17:28:43 +08:00
hugegraph-rocksdb fix: multi graph error in rocksdb with same path/fd 2024-03-22 16:03:50 +08:00
hugegraph-scylladb fix(server): remove extra blank lines (#2459) 2024-02-25 15:07:28 +08:00
hugegraph-test refact: enhance auth logic 2024-03-22 16:03:53 +08:00
Dockerfile feat(dist): support docker deployment for PD and Store (#2529) 2024-05-18 23:18:26 +08:00
README.md chore(pd-store): cherry-pick commits from master for synchronization & some modifications for passing partial hstore tests (#2414) 2024-01-16 01:21:27 +08:00
pom.xml chore: upgrade to 1.3.0 (last major version support Java8) 2024-04-03 21:05:41 +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.