You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+21-4Lines changed: 21 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,13 +23,27 @@ achieved through the powerful [Gremlin](https://tinkerpop.apache.org/gremlin.htm
23
23
24
24
## Features
25
25
26
-
- Compliant to [Apache TinkerPop 3](https://tinkerpop.apache.org/), supports [Gremlin](https://tinkerpop.apache.org/gremlin.html) & [Cypher](https://en.wikipedia.org/wiki/Cypher) language
26
+
- Compliant to [Apache TinkerPop 3](https://tinkerpop.apache.org/), supports [Gremlin](https://tinkerpop.apache.org/gremlin.html) & [Cypher](https://en.wikipedia.org/wiki/Cypher_(query_language)) language
27
27
- Schema Metadata Management, including VertexLabel, EdgeLabel, PropertyKey and IndexLabel
28
28
- Multi-type Indexes, supporting exact query, range query and complex conditions combination query
29
29
- Plug-in Backend Store Framework, mainly support `RocksDB`/`HStore` + `HBase` for now and you could choose other backends in the [legacy version](https://hugegraph.apache.org/docs/download/download/) ≤ `1.5.0` (like `MySQL/PG`/`Cassandra` ...)
30
30
- Integration with `Flink/Spark/HDFS`, and friendly to connect other big data platforms
|[hugegraph-server](hugegraph-server)| Core graph engine with REST API, Gremlin/Cypher support, and pluggable backends (RocksDB default) |
40
+
|[hugegraph-pd](hugegraph-pd)| Placement Driver for distributed mode - handles meta storage, partition management and cluster scheduling |
41
+
|[hugegraph-store](hugegraph-store)| Distributed storage with Raft consensus for high availability and horizontal scaling |
42
+
|[hugegraph-commons](hugegraph-commons)| Shared utilities, RPC framework and common components |
43
+
44
+
-**Standalone**: HugeGraph Server + RocksDB (for all-in-one deployment)
45
+
-**Distributed**: HugeGraph Server + PD + Store (Raft + RocksDB by default)
46
+
33
47
## Quick Start
34
48
35
49
### 1. Docker (For Test)
@@ -39,7 +53,7 @@ Use Docker to quickly start a HugeGraph server with `RocksDB` (in the background
39
53
```
40
54
# (Optional)
41
55
# - add "-e PRELOAD=true" to auto-load a sample graph
42
-
docker run -itd --name=graph -e PASSWORD=xxx -p 8080:8080 hugegraph/hugegraph:1.5.0
56
+
docker run -itd --name=graph -e PASSWORD=xxx -p 8080:8080 hugegraph/hugegraph:1.7.0
43
57
```
44
58
45
59
Please visit [doc page](https://hugegraph.apache.org/docs/quickstart/hugegraph-server/#3-deploy) or
@@ -54,7 +68,7 @@ the [README](hugegraph-server/hugegraph-dist/docker/README.md) for more details.
54
68
Visit [Download Page](https://hugegraph.apache.org/docs/download/download/) and refer the [doc](https://hugegraph.apache.org/docs/quickstart/hugegraph-server/#32-download-the-binary-tar-tarball)
55
69
to download the latest release package and start the server.
56
70
57
-
**Note:** if you want to use it in the production environment or expose it to the public network, must enable the [AuthSystem](https://hugegraph.apache.org/docs/config/config-authentication/) to ensure safe.
71
+
**Note:** if you want to use it in the production environment or expose it to the public network, you must enable the [AuthSystem](https://hugegraph.apache.org/docs/config/config-authentication/) to ensure safety.
58
72
59
73
### 3. Build From Source
60
74
@@ -64,7 +78,9 @@ steps to build the source code and start the server.
64
78
The project [doc page](https://hugegraph.apache.org/docs/) contains more information on HugeGraph
65
79
and provides detailed documentation for users. (Structure / Usage / API / Configs...)
66
80
67
-
And here are links of other **HugeGraph** component/repositories:
Copy file name to clipboardExpand all lines: hugegraph-cluster-test/hugegraph-clustertest-dist/src/assembly/static/conf/rest-server.properties.template
0 commit comments