Skip to content
This repository was archived by the owner on Mar 12, 2026. It is now read-only.

Commit f7acd4b

Browse files
authored
chore: add note when deploy ceresdb cluster over multiple nodes (#55)
* fix link available * fix some problem * fix * update roadmap * add note for hybrid * exist->exists * deploy cluster with meta * chore
1 parent cf5f748 commit f7acd4b

2 files changed

Lines changed: 15 additions & 1 deletion

File tree

docs/src/cn/cluster_deployment/with_meta.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,20 @@ docker run -d --name ceresmeta-server
5454

5555
## 部署 CeresDB
5656

57-
`NoMeta` 模式中,由于 CeresDB 集群拓扑是静态的,因此 CeresDB 只需要一个本地存储来作为底层的存储层即可。但是在 `WithMeta` 模式中,集群的拓扑是可以变化的,因此如果 CeresDB 的底层存储使用一个独立的存储服务的话,CeresDB 集群就可以获得分布式系统的一些特性:高可用、负载均衡、水平扩展等。当然,CeresDB 仍然可以使用本地存储,这样的话,集群的拓扑仍然是静态的。
57+
`NoMeta` 模式中,由于 CeresDB 集群拓扑是静态的,因此 CeresDB 只需要一个本地存储来作为底层的存储层即可。但是在 `WithMeta` 模式中,集群的拓扑是可以变化的,因此如果 CeresDB 的底层存储使用一个独立的存储服务的话,CeresDB 集群就可以获得分布式系统的一些特性:高可用、负载均衡、水平扩展等。
58+
当然,CeresDB 仍然可以使用本地存储,这样的话,集群的拓扑仍然是静态的。
5859

5960
存储相关的配置主要包括两个部分:
6061

6162
- Object Storage
6263
- WAL Storage
6364

65+
注意:在生产环境中如果我们把 CeresDB 部署在多个节点上时,请按照如下方式把机器的 IP 设置到环境变量中(此 IP 用于 CeresMeta 和 CeresDB 通信使用,需保证网络联通可用):
66+
67+
```shell
68+
export CERESDB_SERVER_ADDR="{server_ip}:8831"
69+
```
70+
6471
### Object Storage
6572

6673
#### 本地存储

docs/src/en/cluster_deployment/with_meta.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,13 @@ The relevant storage configurations include two parts:
6666
- Object Storage
6767
- WAL Storage
6868

69+
Note: If you are deploying CeresDB over multiple nodes in a production environment, please set the server IP to the environment variable as follows
70+
(This Ip is used for communication between CeresMeta and CeresDB, please ensure it is valid ):
71+
72+
```shell
73+
export CERESDB_SERVER_ADDR="{server_ip}:8831"
74+
```
75+
6976
### Object Storage
7077

7178
#### Local Storage

0 commit comments

Comments
 (0)