跳至主要内容

asynchronous_inserts

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

  • query (字符串) — 查询字符串。
  • database (字符串) — 表所在的数据库的名称。
  • table (字符串) — 表名。
  • format (字符串) — 格式名称。
  • first_update (DateTime64) — 第一次插入时间,以微秒分辨率表示。
  • total_bytes (UInt64) — 队列中等待的字节总数。
  • entries.query_id (Array(字符串)) - 队列中等待的插入操作的查询 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]

另请参阅