跳到主要内容
跳到主要内容

system.asynchronous_inserts

在 ClickHouse Cloud 中进行查询

该系统表中的数据保存在 ClickHouse Cloud 中每个节点的本地。因此,如需获得所有数据的完整视图,需要使用 clusterAllReplicas 函数。更多详情请参阅此处

包含队列中待处理异步插入的相关信息。

列:

  • query (String) — 查询文本。
  • database (String) — 数据库名称。
  • table (String) — 表名。
  • format (String) — 格式名称。
  • first_update (DateTime64(6)) — 首次插入时间,精确到微秒。
  • total_bytes (UInt64) — 队列中等待的数据总字节数。
  • entries.query_id (Array(String)) — 队列中等待的各插入查询的查询 ID 数组。
  • entries.bytes (Array(UInt64)) — 队列中等待的每个插入查询对应的字节数数组。

示例

查询:

SELECT * FROM system.asynchronous_inserts LIMIT 1 \G;

结果:

Row 1:
──────
query:            INSERT INTO public.data_guess (user_id, datasource_id, timestamp, path, type, num, str) FORMAT CSV
database:         public
table:            data_guess
format:           CSV
first_update:     2023-06-08 10:08:54.199606
total_bytes:      133223
entries.query_id: ['b46cd4c4-0269-4d0b-99f5-d27668c6102e']
entries.bytes:    [133223]

另请参阅