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

system.user_processes

在 ClickHouse Cloud 中进行查询

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

此系统表可用于查看用户的内存使用情况和 ProfileEvents 信息。

列:

  • user (String) — 用户名。
  • memory_usage (Int64) — 该用户所有进程所使用内存(RAM)的总量。可能不包含某些类型的专用内存。参见 max_memory_usage 设置。
  • peak_memory_usage (Int64) — 该用户内存使用的峰值。当该用户没有正在运行的查询时,可能会被重置。
  • ProfileEvents (Map(String, UInt64)) — 用于该用户各类指标的 ProfileEvents 汇总信息。其说明可在 system.events 表中找到。
SELECT * FROM system.user_processes LIMIT 10 FORMAT Vertical;
第 1 行:
──────
user:              default
memory_usage:      9832
peak_memory_usage: 9832
ProfileEvents:     {'Query':5,'SelectQuery':5,'QueriesWithSubqueries':38,'SelectQueriesWithSubqueries':38,'QueryTimeMicroseconds':842048,'SelectQueryTimeMicroseconds':842048,'ReadBufferFromFileDescriptorRead':6,'ReadBufferFromFileDescriptorReadBytes':234,'IOBufferAllocs':3,'IOBufferAllocBytes':98493,'ArenaAllocChunks':283,'ArenaAllocBytes':1482752,'FunctionExecute':670,'TableFunctionExecute':16,'DiskReadElapsedMicroseconds':19,'NetworkSendElapsedMicroseconds':684,'NetworkSendBytes':139498,'SelectedRows':6076,'SelectedBytes':685802,'ContextLock':1140,'RWLockAcquiredReadLocks':193,'RWLockReadersWaitMilliseconds':4,'RealTimeMicroseconds':1585163,'UserTimeMicroseconds':889767,'SystemTimeMicroseconds':13630,'SoftPageFaults':1947,'OSCPUWaitMicroseconds':6,'OSCPUVirtualTimeMicroseconds':903251,'OSReadChars':28631,'OSWriteChars':28888,'QueryProfilerRuns':3,'LogTrace':79,'LogDebug':24}

结果集包含 1 行。用时:0.010 秒。