跳到主要内容
版本:0.9

运行时信息

INFORMATION_SCHEMA 数据库提供了对系统元数据的访问,如数据库或表的名称、列的数据类型等。

例如查询一张表的所有 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

请阅读参考文档获取更多关于 INFORMATION_SCHEMA 数据库的信息。