hugegraph-sync/hugegraph-server
Dandelion 5bfcaea252
fix(chore): remove zgc in dockerfile for ARM env (#2421) (#2427)
* remove zgc

* Apply suggestions from code review



* add comment for hugegraph-server.sh

* fix enable-auth.sh

* init store in entrypoint

* use flag file to skip re-init

* delete tar.gz

* simply dockerfile

* mvn optimize

* simply dockerfile

* add init log in docker

---------

Co-authored-by: imbajin <jin@apache.org>
2024-01-29 16:33:26 +08:00
..
hugegraph-api fix(api): correct the vertex id in the edge-existence api (#2380) 2023-12-08 15:59:28 +08:00
hugegraph-cassandra refact: adjust project structure for merge PD & Store[Breaking Change] (#2338) 2023-11-08 18:08:08 +08:00
hugegraph-core feat(core): add IntMapByDynamicHash V1 implement (#2377) 2023-12-12 12:25:51 +08:00
hugegraph-dist fix(chore): remove zgc in dockerfile for ARM env (#2421) (#2427) 2024-01-29 16:33:26 +08:00
hugegraph-example chore: move server info into GlobalMasterInfo (#2370) 2023-12-04 12:43:32 +08:00
hugegraph-hbase fix HBase PrefixFilter bug (#2364) 2023-11-29 19:11:28 +08:00
hugegraph-mysql fix(api): clean some code for release 2023-11-13 12:50:49 +08:00
hugegraph-palo refact(api): update common 1.2 & fix jersey client code problem (#2365) 2023-12-07 12:26:22 +08:00
hugegraph-postgresql refact: adjust project structure for merge PD & Store[Breaking Change] (#2338) 2023-11-08 18:08:08 +08:00
hugegraph-rocksdb refact(rocksdb): clean & reformat some code (#2200) 2023-12-11 22:21:08 +08:00
hugegraph-scylladb refact: adjust project structure for merge PD & Store[Breaking Change] (#2338) 2023-11-08 18:08:08 +08:00
hugegraph-test fix: TinkerPop unit test lack some lables (#2387) 2023-12-14 17:59:31 +08:00
Dockerfile fix(chore): remove zgc in dockerfile for ARM env (#2421) (#2427) 2024-01-29 16:33:26 +08:00
README.md chore: reset hugegraph version to 1.2.0 (#2382) 2023-12-09 22:02:49 +08:00
pom.xml chore: reset hugegraph version to 1.2.0 (#2382) 2023-12-09 22:02:49 +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.