管理
本文件介绍了在 GreptimeDB 系统运维和部署中使用的策略和实践。
数据库/集群管理
运行时信息
- 通过 CLUSTER_INFO 表查找集群的拓扑信息。
- 通过 PARTITIONS 表和REGION_PEERS 表查找表的 Region 分布。
例如查询一张表的所有 Region Id:
SELECT greptime_partition_id FROM PARTITIONS WHERE table_name = 'monitor'
查询一张表的 region 分布在哪些 datanode 上:
SELECT b.peer_id as datanode_id,
a.greptime_partition_id as region_id
FROM information_schema.partitions a LEFT JOIN information_schema.region_peers b
ON a.greptime_partition_id = b.region_id
WHERE a.table_name='monitor'
ORDER BY datanode_id ASC