Skip to content

Commit

Permalink
feat: testing openmldb 0.8.3 (#28)
Browse files Browse the repository at this point in the history
* bump openmldb 0.8.3

* fix(docker-compose): restrict starting order
  • Loading branch information
aceforeverd authored Sep 19, 2023
1 parent 2abcc89 commit f6bf70a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
OPENMLDB_VERSION=0.8.2
OPENMLDB_VERSION=0.8.3
ENV_TYPE=src
9 changes: 9 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ services:
image: ghcr.io/aceforeverd/openmldb-server:${OPENMLDB_VERSION}
restart: on-failure
command:
- --
- "--role=apiserver"
- "--endpoint=openmldb-api:9527"
- "--zk_cluster=openmldb-zk:2181"
Expand All @@ -76,11 +77,13 @@ services:
container_name: openmldb_ns1
image: ghcr.io/aceforeverd/openmldb-server:${OPENMLDB_VERSION}
command:
- --
- "--role=nameserver"
- "--endpoint=openmldb-ns1:9527"
- "--zk_cluster=openmldb-zk:2181"
- "--zk_root_path=/openmldb"
depends_on:
- openmldb-ns2
- openmldb-tablet1
- openmldb-tablet2
- openmldb-tablet3
Expand All @@ -89,6 +92,7 @@ services:
container_name: openmldb_ns2
image: ghcr.io/aceforeverd/openmldb-server:${OPENMLDB_VERSION}
command:
- --
- "--role=nameserver"
- "--endpoint=openmldb-ns2:9527"
- "--zk_cluster=openmldb-zk:2181"
Expand All @@ -102,28 +106,33 @@ services:
container_name: openmldb_tablet1
image: ghcr.io/aceforeverd/openmldb-server:${OPENMLDB_VERSION}
command:
- --
- "--role=tablet"
- "--endpoint=openmldb-tablet1:9527"
- "--zk_cluster=openmldb-zk:2181"
- "--zk_root_path=/openmldb"
depends_on:
- openmldb-zk
- openmldb-tablet2

openmldb-tablet2:
container_name: openmldb_tablet2
image: ghcr.io/aceforeverd/openmldb-server:${OPENMLDB_VERSION}
command:
- --
- "--role=tablet"
- "--endpoint=openmldb-tablet2:9527"
- "--zk_cluster=openmldb-zk:2181"
- "--zk_root_path=/openmldb"
depends_on:
- openmldb-zk
- openmldb-tablet3

openmldb-tablet3:
container_name: openmldb_tablet3
image: ghcr.io/aceforeverd/openmldb-server:${OPENMLDB_VERSION}
command:
- --
- "--role=tablet"
- "--endpoint=openmldb-tablet3:9527"
- "--zk_cluster=openmldb-zk:2181"
Expand Down
2 changes: 1 addition & 1 deletion prod.env
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
OPENMLDB_VERSION=0.8.2
OPENMLDB_VERSION=0.8.3
ENV_TYPE=prod

0 comments on commit f6bf70a

Please sign in to comment.