From 49754467ed29662ee783caa6af8a2f4bfdace4a9 Mon Sep 17 00:00:00 2001 From: imbajin Date: Fri, 15 Dec 2023 12:13:24 +0800 Subject: [PATCH 1/8] fix(dist): update relative path for the 1.2.0 --- README.md | 10 ++++------ hugegraph-server/hugegraph-dist/pom.xml | 16 ---------------- .../hugegraph-dist/scripts/apache-release.sh | 4 ++-- 3 files changed, 6 insertions(+), 24 deletions(-) diff --git a/README.md b/README.md index 5e589be604..afc2bfb88f 100644 --- a/README.md +++ b/README.md @@ -8,11 +8,8 @@ [![License](https://img.shields.io/badge/license-Apache%202-0E78BA.svg)](https://www.apache.org/licenses/LICENSE-2.0.html) [![HugeGraph-CI](https://github.com/apache/incubator-hugegraph/actions/workflows/ci.yml/badge.svg)](https://github.com/apache/incubator-hugegraph/actions/workflows/ci.yml) -[![CodeQL](https://github.com/apache/incubator-hugegraph/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/apache/incubator-hugegraph/actions/workflows/codeql-analysis.yml) [![License checker](https://github.com/apache/incubator-hugegraph/actions/workflows/licence-checker.yml/badge.svg)](https://github.com/apache/incubator-hugegraph/actions/workflows/licence-checker.yml) -[![Codecov](https://codecov.io/gh/apache/incubator-hugegraph/branch/master/graph/badge.svg)](https://app.codecov.io/gh/apache/incubator-hugegraph) [![GitHub Releases Downloads](https://img.shields.io/github/downloads/apache/hugegraph/total.svg)](https://github.com/apache/hugegraph/releases) -[![stars](https://img.shields.io/github/stars/apache/hugegraph)](https://github.com/apache/incubator-hugegraph/stargazers) @@ -27,7 +24,7 @@ Billions of vertices and edges can be easily stored into and queried from HugeGr - Compliance to [Apache TinkerPop 3](https://tinkerpop.apache.org/), support [Gremlin](https://tinkerpop.apache.org/gremlin.html) & [Cypher](https://en.wikipedia.org/wiki/Cypher) language - Schema Metadata Management, including VertexLabel, EdgeLabel, PropertyKey and IndexLabel - Multi-type Indexes, supporting exact query, range query and complex conditions combination query -- Plug-in Backend Store Driver Framework, support `RocksDB`, `Cassandra`, `HBase`, `ScyllaDB`, and `MySQL/Postgre` now and easy to add other backend store driver if needed +- Plug-in Backend Store Driver Framework, support `RocksDB`, `Cassandra`, `HBase`, `ScyllaDB`, and `MySQL/Postgre` now and easy to add another backend store driver if needed - Integration with `Flink/Spark/HDFS`, and friendly to connect other big data platforms @@ -36,7 +33,7 @@ Billions of vertices and edges can be easily stored into and queried from HugeGr ### 1. Docker Way We can use `docker run -itd --name=graph -p 8080:8080 hugegraph/hugegraph` to quickly start an inner -HugeGraph server with `RocksDB` in background. +HugeGraph server with `RocksDB` in backgrounds. (Use `release tag`(like `1.0.0`) for the stable version) Optional: @@ -81,7 +78,8 @@ HugeGraph is licensed under Apache 2.0 License. HugeGraph relies on the [TinkerPop](http://tinkerpop.apache.org) framework, we refer to the storage structure of Titan and the schema definition of DataStax. Thanks to TinkerPop, thanks to Titan, thanks to DataStax. Thanks to all other organizations or authors who contributed to the project. -You are welcome to contribute to HugeGraph, and we are looking forward to working with you to build an excellent open source community. +You are welcome to contribute to HugeGraph, +and we are looking forward to working with you to build an excellent open-source community. ## Contact Us diff --git a/hugegraph-server/hugegraph-dist/pom.xml b/hugegraph-server/hugegraph-dist/pom.xml index cdec80950b..9a58ac767f 100644 --- a/hugegraph-server/hugegraph-dist/pom.xml +++ b/hugegraph-server/hugegraph-dist/pom.xml @@ -293,22 +293,6 @@ - - - - - - - - - - - diff --git a/hugegraph-server/hugegraph-dist/scripts/apache-release.sh b/hugegraph-server/hugegraph-dist/scripts/apache-release.sh index a92a59b370..277fed8b72 100755 --- a/hugegraph-server/hugegraph-dist/scripts/apache-release.sh +++ b/hugegraph-server/hugegraph-dist/scripts/apache-release.sh @@ -33,13 +33,13 @@ WORK_DIR=$( pwd ) cd "${WORK_DIR}" || exit -echo "In the work dir: $(pwd)" +echo "Current work dir: $(pwd)" # clean old dir then build a new one rm -rf dist && mkdir -p dist/apache-${REPO} # step1: package the source code -cd ../../ +cd ../../../ && echo "Package source in: $(pwd)" git archive --format=tar.gz \ --output="hugegraph-server/hugegraph-dist/scripts/dist/apache-${REPO}/apache-${REPO}-incubating-${RELEASE_VERSION}-src.tar.gz" \ --prefix=apache-${REPO}-incubating-"${RELEASE_VERSION}"-src/ "${GIT_BRANCH}" || exit From 1e8d14edd4b08b18ca23ac2898adc3bdc3abe73a Mon Sep 17 00:00:00 2001 From: Dandelion Date: Fri, 15 Dec 2023 21:20:01 +0800 Subject: [PATCH 2/8] add docker policy and run server in daemon --- README.md | 6 +++++- hugegraph-server/Dockerfile | 1 + hugegraph-server/hugegraph-dist/README.md | 8 ++++++-- .../hugegraph-dist/docker/docker-entrypoint.sh | 2 +- .../hugegraph-dist/docker/scripts/detect-storage.groovy | 2 +- 5 files changed, 14 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index afc2bfb88f..f15dcbaea0 100644 --- a/README.md +++ b/README.md @@ -32,8 +32,12 @@ Billions of vertices and edges can be easily stored into and queried from HugeGr ### 1. Docker Way +> Note: The docker image of hugegraph is a convenience release, not official distribution artifacts from ASF. You can find more details from [ASF Release Distribution Policy](https://infra.apache.org/release-distribution.html#dockerhub). + +> Note: Recommand to use `release tag`(like `1.0.0`) for the stable version. Use `latest` tag to experience the newest functions in development. + We can use `docker run -itd --name=graph -p 8080:8080 hugegraph/hugegraph` to quickly start an inner -HugeGraph server with `RocksDB` in backgrounds. (Use `release tag`(like `1.0.0`) for the stable version) +HugeGraph server with `RocksDB` in backgrounds. Optional: diff --git a/hugegraph-server/Dockerfile b/hugegraph-server/Dockerfile index 47dc411c6e..45a725786d 100644 --- a/hugegraph-server/Dockerfile +++ b/hugegraph-server/Dockerfile @@ -47,6 +47,7 @@ RUN set -x \ procps \ curl \ lsof \ + vim \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* diff --git a/hugegraph-server/hugegraph-dist/README.md b/hugegraph-server/hugegraph-dist/README.md index 1aedb37bbe..d5e0b89f10 100644 --- a/hugegraph-server/hugegraph-dist/README.md +++ b/hugegraph-server/hugegraph-dist/README.md @@ -1,5 +1,9 @@ # Deploy Hugegraph server with docker +> Note: The docker image of hugegraph is a convenience release, not official distribution artifacts from ASF. You can find more details from [ASF Release Distribution Policy](https://infra.apache.org/release-distribution.html#dockerhub). + +> Note: Recommand to use `release tag`(like `1.0.0`) for the stable version. Use `latest` tag to experience the newest functions in development. + ## 1. Deploy We can use docker to quickly start an inner HugeGraph server with RocksDB in background. @@ -18,7 +22,7 @@ We can use docker to quickly start an inner HugeGraph server with RocksDB in bac graph: image: hugegraph/hugegraph ports: - - 18080:8080 + - 8080:8080 ``` ## 2. Create Sample Graph on Server Startup @@ -46,7 +50,7 @@ If you want to customize the pre-loaded data, please mount the the groovy script volumes: - /path/to/yourscript:/hugegraph/scripts/example.groovy ports: - - 18080:8080 + - 8080:8080 ``` 3. Using start-hugegraph.sh diff --git a/hugegraph-server/hugegraph-dist/docker/docker-entrypoint.sh b/hugegraph-server/hugegraph-dist/docker/docker-entrypoint.sh index e1fad4a9ff..ce7541c71f 100644 --- a/hugegraph-server/hugegraph-dist/docker/docker-entrypoint.sh +++ b/hugegraph-server/hugegraph-dist/docker/docker-entrypoint.sh @@ -21,4 +21,4 @@ ./bin/init-store.sh -./bin/start-hugegraph.sh -d false -j "$JAVA_OPTS" -g zgc +./bin/start-hugegraph.sh -j "$JAVA_OPTS" -g zgc diff --git a/hugegraph-server/hugegraph-dist/docker/scripts/detect-storage.groovy b/hugegraph-server/hugegraph-dist/docker/scripts/detect-storage.groovy index df57ade988..0c1a3e5ddb 100644 --- a/hugegraph-server/hugegraph-dist/docker/scripts/detect-storage.groovy +++ b/hugegraph-server/hugegraph-dist/docker/scripts/detect-storage.groovy @@ -18,7 +18,7 @@ import org.apache.hugegraph.HugeFactory import org.apache.hugegraph.dist.RegisterUtil -// register all the backend to avoid changes if docker needs to support othre backend +// register all the backend to avoid changes if needs to support othre backend RegisterUtil.registerPlugins() RegisterUtil.registerRocksDB() RegisterUtil.registerCassandra() From 7efe6c386feb03df0a486dc1027e388deecbeeae Mon Sep 17 00:00:00 2001 From: Dandelion Date: Fri, 15 Dec 2023 22:04:00 +0800 Subject: [PATCH 3/8] fix: use tail to avoid container exit --- hugegraph-server/hugegraph-dist/docker/docker-entrypoint.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hugegraph-server/hugegraph-dist/docker/docker-entrypoint.sh b/hugegraph-server/hugegraph-dist/docker/docker-entrypoint.sh index ce7541c71f..cc1f8a1fcf 100644 --- a/hugegraph-server/hugegraph-dist/docker/docker-entrypoint.sh +++ b/hugegraph-server/hugegraph-dist/docker/docker-entrypoint.sh @@ -22,3 +22,5 @@ ./bin/init-store.sh ./bin/start-hugegraph.sh -j "$JAVA_OPTS" -g zgc + +tail -f /dev/null From af7b41d102cade423cfc37d07cdde506954da2d2 Mon Sep 17 00:00:00 2001 From: Dandelion Date: Sat, 16 Dec 2023 12:26:38 +0800 Subject: [PATCH 4/8] adjuest the order of quick start --- README.md | 27 +++++------ hugegraph-server/hugegraph-dist/README.md | 58 ----------------------- 2 files changed, 12 insertions(+), 73 deletions(-) delete mode 100644 hugegraph-server/hugegraph-dist/README.md diff --git a/README.md b/README.md index f15dcbaea0..e38e3af360 100644 --- a/README.md +++ b/README.md @@ -30,26 +30,13 @@ Billions of vertices and edges can be easily stored into and queried from HugeGr ## Quick Start -### 1. Docker Way -> Note: The docker image of hugegraph is a convenience release, not official distribution artifacts from ASF. You can find more details from [ASF Release Distribution Policy](https://infra.apache.org/release-distribution.html#dockerhub). - -> Note: Recommand to use `release tag`(like `1.0.0`) for the stable version. Use `latest` tag to experience the newest functions in development. - -We can use `docker run -itd --name=graph -p 8080:8080 hugegraph/hugegraph` to quickly start an inner -HugeGraph server with `RocksDB` in backgrounds. - -Optional: - -1. use `docker exec -it graph bash` to enter the container to do some operations. -2. use `docker run -itd --name=graph -p 8080:8080 -e PRELOAD="true" hugegraph/hugegraph` to start with a **built-in** (example) graph. - -### 2. Download Way +### 1. Download Way Visit [Download Page](https://hugegraph.apache.org/docs/download/download/) and refer the [doc](https://hugegraph.apache.org/docs/quickstart/hugegraph-server/#33-source-code-compilation) to download the latest release package and start the server. -### 3. Source Building Way +### 2. Source Building Way Visit [Source Building Page](https://hugegraph.apache.org/docs/quickstart/hugegraph-server/#33-source-code-compilation) and follow the steps to build the source code and start the server. @@ -63,6 +50,16 @@ And here are links of other **HugeGraph** component/repositories: 3. [hugegraph-commons](https://github.com/apache/incubator-hugegraph-commons) (**common & rpc** libs) 4. [hugegraph-website](https://github.com/apache/incubator-hugegraph-doc) (**doc & website** code) +### 3. Docker Way + +> Note: The docker image of hugegraph is a convenience release, not official distribution artifacts from ASF. You can find more details from [ASF Release Distribution Policy](https://infra.apache.org/release-distribution.html#dockerhub). + +> Note: Recommand to use `release tag`(like `1.0.0`) for the stable version. Use `latest` tag to experience the newest functions in development. + +We can use `docker run -itd --name=graph -p 8080:8080 hugegraph/hugegraph` to quickly start an inner +HugeGraph server with `RocksDB` in backgrounds. +You can visit [doc page](https://hugegraph.apache.org/docs/quickstart/hugegraph-server/#3-deploy) for more details. + ## License HugeGraph is licensed under Apache 2.0 License. diff --git a/hugegraph-server/hugegraph-dist/README.md b/hugegraph-server/hugegraph-dist/README.md deleted file mode 100644 index d5e0b89f10..0000000000 --- a/hugegraph-server/hugegraph-dist/README.md +++ /dev/null @@ -1,58 +0,0 @@ -# Deploy Hugegraph server with docker - -> Note: The docker image of hugegraph is a convenience release, not official distribution artifacts from ASF. You can find more details from [ASF Release Distribution Policy](https://infra.apache.org/release-distribution.html#dockerhub). - -> Note: Recommand to use `release tag`(like `1.0.0`) for the stable version. Use `latest` tag to experience the newest functions in development. - -## 1. Deploy - -We can use docker to quickly start an inner HugeGraph server with RocksDB in background. - -1. Using docker run - - Use `docker run -itd --name=graph -p 18080:8080 hugegraph/hugegraph` to start hugegraph server. - -2. Using docker compose - - Certainly we can only deploy server without other instance. Additionally, if we want to manage other HugeGraph-related instances with `server` in a single file, we can deploy HugeGraph-related instances via `docker-compose up -d`. The `docker-compose.yaml` is as below: - - ```yaml - version: '3' - services: - graph: - image: hugegraph/hugegraph - ports: - - 8080:8080 - ``` - -## 2. Create Sample Graph on Server Startup - -If you want to **pre-load** some (test) data or graphs in container(by default), you can set the env `PRELOAD=ture` - -If you want to customize the pre-loaded data, please mount the the groovy scripts (not necessary). - -1. Using docker run - - Use `docker run -itd --name=graph -p 18080:8080 -e PRELOAD=true -v /path/to/yourScript:/hugegraph/scripts/example.groovy hugegraph/hugegraph` - to start hugegraph server. - -2. Using docker compose - - We can also use `docker-compose up -d` to quickly start. The `docker-compose.yaml` is below. [example.groovy](https://github.com/apache/incubator-hugegraph/blob/master/hugegraph-dist/src/assembly/static/scripts/example.groovy) is a pre-defined script. If needed, we can mount a new `example.groovy` to preload different data: - - ```yaml - version: '3' - services: - graph: - image: hugegraph/hugegraph - environment: - - PRELOAD=true - volumes: - - /path/to/yourscript:/hugegraph/scripts/example.groovy - ports: - - 8080:8080 - ``` - -3. Using start-hugegraph.sh - - If you deploy HugeGraph server without docker, you can also pass arguments using `-p`, like this: `bin/start-hugegraph.sh -p true`. \ No newline at end of file From 1a609380f397c551c06b1afcc509a5cd07dffc3f Mon Sep 17 00:00:00 2001 From: Dandelion <49650772+aroundabout@users.noreply.github.com> Date: Sat, 16 Dec 2023 23:37:41 +0800 Subject: [PATCH 5/8] Update hugegraph-server/hugegraph-dist/docker/scripts/detect-storage.groovy --- .../hugegraph-dist/docker/scripts/detect-storage.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hugegraph-server/hugegraph-dist/docker/scripts/detect-storage.groovy b/hugegraph-server/hugegraph-dist/docker/scripts/detect-storage.groovy index 0c1a3e5ddb..5dff017b58 100644 --- a/hugegraph-server/hugegraph-dist/docker/scripts/detect-storage.groovy +++ b/hugegraph-server/hugegraph-dist/docker/scripts/detect-storage.groovy @@ -18,7 +18,7 @@ import org.apache.hugegraph.HugeFactory import org.apache.hugegraph.dist.RegisterUtil -// register all the backend to avoid changes if needs to support othre backend +// register all the backend to avoid changes if needs to support other backend RegisterUtil.registerPlugins() RegisterUtil.registerRocksDB() RegisterUtil.registerCassandra() From 8607d8d33188a1f8c0213094a106dd0f21172182 Mon Sep 17 00:00:00 2001 From: Dandelion Date: Sun, 17 Dec 2023 00:13:48 +0800 Subject: [PATCH 6/8] adjust desc --- README.md | 17 +++--- .../hugegraph-dist/docker/READEME.md | 60 +++++++++++++++++++ hugegraph-server/hugegraph-dist/pom.xml | 3 + 3 files changed, 72 insertions(+), 8 deletions(-) create mode 100644 hugegraph-server/hugegraph-dist/docker/READEME.md diff --git a/README.md b/README.md index e38e3af360..e292e9b67a 100644 --- a/README.md +++ b/README.md @@ -30,10 +30,9 @@ Billions of vertices and edges can be easily stored into and queried from HugeGr ## Quick Start - ### 1. Download Way -Visit [Download Page](https://hugegraph.apache.org/docs/download/download/) and refer the [doc](https://hugegraph.apache.org/docs/quickstart/hugegraph-server/#33-source-code-compilation) +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) to download the latest release package and start the server. ### 2. Source Building Way @@ -50,15 +49,17 @@ And here are links of other **HugeGraph** component/repositories: 3. [hugegraph-commons](https://github.com/apache/incubator-hugegraph-commons) (**common & rpc** libs) 4. [hugegraph-website](https://github.com/apache/incubator-hugegraph-doc) (**doc & website** code) -### 3. Docker Way - -> Note: The docker image of hugegraph is a convenience release, not official distribution artifacts from ASF. You can find more details from [ASF Release Distribution Policy](https://infra.apache.org/release-distribution.html#dockerhub). - -> Note: Recommand to use `release tag`(like `1.0.0`) for the stable version. Use `latest` tag to experience the newest functions in development. +### 3. Docker Way (Convenient) We can use `docker run -itd --name=graph -p 8080:8080 hugegraph/hugegraph` to quickly start an inner HugeGraph server with `RocksDB` in backgrounds. -You can visit [doc page](https://hugegraph.apache.org/docs/quickstart/hugegraph-server/#3-deploy) for more details. +You can visit [doc page](https://hugegraph.apache.org/docs/quickstart/hugegraph-server/#3-deploy) or the [README](hugegraph-server/hugegraph-dist/docker/READEME.md) for more details. + +> Note: +> +> 1. The docker image of hugegraph is a convenience release, not official distribution artifacts from ASF. You can find more details from [ASF Release Distribution Policy](https://infra.apache.org/release-distribution.html#dockerhub). +> +> 2. Recommand to use `release tag`(like `1.0.0`) for the stable version. Use `latest` tag to experience the newest functions in development. ## License diff --git a/hugegraph-server/hugegraph-dist/docker/READEME.md b/hugegraph-server/hugegraph-dist/docker/READEME.md new file mode 100644 index 0000000000..8b5d2efc55 --- /dev/null +++ b/hugegraph-server/hugegraph-dist/docker/READEME.md @@ -0,0 +1,60 @@ +# Deploy Hugegraph server with docker + +> Note: +> +> 1. The docker image of hugegraph is a convenience release, not official distribution artifacts from ASF. You can find more details from [ASF Release Distribution Policy](https://infra.apache.org/release-distribution.html#dockerhub). +> +> 2. Recommand to use `release tag`(like `1.0.0`) for the stable version. Use `latest` tag to experience the newest functions in development. + +## 1. Deploy + +We can use docker to quickly start an inner HugeGraph server with RocksDB in background. + +1. Using docker run + + Use `docker run -itd --name=graph -p 18080:8080 hugegraph/hugegraph` to start hugegraph server. + +2. Using docker compose + + Certainly we can only deploy server without other instance. Additionally, if we want to manage other HugeGraph-related instances with `server` in a single file, we can deploy HugeGraph-related instances via `docker-compose up -d`. The `docker-compose.yaml` is as below: + + ```yaml + version: '3' + services: + graph: + image: hugegraph/hugegraph + ports: + - 8080:8080 + ``` + +## 2. Create Sample Graph on Server Startup + +If you want to **pre-load** some (test) data or graphs in container(by default), you can set the env `PRELOAD=ture` + +If you want to customize the pre-loaded data, please mount the the groovy scripts (not necessary). + +1. Using docker run + + Use `docker run -itd --name=graph -p 18080:8080 -e PRELOAD=true -v /path/to/yourScript:/hugegraph/scripts/example.groovy hugegraph/hugegraph` + to start hugegraph server. + +2. Using docker compose + + We can also use `docker-compose up -d` to quickly start. The `docker-compose.yaml` is below. [example.groovy](https://github.com/apache/incubator-hugegraph/blob/master/hugegraph-dist/src/assembly/static/scripts/example.groovy) is a pre-defined script. If needed, we can mount a new `example.groovy` to preload different data: + + ```yaml + version: '3' + services: + graph: + image: hugegraph/hugegraph + environment: + - PRELOAD=true + volumes: + - /path/to/yourscript:/hugegraph/scripts/example.groovy + ports: + - 8080:8080 + ``` + +3. Using start-hugegraph.sh + + If you deploy HugeGraph server without docker, you can also pass arguments using `-p`, like this: `bin/start-hugegraph.sh -p true`. \ No newline at end of file diff --git a/hugegraph-server/hugegraph-dist/pom.xml b/hugegraph-server/hugegraph-dist/pom.xml index 9a58ac767f..37939e2171 100644 --- a/hugegraph-server/hugegraph-dist/pom.xml +++ b/hugegraph-server/hugegraph-dist/pom.xml @@ -294,6 +294,9 @@ + From ead2cec90e263dcb9b6cd22f6d7ec689ff3625da Mon Sep 17 00:00:00 2001 From: imbajin Date: Sun, 17 Dec 2023 01:04:12 +0800 Subject: [PATCH 7/8] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e292e9b67a..ef64f10241 100644 --- a/README.md +++ b/README.md @@ -49,15 +49,15 @@ And here are links of other **HugeGraph** component/repositories: 3. [hugegraph-commons](https://github.com/apache/incubator-hugegraph-commons) (**common & rpc** libs) 4. [hugegraph-website](https://github.com/apache/incubator-hugegraph-doc) (**doc & website** code) -### 3. Docker Way (Convenient) +### 3. Docker Way (Convenient for Test) We can use `docker run -itd --name=graph -p 8080:8080 hugegraph/hugegraph` to quickly start an inner -HugeGraph server with `RocksDB` in backgrounds. +HugeGraph server with `RocksDB` (in backgrounds) for **test/dev**. You can visit [doc page](https://hugegraph.apache.org/docs/quickstart/hugegraph-server/#3-deploy) or the [README](hugegraph-server/hugegraph-dist/docker/READEME.md) for more details. > Note: > -> 1. The docker image of hugegraph is a convenience release, not official distribution artifacts from ASF. You can find more details from [ASF Release Distribution Policy](https://infra.apache.org/release-distribution.html#dockerhub). +> 1. The docker image of hugegraph is a convenience release, but not **official distribution** artifacts. You can find more details from [ASF Release Distribution Policy](https://infra.apache.org/release-distribution.html#dockerhub). > > 2. Recommand to use `release tag`(like `1.0.0`) for the stable version. Use `latest` tag to experience the newest functions in development. From 75f7183135fe7dc562885f6c00c345de7c9c5598 Mon Sep 17 00:00:00 2001 From: imbajin Date: Sun, 17 Dec 2023 01:05:00 +0800 Subject: [PATCH 8/8] Update pom.xml --- hugegraph-server/hugegraph-dist/pom.xml | 3 --- 1 file changed, 3 deletions(-) diff --git a/hugegraph-server/hugegraph-dist/pom.xml b/hugegraph-server/hugegraph-dist/pom.xml index 37939e2171..9a58ac767f 100644 --- a/hugegraph-server/hugegraph-dist/pom.xml +++ b/hugegraph-server/hugegraph-dist/pom.xml @@ -294,9 +294,6 @@ -