1. functions(函数)
记录普通函数和聚合函数信息。
name |
type |
comment |
name |
String |
函数名 |
is_aggregate |
UInt8 |
是否是聚合函数 |
case_insensitive |
UInt8 |
是否区分大小写 |
alias_to |
String |
别名 |
2. table_functions(表函数)
name |
type |
comment |
name |
String |
表函数名称 |
3. aggregate_function_combinators(聚合函数连接符)
聚合函数的名称可以附加一个后缀。这改变了聚合函数的工作方式。
name |
type |
comment |
name |
String |
后缀名 |
is_internal |
UInt8 |
是否内置,1 是,0 否 |
4. data_type_families(数据类型)
name |
type |
comment |
name |
String |
数据类型名称 |
case_insensitive |
UInt8 |
是否区分大小写,0不区分,1区分 |
alias_to |
String |
别名,BIGINT=Int64,TEXT=String |
5. events(事件)
记录关于系统中发生的事件数量的信息。例如,在表中,您可以找到自ClickHouse服务器启动以来处理了多少SELECT查询。
name |
type |
comment |
event |
String |
事件名称 |
value |
UInt64 |
事件发生次数 |
description |
String |
事件描述 |
支持的格式信息
name |
type |
comment |
name |
String |
格式名称 |
is_input |
UInt8 |
该格式是否支持输入 |
is_output |
UInt8 |
该格式是否支持输出 |
7. metrics(监控指标)
包含可以立即计算或具有当前值的指标。 例如同时处理的查询数或当前副本延迟,该表始终是最新的。
name |
type |
comment |
metric |
String |
指标名称 |
value |
Int64 |
指标值 |
description |
String |
指标描述 |
8. asynchronous_metrics(异步指标)
记录定期在后台计算的指标。异步运行的概要信息,包括分配的内存,执行队列中的任务数量
name |
type |
comment |
metric |
String |
指标名称 |
value |
Float64 |
指标值 |
9. collations(语言及其缩写)
name |
type |
comment |
name |
String |
语言缩写 |
language |
Nullable(String) |
语言全称 |
10. time_zones 时区表
存储全球时区列表
name |
type |
comment |
time_zone |
String |
时区 |