hugegraph-sync/hugegraph-server
imbajin 94c03a9aec
refactor: remove 'incubating' branding, update docs & packaging (#2965)
* chore: remove 'incubating' branding, update docs & packaging

Replace references to 'incubator'/'incubating' across the repo to the final 'hugegraph' branding and packaging names. Updates include: removal of DISCLAIMER, NOTICE year bump, README and docs link/badge fixes, pom final.name changes (remove -incubating suffix),

Dockerfile and assembly scripts adjusted to new package paths, numerous docs and tests updated to new URLs/paths, mailing list/contact updates, and minor serena project.yml additions.

---------

Co-authored-by: contrueCT <contrue_CT@outlook.com>
2026-03-14 17:41:12 +08:00
..
hugegraph-api feat(server): add gs profile api (#2950) 2026-02-14 14:29:59 +08:00
hugegraph-cassandra BREAKING CHANGE(server): support "parent & child" EdgeLabel type (#2662) 2024-10-10 00:15:32 +08:00
hugegraph-core fix(server): prevent await deadlock on ContextCallable failure (#2941) 2026-01-26 14:59:18 +08:00
hugegraph-dist refactor: remove 'incubating' branding, update docs & packaging (#2965) 2026-03-14 17:41:12 +08:00
hugegraph-example perf(example): add PerfExample5 and PerfExample6 (#2860) 2025-09-16 10:25:11 +08:00
hugegraph-hbase fix(server): change graphspace/graph to graphspace_graph in hbase 2025-10-29 15:58:32 +08:00
hugegraph-hstore fix(server): handle graph data sync inconsistent problem (#74) 2025-10-29 15:58:32 +08:00
hugegraph-mysql BREAKING CHANGE(server): support "parent & child" EdgeLabel type (#2662) 2024-10-10 00:15:32 +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 chore(server): bump rocksdb version from 7.2.2 to 8.10.2 (#2896) 2025-11-01 04:10:08 +08:00
hugegraph-scylladb fix(server): remove extra blank lines (#2459) 2024-02-25 11:45:00 +08:00
hugegraph-test feat(server): add gs profile api (#2950) 2026-02-14 14:29:59 +08:00
AGENTS.md docs: add AGENTS.md with project guidance 2025-10-29 15:58:32 +08:00
Dockerfile refactor: remove 'incubating' branding, update docs & packaging (#2965) 2026-03-14 17:41:12 +08:00
Dockerfile-hstore refactor: remove 'incubating' branding, update docs & packaging (#2965) 2026-03-14 17:41:12 +08:00
README.md BREAKING CHANGE(server): disable legacy backends include `MySQL/PG/c*`(.etc) (#2746) 2025-04-28 15:20:37 +08:00
pom.xml refactor: remove 'incubating' branding, update docs & packaging (#2965) 2026-03-14 17:41:12 +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/Memory/HStore/HBase/...) and allows users to extend custom backends without modifying the existing source code.