跳转到主要内容
在 ClickHouse Cloud 中查询此系统表中的数据分别保存在 ClickHouse Cloud 各节点的本地。因此,如需查看所有数据的完整情况,需要使用 clusterAllReplicas 函数。更多详情请参见此处

描述

包含来自表 system.metricssystem.events 的指标值的历史记录,并定期写入磁盘。

  • hostname (LowCardinality(String)) — 执行该查询的服务器主机名。
  • event_date (Date) — 事件日期。
  • event_time (DateTime) — 事件时间。
  • event_time_microseconds (DateTime64(6)) — 精确到微秒的事件时间。
  • ProfileEvent_Query (UInt64) — 将被解析并可能执行的查询数。不包括解析失败的查询,也不包括因 AST 大小限制、QUOTA 限制或同时运行的查询数量限制而被拒绝的查询。可能包括由 ClickHouse 自身发起的内部查询。不统计子查询。
  • ProfileEvent_SelectQuery (UInt64) — 与 Query 相同,但仅统计 SELECT 查询。
  • ProfileEvent_InsertQuery (UInt64) — 与 Query 相同,但仅统计 INSERT 查询。
  • ProfileEvent_InitialQuery (UInt64) — 与 Query 相同,但仅统计初始查询 (参见 is_initial_query) 。
  • ProfileEvent_InitialSelectQuery (UInt64) — 与 InitialQuery 相同,但仅统计 SELECT 查询。
  • ProfileEvent_QueriesWithSubqueries (UInt64) — 统计包含其所有子查询在内的查询数
  • ProfileEvent_SelectQueriesWithSubqueries (UInt64) — 统计包含其所有子查询在内的 SELECT 查询数
  • ProfileEvent_InsertQueriesWithSubqueries (UInt64) — 统计包含其所有子查询在内的 INSERT 查询数
  • ProfileEvent_SelectQueriesWithPrimaryKeyUsage (UInt64) — 统计使用主键来评估 WHERE 条件的 SELECT 查询数
  • ProfileEvent_AsyncInsertQuery (UInt64) — 与 InsertQuery 相同,但仅统计异步 INSERT 查询。
  • ProfileEvent_AsyncInsertBytes (UInt64) — 异步 INSERT 查询的数据大小 (字节) 。
  • ProfileEvent_AsyncInsertRows (UInt64) — 通过异步 INSERT 查询插入的行数。
  • ProfileEvent_AsyncInsertCacheHits (UInt64) — 在异步 INSERT 哈希 ID 缓存中发现重复哈希 ID 的次数。
  • ProfileEvent_FailedInternalQuery (UInt64) — 失败的内部查询数。
  • ProfileEvent_FailedInternalSelectQuery (UInt64) — 与 FailedInternalQuery 相同,但仅统计 SELECT 查询。
  • ProfileEvent_FailedInternalInsertQuery (UInt64) — 与 FailedInternalQuery 相同,但仅统计 INSERT 查询。
  • ProfileEvent_FailedInitialQuery (UInt64) — 失败的初始查询数。
  • ProfileEvent_FailedInitialSelectQuery (UInt64) — 与 FailedInitialQuery 相同,但仅统计 SELECT 查询。
  • ProfileEvent_FailedQuery (UInt64) — 失败查询总数,包括内部查询和用户查询。
  • ProfileEvent_FailedSelectQuery (UInt64) — 与 FailedQuery 相同,但仅统计 SELECT 查询。
  • ProfileEvent_FailedInsertQuery (UInt64) — 与 FailedQuery 相同,但仅统计 INSERT 查询。
  • ProfileEvent_FailedAsyncInsertQuery (UInt64) — 失败的 ASYNC INSERT 查询数。
  • ProfileEvent_ASTFuzzerQueries (UInt64) — 服务器端 AST fuzzer 尝试执行的模糊查询数。
  • ProfileEvent_QueryTimeMicroseconds (UInt64) — 所有查询的总耗时。
  • ProfileEvent_SelectQueryTimeMicroseconds (UInt64) — SELECT 查询的总耗时。
  • ProfileEvent_InsertQueryTimeMicroseconds (UInt64) — INSERT 查询的总耗时。
  • ProfileEvent_OtherQueryTimeMicroseconds (UInt64) — 非 SELECT 或 INSERT 查询的总耗时。
  • ProfileEvent_FileOpen (UInt64) — 打开的文件数。
  • ProfileEvent_Seek (UInt64) — 调用 ‘lseek’ 函数的次数。
  • ProfileEvent_ReadBufferFromFileDescriptorRead (UInt64) — 从文件描述符读取 (read/pread) 的次数。不包括套接字。
  • ProfileEvent_ReadBufferFromFileDescriptorReadFailed (UInt64) — 从文件描述符读取 (read/pread) 失败的次数。
  • ProfileEvent_ReadBufferFromFileDescriptorReadBytes (UInt64) — 从文件描述符读取的字节数。如果文件已压缩,这里显示的是压缩后的数据大小。
  • ProfileEvent_WriteBufferFromFileDescriptorWrite (UInt64) — 向文件描述符写入 (write/pwrite) 的次数。不包括套接字。
  • ProfileEvent_WriteBufferFromFileDescriptorWriteFailed (UInt64) — 向文件描述符写入 (write/pwrite) 失败的次数。
  • ProfileEvent_WriteBufferFromFileDescriptorWriteBytes (UInt64) — 写入文件描述符的字节数。如果文件已压缩,这里显示的是压缩后的数据大小。
  • ProfileEvent_FileSync (UInt64) — 对文件调用 F_FULLFSYNC/fsync/fdatasync 函数的次数。
  • ProfileEvent_DirectorySync (UInt64) — 对目录调用 F_FULLFSYNC/fsync/fdatasync 函数的次数。
  • ProfileEvent_FileSyncElapsedMicroseconds (UInt64) — 等待文件执行 F_FULLFSYNC/fsync/fdatasync 系统调用的总时间。
  • ProfileEvent_DirectorySyncElapsedMicroseconds (UInt64) — 等待目录执行 F_FULLFSYNC/fsync/fdatasync 系统调用的总时间。
  • ProfileEvent_ReadCompressedBytes (UInt64) — 从压缩源 (文件、网络) 读取的字节数 (解压前的字节数) 。
  • ProfileEvent_CompressedReadBufferBlocks (UInt64) — 从压缩源 (文件、网络) 读取的压缩块数 (彼此独立压缩的数据块) 。
  • ProfileEvent_CompressedReadBufferBytes (UInt64) — 从压缩源 (文件、网络) 读取的未压缩字节数 (解压后的字节数) 。
  • ProfileEvent_CompressedReadBufferChecksumDoesntMatch (UInt64) — 压缩块校验和不匹配的次数。
  • ProfileEvent_CompressedReadBufferChecksumDoesntMatchSingleBitMismatch (UInt64) — 由于单比特差异导致压缩块校验和不匹配的次数。
  • ProfileEvent_CompressedReadBufferChecksumDoesntMatchMicroseconds (UInt64) — 因压缩块校验和不匹配而检测位翻转所花费的总时间。
  • ProfileEvent_UncompressedCacheHits (UInt64) — 在未压缩缓存中找到数据块 (从而避免了解压) 的次数。
  • ProfileEvent_UncompressedCacheMisses (UInt64) — 在未压缩缓存中未找到数据块 (因此需要解压) 的次数。
  • ProfileEvent_UncompressedCacheWeightLost (UInt64) — 从未压缩缓存中逐出的字节数。
  • ProfileEvent_PageCacheHits (UInt64) — 在用户态页缓存中找到数据块的次数。
  • ProfileEvent_PageCacheMisses (UInt64) — 在用户态页缓存中未找到数据块的次数。
  • ProfileEvent_PageCacheWeightLost (UInt64) — 从用户态页缓存中逐出的字节数
  • ProfileEvent_PageCacheResized (UInt64) — 用户态页缓存自动调整大小的次数 (通常每秒会发生几次,由 memory_worker_period_ms 控制) 。
  • ProfileEvent_PageCacheOvercommitResize (UInt64) — 在内存分配期间,为释放内存而自动调整用户态页缓存大小的次数。
  • ProfileEvent_PageCacheReadBytes (UInt64) — 从用户态页缓存中读取的字节数。
  • ProfileEvent_MMappedFileCacheHits (UInt64) — 在 MMap 缓存中找到文件的次数 (针对 ‘mmap’ read_method) ,因此无需再次对其执行 mmap。
  • ProfileEvent_MMappedFileCacheMisses (UInt64) — 在 MMap 缓存中未找到文件的次数 (针对 ‘mmap’ read_method) ,因此必须再次对其执行 mmap。
  • ProfileEvent_OpenedFileCacheHits (UInt64) — 在已打开的文件缓存中找到文件的次数,因此无需再次打开它。
  • ProfileEvent_OpenedFileCacheMisses (UInt64) — 在已打开的文件缓存中未找到文件的次数,因此必须再次打开它。
  • ProfileEvent_OpenedFileCacheMicroseconds (UInt64) — 执行 OpenedFileCache 方法所花费的时间。
  • ProfileEvent_AIOWrite (UInt64) — 使用 Linux 或 FreeBSD AIO interface 进行写入的次数
  • ProfileEvent_AIOWriteBytes (UInt64) — 使用 Linux 或 FreeBSD AIO interface 写入的字节数
  • ProfileEvent_AIORead (UInt64) — 使用 Linux 或 FreeBSD AIO interface 进行读取的次数
  • ProfileEvent_AIOReadBytes (UInt64) — 使用 Linux 或 FreeBSD AIO interface 读取的字节数
  • ProfileEvent_IOBufferAllocs (UInt64) — IO 缓冲区 (用于 ReadBuffer/WriteBuffer) 的分配次数。
  • ProfileEvent_IOBufferAllocBytes (UInt64) — 为 IO 缓冲区 (用于 ReadBuffer/WriteBuffer) 分配的字节数。
  • ProfileEvent_ArenaAllocChunks (UInt64) — 为内存 Arena 分配的块数 (用于 GROUP BY 及类似操作)
  • ProfileEvent_ArenaAllocBytes (UInt64) — 为内存 Arena 分配的字节数 (用于 GROUP BY 及类似操作)
  • ProfileEvent_FunctionExecute (UInt64) — SQL 普通函数调用的次数 (SQL 函数按块调用,因此该数字表示块数) 。
  • ProfileEvent_TableFunctionExecute (UInt64) — 表函数调用的次数。
  • ProfileEvent_DefaultImplementationForNullsRows (UInt64) — 在函数执行中,由用于处理 NULL 值的默认实现处理的行数
  • ProfileEvent_DefaultImplementationForNullsRowsWithNulls (UInt64) — 在函数执行中,由用于处理 NULL 值的默认实现处理的、包含 NULL 值的行数
  • ProfileEvent_MarkCacheHits (UInt64) — 在标记缓存中命中条目的次数,因此无需加载标记文件。
  • ProfileEvent_MarkCacheMisses (UInt64) — 在标记缓存中未命中条目的次数,因此必须将标记文件加载到内存中;这是开销较高的操作,会增加查询延迟。
  • ProfileEvent_PrimaryIndexCacheHits (UInt64) — 在主索引缓存中命中条目的次数,因此无需加载索引文件。
  • ProfileEvent_PrimaryIndexCacheMisses (UInt64) — 在主索引缓存中未命中条目的次数,因此必须将索引文件加载到内存中;这是开销较高的操作,会增加查询延迟。
  • ProfileEvent_IcebergMetadataFilesCacheHits (UInt64) — 在缓存中命中 Iceberg 元数据文件的次数。
  • ProfileEvent_IcebergMetadataFilesCacheMisses (UInt64) — 在 Iceberg 元数据缓存中未命中 Iceberg 元数据文件,因此必须从 (远程) 磁盘读取的次数。
  • ProfileEvent_IcebergMetadataFilesCacheStaleMisses (UInt64) — 在缓存中找到了 Iceberg 元数据文件,但被视为已过期,因此必须从 (远程) 磁盘重新读取的次数。
  • ProfileEvent_IcebergMetadataFilesCacheWeightLost (UInt64) — 从 Iceberg 元数据缓存中被淘汰的近似字节数。
  • ProfileEvent_IcebergMetadataReadWaitTimeMicroseconds (UInt64) — 数据读取器等待 Iceberg 元数据文件被读取并解析所花费的总时间,按所有读取器线程累加。
  • ProfileEvent_ParquetMetadataCacheHits (UInt64) — 在缓存中命中 Parquet 元数据的次数。
  • ProfileEvent_ParquetMetadataCacheMisses (UInt64) — 在缓存中未命中 Parquet 元数据,因此必须从磁盘读取的次数。
  • ProfileEvent_ParquetMetadataCacheWeightLost (UInt64) — 从 Parquet 元数据缓存中被淘汰的近似字节数。
  • ProfileEvent_IcebergIteratorInitializationMicroseconds (UInt64) — 同步初始化 Iceberg 数据迭代器所花费的总时间。
  • ProfileEvent_IcebergMetadataUpdateMicroseconds (UInt64) — 同步初始化 Iceberg 数据迭代器所花费的总时间。
  • ProfileEvent_IcebergMetadataReturnedObjectInfos (UInt64) — Iceberg 迭代器返回的对象信息总数。
  • ProfileEvent_IcebergMinMaxNonPrunedDeleteFiles (UInt64) — 在按分区和序列号筛选后符合条件的配对中,经 minmax 分析接受的数据文件-位置删除文件对总数。
  • ProfileEvent_IcebergMinMaxPrunedDeleteFiles (UInt64) — 在按分区和序列号筛选后符合条件的配对中,经 minmax 分析接受的数据文件-位置删除文件对总数。
  • ProfileEvent_VectorSimilarityIndexCacheHits (UInt64) — 在向量索引缓存中命中索引粒度的次数。
  • ProfileEvent_VectorSimilarityIndexCacheMisses (UInt64) — 在向量索引缓存中未命中索引粒度,因此必须从磁盘读取的次数。
  • ProfileEvent_VectorSimilarityIndexCacheWeightLost (UInt64) — 从向量索引缓存中被淘汰的近似字节数。
  • ProfileEvent_TextIndexReadDictionaryBlocks (UInt64) — 从磁盘读取文本索引字典块的次数。
  • ProfileEvent_TextIndexTokensCacheHits (UInt64) — 在缓存中命中文本索引标记信息的次数。
  • ProfileEvent_TextIndexTokensCacheMisses (UInt64) — 在缓存中未命中文本索引标记信息的次数。
  • ProfileEvent_TextIndexHeaderCacheHits (UInt64) — 在缓存中找到头部的次数。
  • ProfileEvent_TextIndexHeaderCacheMisses (UInt64) — 在缓存中未找到头部的次数。
  • ProfileEvent_TextIndexPostingsCacheHits (UInt64) — 在缓存中找到文本索引倒排列表的次数。
  • ProfileEvent_TextIndexPostingsCacheMisses (UInt64) — 在缓存中未找到文本索引倒排列表的次数。
  • ProfileEvent_TextIndexReadSparseIndexBlocks (UInt64) — 从文本索引中读取稀疏索引块的次数。
  • ProfileEvent_TextIndexReaderTotalMicroseconds (UInt64) — 读取文本索引花费的总时间。
  • ProfileEvent_TextIndexReadGranulesMicroseconds (UInt64) — 读取并分析文本索引粒度花费的总时间。
  • ProfileEvent_TextIndexReadPostings (UInt64) — 从文本索引中读取倒排列表的次数。
  • ProfileEvent_TextIndexUsedEmbeddedPostings (UInt64) — 使用嵌入字典中的倒排列表的次数。
  • ProfileEvent_TextIndexUseHint (UInt64) — 在索引粒度中,将从文本索引直接读取添加为提示且实际使用的次数。
  • ProfileEvent_TextIndexDiscardHint (UInt64) — 在索引粒度中,将从文本索引直接读取添加为提示但因选择性低而被丢弃的次数。
  • ProfileEvent_TextIndexDiscardPatternScan (UInt64) — 在文本索引中,基于模式的字典扫描因待读取的倒排列表数量超过阈值而被丢弃的次数。
  • ProfileEvent_QueryConditionCacheHits (UInt64) — 在查询条件缓存中找到条目的次数 (因此可跳过读取标记) 。仅对设置了 SETTING use_query_condition_cache = 1 的 SELECT 查询更新。
  • ProfileEvent_QueryConditionCacheMisses (UInt64) — 在查询条件缓存中未找到条目的次数 (因此无法跳过读取标记) 。仅对设置了 SETTING use_query_condition_cache = 1 的 SELECT 查询更新。
  • ProfileEvent_QueryCacheHits (UInt64) — 在查询缓存中找到查询结果的次数 (因此避免了查询计算) 。仅对设置了 SETTING use_query_cache = 1 的 SELECT 查询更新。
  • ProfileEvent_QueryCacheMisses (UInt64) — 在查询缓存中未找到查询结果的次数 (因此需要执行查询计算) 。仅对设置了 SETTING use_query_cache = 1 的 SELECT 查询更新。
  • ProfileEvent_QueryCacheAgeSeconds (UInt64) — 查询缓存中已找到缓存条目的总存活时间 (单位为秒) 。命中和未命中时都会设置该值。
  • ProfileEvent_QueryCacheReadRows (UInt64) — 从查询缓存中读取的行数。
  • ProfileEvent_QueryCacheReadBytes (UInt64) — 从查询缓存中读取的 (未压缩) 字节数。
  • ProfileEvent_QueryCacheWrittenRows (UInt64) — 写入查询缓存的行数。
  • ProfileEvent_QueryCacheWrittenBytes (UInt64) — 写入查询缓存的 (未压缩) 字节数
  • ProfileEvent_CreatedReadBufferOrdinary (UInt64) — 为读取数据而创建普通读取缓冲区的次数 (在与其他读取方法进行选择时) 。
  • ProfileEvent_CreatedReadBufferDirectIO (UInt64) — 为读取数据而创建带 O_DIRECT 的读取缓冲区的次数 (在与其他读取方法进行选择时) 。
  • ProfileEvent_CreatedReadBufferDirectIOFailed (UInt64) — 尝试创建使用 O_DIRECT 的读取缓冲区来读取数据 (在多种读取方式中进行选择时) 的次数,但操作系统不允许这样做 (由于文件系统不支持或其他原因) ,因此回退到普通读取方式。
  • ProfileEvent_CreatedReadBufferMMap (UInt64) — 创建使用 ‘mmap’ 的读取缓冲区来读取数据的次数 (在多种读取方式中进行选择时) 。
  • ProfileEvent_CreatedReadBufferMMapFailed (UInt64) — 尝试创建使用 ‘mmap’ 的读取缓冲区来读取数据 (在多种读取方式中进行选择时) 的次数,但操作系统不允许这样做 (由于文件系统不支持或其他原因) ,因此回退到普通读取方式。
  • ProfileEvent_DiskReadElapsedMicroseconds (UInt64) — 等待读取 syscall 所花费的总时间。这包括从 page cache 中读取的时间。
  • ProfileEvent_DiskWriteElapsedMicroseconds (UInt64) — 等待写入 syscall 所花费的总时间。这包括写入 page cache 的时间。
  • ProfileEvent_NetworkReceiveElapsedMicroseconds (UInt64) — 等待接收数据或从网络接收数据所花费的总时间。仅包括与 ClickHouse 相关的网络交互,不包括 3rd party libraries。
  • ProfileEvent_NetworkSendElapsedMicroseconds (UInt64) — 等待将数据发送到网络或向网络发送数据所花费的总时间。仅包括与 ClickHouse 相关的网络交互,不包括 3rd party libraries。
  • ProfileEvent_NetworkReceiveBytes (UInt64) — 从网络接收的总字节数。仅包括与 ClickHouse 相关的网络交互,不包括 3rd party libraries。
  • ProfileEvent_NetworkSendBytes (UInt64) — 发送到网络的总字节数。仅包括与 ClickHouse 相关的网络交互,不包括 3rd party libraries。
  • ProfileEvent_FilterPartsByVirtualColumnsMicroseconds (UInt64) — 在 filterPartsByVirtualColumns 函数中花费的总时间。
  • ProfileEvent_GlobalThreadPoolExpansions (UInt64) — 统计全局线程池新增线程的总次数。该指标反映了全局线程池为满足更高处理需求而扩容的频率。
  • ProfileEvent_GlobalThreadPoolShrinks (UInt64) — 统计全局线程池通过移除线程而收缩的总次数。当空闲线程数量超过 max_thread_pool_free_size 时会发生这种情况,表明全局线程池的大小会随着线程利用率下降而调整。
  • ProfileEvent_GlobalThreadPoolThreadCreationMicroseconds (UInt64) — 等待新线程启动所花费的总时间。
  • ProfileEvent_GlobalThreadPoolLockWaitMicroseconds (UInt64) — 线程在全局线程池中等待锁所花费的总时间。
  • ProfileEvent_GlobalThreadPoolJobs (UInt64) — 统计已推送到全局线程池的作业数量。
  • ProfileEvent_GlobalThreadPoolJobWaitTimeMicroseconds (UInt64) — 衡量作业在线程池中被调度后,到被工作线程取走执行之间的耗时。该指标有助于识别作业处理延迟,反映线程池对新任务的响应能力。
  • ProfileEvent_LocalThreadPoolExpansions (UInt64) — 统计从全局线程池借用线程以扩展本地线程池的总次数。
  • ProfileEvent_LocalThreadPoolShrinks (UInt64) — 统计线程从本地线程池归还到全局线程池的总次数。
  • ProfileEvent_LocalThreadPoolThreadCreationMicroseconds (UInt64) — 本地线程池等待从全局池借用线程所花费的总时间。
  • ProfileEvent_LocalThreadPoolLockWaitMicroseconds (UInt64) — 线程在本地线程池中等待锁的总时间。
  • ProfileEvent_LocalThreadPoolJobs (UInt64) — 推送到本地线程池的作业数量。
  • ProfileEvent_LocalThreadPoolBusyMicroseconds (UInt64) — 线程执行实际工作的总时间。
  • ProfileEvent_LocalThreadPoolJobWaitTimeMicroseconds (UInt64) — 衡量作业在线程池中被调度后,到被工作线程取出执行之间的耗时。该指标有助于识别作业处理延迟,反映线程池对新任务的响应能力。
  • ProfileEvent_DiskS3GetRequestThrottlerCount (UInt64) — 经过限流器的 DiskS3 GET 和 SELECT 请求数量:包括被阻塞和未被阻塞的请求。
  • ProfileEvent_DiskS3GetRequestThrottlerBlocked (UInt64) — 被限流器阻塞的 DiskS3 GET 和 SELECT 请求数量。
  • ProfileEvent_DiskS3GetRequestThrottlerSleepMicroseconds (UInt64) — 查询为满足 DiskS3 GET 和 SELECT 请求限流而休眠的总时间。
  • ProfileEvent_DiskS3PutRequestThrottlerCount (UInt64) — 经过限流器的 DiskS3 PUT、COPY、POST 和 LIST 请求数量:包括被阻塞和未被阻塞的请求。
  • ProfileEvent_DiskS3PutRequestThrottlerBlocked (UInt64) — 被限流器阻塞的 DiskS3 PUT、COPY、POST 和 LIST 请求数量。
  • ProfileEvent_DiskS3PutRequestThrottlerSleepMicroseconds (UInt64) — 查询为满足 DiskS3 PUT、COPY、POST 和 LIST 请求限流而休眠的总时间。
  • ProfileEvent_S3GetRequestThrottlerCount (UInt64) — 经过限流器的 S3 GET 和 SELECT 请求数量:包括被阻塞和未被阻塞的请求。
  • ProfileEvent_S3GetRequestThrottlerBlocked (UInt64) — 被限流器阻塞的 S3 GET 和 SELECT 请求数量。
  • ProfileEvent_S3GetRequestThrottlerSleepMicroseconds (UInt64) — 查询为满足 S3 GET 和 SELECT 请求限流而休眠的总时间。
  • ProfileEvent_S3PutRequestThrottlerCount (UInt64) — 经过限流器的 S3 PUT、COPY、POST 和 LIST 请求数量:包括被阻塞和未被阻塞的请求。
  • ProfileEvent_S3PutRequestThrottlerBlocked (UInt64) — 被限流器阻塞的 S3 PUT、COPY、POST 和 LIST 请求数量。
  • ProfileEvent_S3PutRequestThrottlerSleepMicroseconds (UInt64) — 查询为满足 S3 PUT、COPY、POST 和 LIST 请求限流而休眠的总时间。
  • ProfileEvent_ACMEAPIRequests (UInt64) — 发起的 ACME API 请求数量。
  • ProfileEvent_ACMECertificateOrders (UInt64) — 发起的 ACME 证书订单数量。
  • ProfileEvent_DiskAzureReadMicroseconds (UInt64) — 等待 Azure 磁盘读取请求的总时间。
  • ProfileEvent_DiskAzureReadRequestsCount (UInt64) — Azure 磁盘读取请求数量。
  • ProfileEvent_DiskAzureReadRequestsErrors (UInt64) — Azure 磁盘读取请求出错次数。
  • ProfileEvent_DiskAzureReadRequestsThrottling (UInt64) — 被限流的 Azure 磁盘读取请求数量。
  • ProfileEvent_DiskAzureReadRequestsRedirects (UInt64) — Azure 磁盘读取请求的重定向次数。
  • ProfileEvent_DiskAzureWriteMicroseconds (UInt64) — 等待 Azure 磁盘写入请求的总时间。
  • ProfileEvent_DiskAzureWriteRequestsCount (UInt64) — Azure 磁盘写入请求数量。
  • ProfileEvent_DiskAzureWriteRequestsErrors (UInt64) — Azure 磁盘写入请求错误数量。
  • ProfileEvent_DiskAzureWriteRequestsThrottling (UInt64) — 被限流的 Azure 磁盘写入请求数量。
  • ProfileEvent_DiskAzureWriteRequestsRedirects (UInt64) — Azure 磁盘写入请求重定向数量。
  • ProfileEvent_AzureReadMicroseconds (UInt64) — 等待 Azure 读取请求所花费的总时间。
  • ProfileEvent_AzureReadRequestsCount (UInt64) — Azure 读取请求数量。
  • ProfileEvent_AzureReadRequestsErrors (UInt64) — Azure 读取请求错误数量。
  • ProfileEvent_AzureReadRequestsThrottling (UInt64) — 被限流的 Azure 读取请求数量。
  • ProfileEvent_AzureReadRequestsRedirects (UInt64) — Azure 读取请求重定向数量。
  • ProfileEvent_AzureWriteMicroseconds (UInt64) — 等待 Azure 写入请求所花费的总时间。
  • ProfileEvent_AzureWriteRequestsCount (UInt64) — Azure 写入请求数量。
  • ProfileEvent_AzureWriteRequestsErrors (UInt64) — Azure 写入请求错误数量。
  • ProfileEvent_AzureWriteRequestsThrottling (UInt64) — 被限流的 Azure 写入请求数量。
  • ProfileEvent_AzureWriteRequestsRedirects (UInt64) — Azure 写入请求重定向数量。
  • ProfileEvent_AzureGetRequestThrottlerCount (UInt64) — 经过限流器的 Azure GET 请求数量:包括被阻止和未被阻止的请求。
  • ProfileEvent_AzureGetRequestThrottlerBlocked (UInt64) — 被限流器阻止的 Azure GET 请求数量。
  • ProfileEvent_AzureGetRequestThrottlerSleepMicroseconds (UInt64) — 查询为符合 Azure GET 请求限流要求而休眠的总时间。
  • ProfileEvent_DiskAzureGetRequestThrottlerCount (UInt64) — 经过限流器的 Azure 磁盘 GET 请求数量:包括被阻止和未被阻止的请求。
  • ProfileEvent_DiskAzureGetRequestThrottlerBlocked (UInt64) — 被限流器阻止的 Azure 磁盘 GET 请求数量。
  • ProfileEvent_DiskAzureGetRequestThrottlerSleepMicroseconds (UInt64) — 查询为符合 Azure 磁盘 GET 请求限流要求而休眠的总时间。
  • ProfileEvent_AzurePutRequestThrottlerCount (UInt64) — 经过限流器的 Azure PUT 请求数量:包括被阻止和未被阻止的请求。
  • ProfileEvent_AzurePutRequestThrottlerBlocked (UInt64) — 被限流器阻止的 Azure PUT 请求数量。
  • ProfileEvent_AzurePutRequestThrottlerSleepMicroseconds (UInt64) — 查询为符合 Azure PUT 请求限流要求而休眠的总时间。
  • ProfileEvent_DiskAzurePutRequestThrottlerCount (UInt64) — 经过限流器的 Azure 磁盘 PUT 请求数量:包括被阻止和未被阻止的请求。
  • ProfileEvent_DiskAzurePutRequestThrottlerBlocked (UInt64) — 被限流器阻止的 Azure 磁盘 PUT 请求数量。
  • ProfileEvent_DiskAzurePutRequestThrottlerSleepMicroseconds (UInt64) — 查询为遵守 Azure 磁盘 PUT 请求限流而休眠的总时间。
  • ProfileEvent_RemoteReadThrottlerBytes (UInt64) — 通过 ‘max_remote_read_network_bandwidth_for_server’/‘max_remote_read_network_bandwidth’ 限流器的字节数。
  • ProfileEvent_RemoteReadThrottlerSleepMicroseconds (UInt64) — 查询为遵守 ‘max_remote_read_network_bandwidth_for_server’/‘max_remote_read_network_bandwidth’ 限流而休眠的总时间。
  • ProfileEvent_RemoteWriteThrottlerBytes (UInt64) — 通过 ‘max_remote_write_network_bandwidth_for_server’/‘max_remote_write_network_bandwidth’ 限流器的字节数。
  • ProfileEvent_RemoteWriteThrottlerSleepMicroseconds (UInt64) — 查询为遵守 ‘max_remote_write_network_bandwidth_for_server’/‘max_remote_write_network_bandwidth’ 限流而休眠的总时间。
  • ProfileEvent_LocalReadThrottlerBytes (UInt64) — 通过 ‘max_local_read_bandwidth_for_server’/‘max_local_read_bandwidth’ 限流器的字节数。
  • ProfileEvent_LocalReadThrottlerSleepMicroseconds (UInt64) — 查询为遵守 ‘max_local_read_bandwidth_for_server’/‘max_local_read_bandwidth’ 限流而休眠的总时间。
  • ProfileEvent_LocalWriteThrottlerBytes (UInt64) — 通过 ‘max_local_write_bandwidth_for_server’/‘max_local_write_bandwidth’ 限流器的字节数。
  • ProfileEvent_LocalWriteThrottlerSleepMicroseconds (UInt64) — 查询为遵守 ‘max_local_write_bandwidth_for_server’/‘max_local_write_bandwidth’ 限流而休眠的总时间。
  • ProfileEvent_BackupThrottlerBytes (UInt64) — 通过 ‘max_backup_bandwidth_for_server’ 限流器的字节数。
  • ProfileEvent_BackupThrottlerSleepMicroseconds (UInt64) — 查询为遵守 ‘max_backup_bandwidth_for_server’ 限流而休眠的总时间。
  • ProfileEvent_MergesThrottlerBytes (UInt64) — 通过 ‘max_merges_bandwidth_for_server’ 限流器的字节数。
  • ProfileEvent_MergesThrottlerSleepMicroseconds (UInt64) — 查询为遵守 ‘max_merges_bandwidth_for_server’ 限流而休眠的总时间。
  • ProfileEvent_MutationsThrottlerBytes (UInt64) — 通过 ‘max_mutations_bandwidth_for_server’ 限流器的字节数。
  • ProfileEvent_MutationsThrottlerSleepMicroseconds (UInt64) — 查询为符合 ‘max_mutations_bandwidth_for_server’ 限流而休眠的总时间。
  • ProfileEvent_UserThrottlerBytes (UInt64) — 通过 ‘max_network_bandwidth_for_user’ 限流器的字节数。
  • ProfileEvent_UserThrottlerSleepMicroseconds (UInt64) — 查询为符合 ‘max_network_bandwidth_for_user’ 限流而休眠的总时间。
  • ProfileEvent_AllUsersThrottlerBytes (UInt64) — 通过 ‘max_network_bandwidth_for_all_users’ 限流器的字节数。
  • ProfileEvent_AllUsersThrottlerSleepMicroseconds (UInt64) — 查询为符合 ‘max_network_bandwidth_for_all_users’ 限流而休眠的总时间。
  • ProfileEvent_QueryRemoteReadThrottlerBytes (UInt64) — 通过 ‘max_remote_read_network_bandwidth’ 限流器的字节数。
  • ProfileEvent_QueryRemoteReadThrottlerSleepMicroseconds (UInt64) — 查询为符合 ‘max_remote_read_network_bandwidth’ 限流而休眠的总时间。
  • ProfileEvent_QueryRemoteWriteThrottlerBytes (UInt64) — 通过 ‘max_remote_write_network_bandwidth’ 限流器的字节数。
  • ProfileEvent_QueryRemoteWriteThrottlerSleepMicroseconds (UInt64) — 查询为符合 ‘max_remote_write_network_bandwidth’ 限流而休眠的总时间。
  • ProfileEvent_QueryLocalReadThrottlerBytes (UInt64) — 通过 ‘max_local_read_bandwidth’ 限流器的字节数。
  • ProfileEvent_QueryLocalReadThrottlerSleepMicroseconds (UInt64) — 查询为符合 ‘max_local_read_bandwidth’ 限流而休眠的总时间。
  • ProfileEvent_QueryLocalWriteThrottlerBytes (UInt64) — 通过 ‘max_local_write_bandwidth’ 限流器的字节数。
  • ProfileEvent_QueryLocalWriteThrottlerSleepMicroseconds (UInt64) — 查询为符合 ‘max_local_write_bandwidth’ 限流而休眠的总时间。
  • ProfileEvent_QueryBackupThrottlerBytes (UInt64) — 通过 ‘max_backup_bandwidth’ 限流器的字节数。
  • ProfileEvent_QueryBackupThrottlerSleepMicroseconds (UInt64) — 查询为符合 ‘max_backup_bandwidth’ 限流而休眠的总时间。
  • ProfileEvent_DistrCacheReadThrottlerBytes (UInt64) — 通过 ‘max_distributed_cache_read_bandwidth_for_server’ 限流器的字节数。
  • ProfileEvent_DistrCacheReadThrottlerSleepMicroseconds (UInt64) — 查询为符合 ‘max_distributed_cache_read_bandwidth_for_server’ 限流而休眠的总时间。
  • ProfileEvent_DistrCacheWriteThrottlerBytes (UInt64) — 通过 ‘max_distributed_cache_write_bandwidth_for_server’ 限流器的字节数。
  • ProfileEvent_DistrCacheWriteThrottlerSleepMicroseconds (UInt64) — 查询为满足 ‘max_distributed_cache_write_bandwidth_for_server’ 限流要求而休眠的总时间。
  • ProfileEvent_ThrottlerSleepMicroseconds (UInt64) — 查询为满足所有限流设置而休眠的总时间。
  • ProfileEvent_ReadTasksWithAppliedPatches (UInt64) — 应用了任意补丁分区片段的读取任务总数
  • ProfileEvent_PatchesAppliedInAllReadTasks (UInt64) — 所有读取任务中已应用的补丁分区片段总数
  • ProfileEvent_PatchesMergeAppliedInAllReadTasks (UInt64) — 所有读取任务中以 Merge 模式应用的补丁分区片段总数
  • ProfileEvent_PatchesJoinAppliedInAllReadTasks (UInt64) — 所有读取任务中以 Join 模式应用的补丁分区片段总数
  • ProfileEvent_PatchesReadRows (UInt64) — 从补丁分区片段中读取的行总数
  • ProfileEvent_PatchesReadUncompressedBytes (UInt64) — 从补丁分区片段中读取的未压缩字节总数
  • ProfileEvent_PatchesJoinRowsAddedToHashTable (UInt64) — 以 Join 模式应用补丁分区片段时添加到哈希表中的行总数
  • ProfileEvent_ApplyPatchesMicroseconds (UInt64) — 将补丁分区片段应用到块所花费的总时间
  • ProfileEvent_ReadPatchesMicroseconds (UInt64) — 读取补丁分区片段所花费的总时间
  • ProfileEvent_BuildPatchesMergeMicroseconds (UInt64) — 为以 Merge 模式应用补丁分区片段构建索引所花费的总时间
  • ProfileEvent_BuildPatchesJoinMicroseconds (UInt64) — 为以 Join 模式应用补丁分区片段构建索引和哈希表所花费的总时间
  • ProfileEvent_AnalyzePatchRangesMicroseconds (UInt64) — 分析补丁分区片段索引所花费的总时间
  • ProfileEvent_ReadTasksWithAppliedMutationsOnFly (UInt64) — 在读取时动态应用了任意变更的读取任务总数
  • ProfileEvent_MutationsAppliedOnFlyInAllReadTasks (UInt64) — 所有读取任务中在读取时动态应用的变更总数
  • ProfileEvent_PatchesAcquireLockTries (UInt64) — 执行轻量级更新时尝试获取锁的总次数
  • ProfileEvent_PatchesAcquireLockMicroseconds (UInt64) — 执行轻量级更新时获取锁所花费的总微秒数
  • ProfileEvent_DiskObjectStorageWaitBlobRemovalMicroseconds (UInt64) — 提交元数据事务后等待待删除 blob 被移除所花费的时间
  • ProfileEvent_SchedulerIOReadRequests (UInt64) — 通过 scheduler 的 IO 读取资源请求数。
  • ProfileEvent_SchedulerIOReadBytes (UInt64) — 通过 scheduler 的 IO 读取字节数。
  • ProfileEvent_SchedulerIOReadWaitMicroseconds (UInt64) — 查询等待 IO 读取资源请求的总时间。
  • ProfileEvent_SchedulerIOWriteRequests (UInt64) — 通过 scheduler 的 IO 写入资源请求数。
  • ProfileEvent_SchedulerIOWriteBytes (UInt64) — 通过 scheduler 的 IO 写入字节数。
  • ProfileEvent_SchedulerIOWriteWaitMicroseconds (UInt64) — 查询等待 IO 写入资源请求的总时间。
  • ProfileEvent_QueryMaskingRulesMatch (UInt64) — 查询掩码规则成功匹配的次数。
  • ProfileEvent_ReplicatedPartFetches (UInt64) — 从 ReplicatedMergeTree 表的副本拉取数据分区片段的次数。
  • ProfileEvent_ReplicatedPartFailedFetches (UInt64) — 从 ReplicatedMergeTree 表的副本拉取数据分区片段失败的次数。
  • ProfileEvent_ObsoleteReplicatedParts (UInt64) — 数据分区片段被另一个从副本拉取的数据分区片段覆盖的次数 (因此,我们会将被覆盖的数据分区片段标记为已废弃,不再需要) 。
  • ProfileEvent_ReplicatedPartMerges (UInt64) — ReplicatedMergeTree 表的数据分区片段成功合并的次数。
  • ProfileEvent_ReplicatedPartFetchesOfMerged (UInt64) — 我们选择从 ReplicatedMergeTree 表的副本拉取已合并分区片段、而不是自行执行合并的次数 (通常我们更倾向于自行合并以节省网络流量) 。这种情况会发生在我们没有全部源数据分区片段可用于执行合并,或者该数据分区片段已经足够旧时。
  • ProfileEvent_ReplicatedPartMutations (UInt64) — ReplicatedMergeTree 表的数据分区片段成功完成变更的次数。
  • ProfileEvent_ReplicatedPartChecks (UInt64) — 我们不得不在各副本上对某个数据分区片段执行高级搜索,或确认是否需要现有数据分区片段的次数。
  • ProfileEvent_ReplicatedPartChecksFailed (UInt64) — 在各副本上对某个数据分区片段执行高级搜索未得到结果,或发现异常分区片段并将其移走的次数。
  • ProfileEvent_ReplicatedDataLoss (UInt64) — 我们需要的数据分区片段在任何副本上都不存在的次数 (即使在当前离线的副本上也不存在) 。这些数据分区片段肯定已经丢失。这在异步复制场景下是正常的 (如果未启用 quorum 插入) :当写入该数据分区片段的副本发生故障,并在恢复上线后不再包含该数据分区片段时,就会出现这种情况。
  • ProfileEvent_ReplicatedCoveredPartsInZooKeeperOnStart (UInt64) — 用于调试。ZooKeeper 中存在覆盖分区片段、但磁盘上不存在的 parts 数量。在 server 启动时检查。
  • ProfileEvent_QuorumParts (UInt64) — 以 quorum 方式写入的数据分区片段数量。对于同步插入,计为一个 part;而对于会刷写异步插入的 insert,最多可能计为异步插入的次数。
  • ProfileEvent_QuorumWaitMicroseconds (UInt64) — inserts 期间等待 quorum 所花费的总时间。
  • ProfileEvent_QuorumFailedInserts (UInt64) — 因未达到 quorum 而失败的 inserts 次数。
  • ProfileEvent_InsertedRows (UInt64) — INSERT 到所有表中的行数。
  • ProfileEvent_InsertedBytes (UInt64) — INSERT 到所有表中的字节数 (未压缩;按列在内存中的存储形式计算) 。
  • ProfileEvent_DelayedInserts (UInt64) — 向 MergeTree 表 INSERT 一个块时,由于分区中活跃数据分区片段数量过多而被限流的次数。
  • ProfileEvent_RejectedInserts (UInt64) — 向 MergeTree 表 INSERT 一个块时,由于分区中活跃数据分区片段数量过多而被拒绝,并抛出 ‘parts 过多’ 异常的次数。
  • ProfileEvent_DelayedInsertsMilliseconds (UInt64) — 向 MergeTree 表 INSERT 一个块时,由于分区中活跃数据分区片段数量过多而被限流所花费的总毫秒数。
  • ProfileEvent_DelayedMutations (UInt64) — 因表中未完成的变更数量过多,MergeTree 表的变更被限流的次数。
  • ProfileEvent_RejectedMutations (UInt64) — 因表中未完成的变更数量过多,MergeTree 表的变更因 ‘Too many mutations’ 异常被拒绝的次数。
  • ProfileEvent_DelayedMutationsMilliseconds (UInt64) — 因表中未完成的变更数量过多,MergeTree 表的变更在被限流期间耗费的总毫秒数。
  • ProfileEvent_RejectedLightweightUpdates (UInt64) — 由于 patches 中未压缩字节数过多,轻量级更新被拒绝的次数。
  • ProfileEvent_DistributedDelayedInserts (UInt64) — 由于待处理字节数过多,向 Distributed 表 INSERT 一个块被限流的次数。
  • ProfileEvent_DistributedRejectedInserts (UInt64) — 由于待处理字节数过多,向 Distributed 表 INSERT 一个块因 ‘Too many bytes’ 异常被拒绝的次数。
  • ProfileEvent_DistributedDelayedInsertsMilliseconds (UInt64) — 由于待处理字节数过多,向 Distributed 表 INSERT 一个块在被限流期间耗费的总毫秒数。
  • ProfileEvent_DuplicatedInsertedBlocks (UInt64) — 向 *MergeTree 表执行的同步插入中,被去重的次数。
  • ProfileEvent_SelfDuplicatedAsyncInserts (UInt64) — 向 ReplicatedMergeTree 表 INSERT 的块中,发生自去重的异步插入次数。
  • ProfileEvent_DuplicatedAsyncInserts (UInt64) — 向 ReplicatedMergeTree 表 INSERT 的块中,被去重的异步插入次数。
  • ProfileEvent_DuplicationElapsedMicroseconds (UInt64) — 检查向 *MergeTree 表 INSERT 的块是否重复所耗费的总时间 (微秒) 。
  • ProfileEvent_ZooKeeperInit (UInt64) — 与 ZooKeeper 建立连接的次数。
  • ProfileEvent_ZooKeeperTransactions (UInt64) — ZooKeeper 操作的次数,包括读操作、写操作以及多事务。
  • ProfileEvent_ZooKeeperList (UInt64) — 向 ZooKeeper 发起 ‘list’ (getChildren) 请求的次数。
  • ProfileEvent_ZooKeeperListRecursive (UInt64) — 向 ZooKeeper 发起 ‘listRecursive’ 请求的次数。
  • ProfileEvent_ZooKeeperCreate (UInt64) — 向 ZooKeeper 发起 ‘create’ 请求的次数。
  • ProfileEvent_ZooKeeperRemove (UInt64) — 向 ZooKeeper 发起 ‘remove’ 请求的次数。
  • ProfileEvent_ZooKeeperExists (UInt64) — 向 ZooKeeper 发起 ‘exists’ 请求的次数。
  • ProfileEvent_ZooKeeperGet (UInt64) — 向 ZooKeeper 发起 ‘get’ 请求的次数。
  • ProfileEvent_ZooKeeperSet (UInt64) — 向 ZooKeeper 发起 ‘set’ 请求的次数。
  • ProfileEvent_ZooKeeperMulti (UInt64) — 向 ZooKeeper 发起 ‘multi’ 请求的次数 (复合事务) 。
  • ProfileEvent_ZooKeeperMultiRead (UInt64) — 向 ZooKeeper 发起只读 ‘multi’ 请求的次数 (复合事务) 。
  • ProfileEvent_ZooKeeperMultiWrite (UInt64) — 向 ZooKeeper 发起写入 ‘multi’ 请求的次数 (复合事务) 。
  • ProfileEvent_ZooKeeperCheck (UInt64) — 向 ZooKeeper 发起 ‘check’ 请求的次数。通常这类请求单独出现时没有意义,只有作为复杂事务的一部分时才有意义。
  • ProfileEvent_ZooKeeperSync (UInt64) — 向 ZooKeeper 发出的 sync 请求次数。这类请求通常很少需要,也很少会用到。
  • ProfileEvent_ZooKeeperReconfig (UInt64) — 向 ZooKeeper 发出的 reconfig 请求次数。
  • ProfileEvent_ZooKeeperClose (UInt64) — 与 ZooKeeper 的连接被主动关闭的次数。
  • ProfileEvent_ZooKeeperGetACL (UInt64) — 向 ZooKeeper 发出的 getACL 请求次数。
  • ProfileEvent_ZooKeeperWatchResponse (UInt64) — 从 ZooKeeper 收到 watch 通知的次数。
  • ProfileEvent_ZooKeeperUserExceptions (UInt64) — 使用 ZooKeeper 时与数据相关的异常次数 (如节点不存在、版本错误等) 。
  • ProfileEvent_ZooKeeperHardwareExceptions (UInt64) — 使用 ZooKeeper 时与网络相关的异常次数 (如连接丢失等) 。
  • ProfileEvent_ZooKeeperOtherExceptions (UInt64) — 使用 ZooKeeper 时,除 ZooKeeperUserExceptions 和 ZooKeeperHardwareExceptions 之外的其他异常次数。
  • ProfileEvent_ZooKeeperWaitMicroseconds (UInt64) — 创建请求后等待 ZooKeeper 响应所花费的总微秒数,对所有发起请求的线程求和。
  • ProfileEvent_ZooKeeperBytesSent (UInt64) — 与 ZooKeeper 通信时通过网络发送的字节数。
  • ProfileEvent_ZooKeeperBytesReceived (UInt64) — 与 ZooKeeper 通信时通过网络接收的字节数。
  • ProfileEvent_DistributedConnectionTries (UInt64) — 分布式连接尝试的总次数。
  • ProfileEvent_DistributedConnectionUsable (UInt64) — 成功连接到可用服务器的分布式连接总次数 (包含所需表,但状态可能已过期) 。
  • ProfileEvent_DistributedConnectionFailTry (UInt64) — 分布式连接失败并触发重试的总次数。
  • ProfileEvent_DistributedConnectionMissingTable (UInt64) — 在分布式查询中,由于某个副本不包含查询所需的表而被拒绝的次数。
  • ProfileEvent_DistributedConnectionStaleReplica (UInt64) — 在分布式查询中,由于查询所需的某个表的复制延迟高于配置阈值而拒绝某个副本的次数。
  • ProfileEvent_DistributedConnectionSkipReadOnlyReplica (UInt64) — 向 Distributed 表执行 INSERT 时,由于副本处于只读状态而被跳过的副本数。
  • ProfileEvent_DistributedConnectionFailAtAll (UInt64) — 分布式连接在所有重试结束后仍失败的总次数。
  • ProfileEvent_Shards (UInt64) — 查询中涉及的分片数量,对所有分布式表和表函数求和。如果同一个 host 出现在多个表中,则会被重复计数。该值统计的是预期分片总数,其中包括在 skip_unavailable_shards 设置下被跳过的分片。
  • ProfileEvent_HedgedRequestsChangeReplica (UInt64) — 对冲请求中,切换副本的 timeout 到期的总次数。
  • ProfileEvent_SuspendSendingQueryToShard (UInt64) — 启用 async_query_sending_for_remote 时,向分片发送查询被暂停的总次数。
  • ProfileEvent_CompileFunction (UInt64) — 启动生成的 LLVM 代码编译的次数 (用于为复杂表达式创建融合函数) 。
  • ProfileEvent_CompiledFunctionExecute (UInt64) — 已编译函数的执行次数。
  • ProfileEvent_CompileExpressionsMicroseconds (UInt64) — 将表达式编译为 LLVM 代码所花费的总时间。
  • ProfileEvent_CompileExpressionsBytes (UInt64) — 表达式编译所使用的字节数。
  • ProfileEvent_ExecuteShellCommand (UInt64) — shell 命令的执行次数。
  • ProfileEvent_ExternalProcessingCompressedBytesTotal (UInt64) — 外部处理 (排序/聚合/连接) 写入的压缩字节数
  • ProfileEvent_ExternalProcessingUncompressedBytesTotal (UInt64) — 外部处理 (排序/聚合/连接) 写入的数据量 (未压缩,即压缩前)
  • ProfileEvent_ExternalProcessingFilesTotal (UInt64) — 外部处理 (排序/聚合/连接) 使用的文件数
  • ProfileEvent_ExternalSortWritePart (UInt64) — 在外部内存中进行排序时,临时 File 写入磁盘的次数。
  • ProfileEvent_ExternalSortMerge (UInt64) — 在外部内存中进行排序时,临时 File 合并的次数。
  • ProfileEvent_ExternalSortCompressedBytes (UInt64) — 在外部内存中进行排序时写入的压缩字节数。
  • ProfileEvent_ExternalSortUncompressedBytes (UInt64) — 在外部内存中进行排序时写入的数据量 (未压缩,即压缩前) 。
  • ProfileEvent_ExternalAggregationWritePart (UInt64) — 在外部内存中进行聚合时,临时 File 写入磁盘的次数。
  • ProfileEvent_ExternalAggregationMerge (UInt64) — 在外部内存中进行聚合时,临时 File 合并的次数。
  • ProfileEvent_ExternalAggregationCompressedBytes (UInt64) — 在外部内存中进行聚合时写入磁盘的字节数。
  • ProfileEvent_ExternalAggregationUncompressedBytes (UInt64) — 在外部内存中进行聚合时写入磁盘的数据量 (未压缩,即压缩前) 。
  • ProfileEvent_ExternalJoinWritePart (UInt64) — 在外部内存中进行 JOIN 时,临时 File 写入磁盘的次数。
  • ProfileEvent_ExternalJoinMerge (UInt64) — 在外部内存中进行 JOIN 时,临时 File 合并的次数。
  • ProfileEvent_ExternalJoinCompressedBytes (UInt64) — 在外部内存中进行 JOIN 时写入的压缩字节数。
  • ProfileEvent_ExternalJoinUncompressedBytes (UInt64) — 在外部内存中进行 JOIN 时写入的数据量 (未压缩,即压缩前) 。
  • ProfileEvent_IcebergPartitionPrunedFiles (UInt64) — Iceberg 分区裁剪期间跳过的文件数
  • ProfileEvent_IcebergTrivialCountOptimizationApplied (UInt64) — 从 Iceberg 读取时应用简单 count 优化
  • ProfileEvent_IcebergVersionHintUsed (UInt64) — 使用 version-hint.text 的次数。
  • ProfileEvent_IcebergMinMaxIndexPrunedFiles (UInt64) — 在 Iceberg 中使用 MinMax index 跳过的文件数
  • ProfileEvent_JoinBuildTableRowCount (UInt64) — JOIN 操作中 build 表的总行数。
  • ProfileEvent_JoinProbeTableRowCount (UInt64) — JOIN 操作中 probe 表的总行数。
  • ProfileEvent_JoinResultRowCount (UInt64) — JOIN 操作结果中的总行数。
  • ProfileEvent_JoinNonJoinedTransformBlockCount (UInt64) — NonJoinedBlocksTransform 输出的块数。
  • ProfileEvent_JoinNonJoinedTransformRowCount (UInt64) — NonJoinedBlocksTransform 输出的未参与连接的行数。
  • ProfileEvent_JoinDelayedJoinedTransformBlockCount (UInt64) — DelayedJoinedBlocksWorkerTransform 输出的块数。
  • ProfileEvent_JoinDelayedJoinedTransformRowCount (UInt64) — DelayedJoinedBlocksWorkerTransform 输出的行数。
  • ProfileEvent_JoinSpillingHashJoinSwitchedToGraceJoin (UInt64) — 在 SpillingHashJoin 中,由于内存限制,(Concurrent)HashJoin 切换为 GraceHashJoin 的次数。
  • ProfileEvent_JoinReorderMicroseconds (UInt64) — 执行 JOIN 重排序算法所花费的总时间。
  • ProfileEvent_JoinOptimizeMicroseconds (UInt64) — 执行 JOIN 查询计划优化所花费的总时间。
  • ProfileEvent_QueryPlanOptimizeMicroseconds (UInt64) — 执行查询计划优化所花费的总时间。
  • ProfileEvent_DeltaLakePartitionPrunedFiles (UInt64) — DeltaLake 分区裁剪期间跳过的文件数。
  • ProfileEvent_DeltaLakeSnapshotInitializations (UInt64) — DeltaLake 表快照初始化的次数 (从对象存储加载) 。
  • ProfileEvent_DeltaLakeScannedFiles (UInt64) — DeltaLake 扫描回调期间扫描的文件数。
  • ProfileEvent_SlowRead (UInt64) — 文件慢读的次数。这表示系统过载。阈值由 read_backoff_* 设置控制。
  • ProfileEvent_ReadBackoff (UInt64) — 由于慢读而降低查询处理线程数的次数。
  • ProfileEvent_ReplicaPartialShutdown (UInt64) — 由于 ZooKeeper 中的会话过期,Replicated 表不得不解除初始化其状态的次数。每当 ZooKeeper 再次可用时,该状态都会重新初始化。
  • ProfileEvent_IndexAnalysisRounds (UInt64) — 查询中执行索引分析的次数。
  • ProfileEvent_SelectedParts (UInt64) — 从 MergeTree 表中选中进行读取的数据分区片段数。
  • ProfileEvent_SelectedPartsTotal (UInt64) — 在从 MergeTree 表中筛选要读取哪些数据分区片段之前,数据分区片段的总数。
  • ProfileEvent_SelectedRanges (UInt64) — 从 MergeTree 表中选中进行读取的所有数据分区片段中的 (非相邻) 范围数。
  • ProfileEvent_SelectedMarks (UInt64) — 从 MergeTree 表中选中进行读取的标记 (索引粒度) 数。
  • ProfileEvent_SelectedMarksTotal (UInt64) — 在从 MergeTree 表中筛选要读取哪些标记 (索引粒度) 之前,标记 (索引粒度) 总数。
  • ProfileEvent_SelectedRows (UInt64) — 从所有表中 SELECT 的行数。
  • ProfileEvent_SelectedBytes (UInt64) — 从所有表中 SELECT 的字节数 (未压缩;按列在内存中的存储形式计算) 。
  • ProfileEvent_RowsReadByMainReader (UInt64) — 主读取器从 MergeTree 表中读取的行数 (在 PREWHERE 步骤之后) 。
  • ProfileEvent_RowsReadByPrewhereReaders (UInt64) — prewhere 读取器从 MergeTree 表中读取的总行数。
  • ProfileEvent_LoadedDataParts (UInt64) — MergeTree 表在初始化期间加载的数据分区片段数。
  • ProfileEvent_LoadedDataPartsMicroseconds (UInt64) — MergeTree 表在初始化期间加载数据分区片段所花费的微秒数。
  • ProfileEvent_FilteringMarksWithPrimaryKeyProcessedMarks (UInt64) — 主键分析期间处理的标记总数。
  • ProfileEvent_FilteringMarksWithPrimaryKeyMicroseconds (UInt64) — 按主键过滤 parts 所花费的时间。
  • ProfileEvent_FilteringMarksWithSecondaryKeysMicroseconds (UInt64) — 按跳过索引过滤 parts 所花费的时间。
  • ProfileEvent_DistributedIndexAnalysisMicroseconds (UInt64) — 分布式索引分析所花费的总时间
  • ProfileEvent_DistributedIndexAnalysisScheduledReplicas (UInt64) — 已调度进行分布式索引分析的副本数量 (本地副本计一次)
  • ProfileEvent_DistributedIndexAnalysisReplicaUnavailable (UInt64) — 未回退时,某个副本上的分布式索引分析失败的次数 (连接期间失败)
  • ProfileEvent_DistributedIndexAnalysisReplicaFallback (UInt64) — 某个副本上的分布式索引分析失败并回退到本地副本的次数
  • ProfileEvent_DistributedIndexAnalysisParts (UInt64) — 已发送用于分布式索引分析的 parts 数量
  • ProfileEvent_DistributedIndexAnalysisMissingParts (UInt64) — 分布式索引分析期间缺失、将由本地处理的 parts 数量
  • ProfileEvent_WaitMarksLoadMicroseconds (UInt64) — 加载标记所花费的时间
  • ProfileEvent_BackgroundLoadingMarksTasks (UInt64) — 用于加载标记的后台任务数量
  • ProfileEvent_MarksTasksFromCache (UInt64) — 因标记已存在于缓存中而以同步方式加载的次数。
  • ProfileEvent_LoadingMarksTasksCanceled (UInt64) — 用于加载标记的后台任务被取消的次数
  • ProfileEvent_LoadedMarksFiles (UInt64) — 已加载的标记文件数量。
  • ProfileEvent_LoadedMarksCount (UInt64) — 已加载的标记数量 (所有列的总计) 。
  • ProfileEvent_LoadedMarksMemoryBytes (UInt64) — 已加载标记的内存表示大小。
  • ProfileEvent_MarkCacheEvictedBytes (UInt64) — 从标记缓存中逐出的字节数。
  • ProfileEvent_MarkCacheEvictedMarks (UInt64) — 从标记缓存中逐出的标记数量。
  • ProfileEvent_MarkCacheEvictedFiles (UInt64) — 从标记缓存中逐出的标记文件数量。
  • ProfileEvent_LoadedPrimaryIndexFiles (UInt64) — 已加载的主索引文件数量。
  • ProfileEvent_LoadedPrimaryIndexRows (UInt64) — 已加载的主键行数。
  • ProfileEvent_LoadedPrimaryIndexBytes (UInt64) — 已加载的主键行数。
  • ProfileEvent_Merge (UInt64) — 已启动的后台合并次数。
  • ProfileEvent_MergeSourceParts (UInt64) — 已调度用于合并的源 parts 数量。
  • ProfileEvent_MergedRows (UInt64) — 后台合并读取的行数,即合并前的行数。
  • ProfileEvent_MergedColumns (UInt64) — 在合并的水平阶段中合并的列数。
  • ProfileEvent_GatheredColumns (UInt64) — 在合并的垂直阶段收集的列数。
  • ProfileEvent_MergedProjections (UInt64) — 在 MergeTree 合并期间被合并 (而非重建) 的投影数量。
  • ProfileEvent_RebuiltProjections (UInt64) — 在 MergeTree 合并期间从头重建的投影数量。
  • ProfileEvent_MergedUncompressedBytes (UInt64) — 后台合并期间读取的未压缩字节数 (按列在内存中的存储形式计算) 。这是合并前的数值。
  • ProfileEvent_MergeWrittenRows (UInt64) — 合并期间写入的行数。
  • ProfileEvent_MergeTotalMilliseconds (UInt64) — 后台合并的总耗时
  • ProfileEvent_MergeExecuteMilliseconds (UInt64) — 执行后台合并所花费的总忙碌时间
  • ProfileEvent_MergeCommitMilliseconds (UInt64) — 提交合并结果 (分片重命名、校验和验证、ZooKeeper 更新) 所花费的总时间
  • ProfileEvent_MergeHorizontalStageTotalMilliseconds (UInt64) — 后台合并的水平阶段总耗时
  • ProfileEvent_MergeHorizontalStageExecuteMilliseconds (UInt64) — 执行后台合并水平阶段所花费的总忙碌时间
  • ProfileEvent_MergeVerticalStageTotalMilliseconds (UInt64) — 后台合并的垂直阶段总耗时
  • ProfileEvent_MergeVerticalStageExecuteMilliseconds (UInt64) — 执行后台合并垂直阶段所花费的总忙碌时间
  • ProfileEvent_MergeTextIndexStageTotalMilliseconds (UInt64) — 后台合并的文本索引阶段总耗时
  • ProfileEvent_MergeTextIndexStageExecuteMilliseconds (UInt64) — 执行后台合并文本索引阶段所花费的总忙碌时间
  • ProfileEvent_MergeProjectionStageTotalMilliseconds (UInt64) — 后台合并的投影阶段总耗时
  • ProfileEvent_MergeProjectionStageExecuteMilliseconds (UInt64) — 执行后台合并投影阶段所花费的总忙碌时间
  • ProfileEvent_MergePrewarmStageTotalMilliseconds (UInt64) — 后台合并的预热阶段总耗时
  • ProfileEvent_MergePrewarmStageExecuteMilliseconds (UInt64) — 执行后台合并预热阶段所花费的总忙碌时间
  • ProfileEvent_MergesRejectedByMemoryLimit (UInt64) — 因内存限制被拒绝的后台合并数量
  • ProfileEvent_MergingSortedMilliseconds (UInt64) — 合并已排序列时花费的总时间
  • ProfileEvent_AggregatingSortedMilliseconds (UInt64) — 聚合已排序列时花费的总时间
  • ProfileEvent_CoalescingSortedMilliseconds (UInt64) — 整合已排序列时花费的总时间
  • ProfileEvent_CollapsingSortedMilliseconds (UInt64) — 折叠已排序列时花费的总时间
  • ProfileEvent_ReplacingSortedMilliseconds (UInt64) — 替换已排序列时花费的总时间
  • ProfileEvent_SummingSortedMilliseconds (UInt64) — 对已排序列求和时花费的总时间
  • ProfileEvent_VersionedCollapsingSortedMilliseconds (UInt64) — 对已排序列执行版本折叠所花费的总时间
  • ProfileEvent_GatheringColumnMilliseconds (UInt64) — 为纵向合并收集列所花费的总时间
  • ProfileEvent_MutationTotalParts (UInt64) — 尝试应用变更的 parts 总数
  • ProfileEvent_MutationUntouchedParts (UInt64) — 尝试应用变更但根据谓词被完全跳过的 parts 总数
  • ProfileEvent_MutationCreatedEmptyParts (UInt64) — 被替换为空 parts 而非执行变更的 parts 总数
  • ProfileEvent_MutatedRows (UInt64) — 为变更读取的行数。这是变更前的行数
  • ProfileEvent_MutatedUncompressedBytes (UInt64) — 为变更读取的未压缩字节数 (按列在内存中的存储形式计算) 。这是变更前的数值。
  • ProfileEvent_MutationAffectedRowsUpperBound (UInt64) — 受变更影响的行数上限 (例如满足 UPDATE 或 DELETE 变更谓词的行数) 。实际数量可能会略少
  • ProfileEvent_MutationTotalMilliseconds (UInt64) — 变更花费的总时间。
  • ProfileEvent_MutationExecuteMilliseconds (UInt64) — 执行变更所花费的总忙碌时间。
  • ProfileEvent_MutationCommitMilliseconds (UInt64) — 提交变更结果所花费的总时间 (part 重命名、checksum 校验、ZooKeeper 更新)
  • ProfileEvent_MutationAllPartColumns (UInt64) — 创建对 part 中所有列执行变更任务的次数
  • ProfileEvent_MutationSomePartColumns (UInt64) — 创建对 part 中部分列执行变更任务的次数
  • ProfileEvent_MutateTaskProjectionsCalculationMicroseconds (UInt64) — 在变更中计算 projections 所花费的时间
  • ProfileEvent_MergeTreeDataWriterRows (UInt64) — INSERT 到 MergeTree 表中的行数。
  • ProfileEvent_MergeTreeDataWriterUncompressedBytes (UInt64) — INSERT 到 MergeTree 表中的未压缩字节数 (按列在内存中的存储形式计算) 。
  • ProfileEvent_MergeTreeDataWriterCompressedBytes (UInt64) — 为 INSERT 到 MergeTree 表中的数据写入文件系统的字节数。
  • ProfileEvent_MergeTreeDataWriterBlocks (UInt64) — INSERT 到 MergeTree 表中的块数。每个块都会形成一个 0 级数据分区片段。
  • ProfileEvent_MergeTreeDataWriterBlocksAlreadySorted (UInt64) — INSERT 到 MergeTree 表中且看起来已排序的块数。
  • ProfileEvent_MergeMutateBackgroundExecutorTaskExecuteStepMicroseconds (UInt64) — 在 MergeMutate 执行器任务的 executeStep() 中花费的时间。
  • ProfileEvent_MergeMutateBackgroundExecutorTaskCancelMicroseconds (UInt64) — 在 MergeMutate 执行器任务的 cancel() 中花费的时间。
  • ProfileEvent_MergeMutateBackgroundExecutorTaskResetMicroseconds (UInt64) — 在 MergeMutate 执行器中重置任务所花费的时间。
  • ProfileEvent_MergeMutateBackgroundExecutorWaitMicroseconds (UInt64) — 在 MergeMutate 执行器中等待完成所花费的时间。
  • ProfileEvent_MoveBackgroundExecutorTaskExecuteStepMicroseconds (UInt64) — 在 Move 执行器任务的 executeStep() 中花费的时间。
  • ProfileEvent_MoveBackgroundExecutorTaskCancelMicroseconds (UInt64) — 在 Move 执行器任务的 cancel() 中花费的时间。
  • ProfileEvent_MoveBackgroundExecutorTaskResetMicroseconds (UInt64) — 在 Move 执行器中重置任务所花费的时间。
  • ProfileEvent_MoveBackgroundExecutorWaitMicroseconds (UInt64) — 在 Move 执行器中等待完成所花费的时间。
  • ProfileEvent_FetchBackgroundExecutorTaskExecuteStepMicroseconds (UInt64) — 在 Fetch 执行器任务的 executeStep() 中所花费的时间。
  • ProfileEvent_FetchBackgroundExecutorTaskCancelMicroseconds (UInt64) — 在 Fetch 执行器任务的 cancel() 中所花费的时间。
  • ProfileEvent_FetchBackgroundExecutorTaskResetMicroseconds (UInt64) — 在 Fetch 执行器中重置任务所花费的时间。
  • ProfileEvent_FetchBackgroundExecutorWaitMicroseconds (UInt64) — 在 Fetch 执行器中等待完成所花费的时间。
  • ProfileEvent_CommonBackgroundExecutorTaskExecuteStepMicroseconds (UInt64) — 在 Common executor 任务的 executeStep() 中所花费的时间。
  • ProfileEvent_CommonBackgroundExecutorTaskCancelMicroseconds (UInt64) — 在 Common executor 任务的 cancel() 中所花费的时间。
  • ProfileEvent_CommonBackgroundExecutorTaskResetMicroseconds (UInt64) — 在 Common executor 中重置任务所花费的时间。
  • ProfileEvent_CommonBackgroundExecutorWaitMicroseconds (UInt64) — 在 Common executor 中等待完成所花费的时间。
  • ProfileEvent_MergeTreeDataWriterSkipIndicesCalculationMicroseconds (UInt64) — 计算跳过索引所花费的时间
  • ProfileEvent_MergeTreeDataWriterStatisticsCalculationMicroseconds (UInt64) — 计算统计信息所花费的时间
  • ProfileEvent_MergeTreeDataWriterSortingBlocksMicroseconds (UInt64) — 对块排序所花费的时间
  • ProfileEvent_MergeTreeDataWriterMergingBlocksMicroseconds (UInt64) — 合并输入块所花费的时间 (适用于特殊的 MergeTree 引擎)
  • ProfileEvent_MergeTreeDataWriterProjectionsCalculationMicroseconds (UInt64) — 计算投影所花费的时间
  • ProfileEvent_MergeTreeDataProjectionWriterSortingBlocksMicroseconds (UInt64) — 对块排序所花费的时间 (对于投影,其键可能与表的排序键不同)
  • ProfileEvent_MergeTreeDataProjectionWriterMergingBlocksMicroseconds (UInt64) — 合并块所花费的时间
  • ProfileEvent_InsertedWideParts (UInt64) — 以 Wide 格式插入的 parts 数量。
  • ProfileEvent_InsertedCompactParts (UInt64) — 以 Compact 格式插入的 parts 数量。
  • ProfileEvent_MergedIntoWideParts (UInt64) — 合并为 Wide 格式的 parts 数量。
  • ProfileEvent_MergedIntoCompactParts (UInt64) — 合并为 Compact 格式的 parts 数量。
  • ProfileEvent_MergeTreeDataProjectionWriterRows (UInt64) — 插入到 MergeTree 表投影中的行数。
  • ProfileEvent_MergeTreeDataProjectionWriterUncompressedBytes (UInt64) — 插入到 MergeTree 表投影中的未压缩字节数 (按列在内存中的存储形式计算) 。
  • ProfileEvent_MergeTreeDataProjectionWriterCompressedBytes (UInt64) — 为插入到 MergeTree 表投影中的数据写入文件系统的字节数。
  • ProfileEvent_MergeTreeDataProjectionWriterBlocks (UInt64) — 插入到 MergeTree 表投影中的块数。每个块都会形成一个零级数据分区片段。
  • ProfileEvent_MergeTreeDataProjectionWriterBlocksAlreadySorted (UInt64) — INSERT 到 MergeTree 表投影中且看起来已排序的块数量。
  • ProfileEvent_CannotRemoveEphemeralNode (UInt64) — 尝试删除临时节点时发生错误的次数。这不是问题,因为我们的 ZooKeeper 库实现可以保证 session 会过期,节点也会被删除。
  • ProfileEvent_RegexpWithMultipleNeedlesCreated (UInt64) — 已编译的多模式串正则表达式 (VectorScan 库) 数量。
  • ProfileEvent_RegexpWithMultipleNeedlesGlobalCacheHit (UInt64) — 从全局缓存中拉取已编译多模式串正则表达式 (VectorScan 库) 的次数。
  • ProfileEvent_RegexpWithMultipleNeedlesGlobalCacheMiss (UInt64) — 未能从全局缓存中拉取已编译多模式串正则表达式 (VectorScan 库) 的次数。
  • ProfileEvent_RegexpLocalCacheHit (UInt64) — 从本地缓存中拉取已编译正则表达式的次数。
  • ProfileEvent_RegexpLocalCacheMiss (UInt64) — 未能从本地缓存中拉取已编译正则表达式的次数。
  • ProfileEvent_ContextLock (UInt64) — 获取 Context 锁或尝试获取该锁的次数。这是一个全局锁。
  • ProfileEvent_ContextLockWaitMicroseconds (UInt64) — Context 锁等待时间 (微秒)
  • ProfileEvent_StorageBufferFlush (UInt64) — ‘Buffer’ 表中的缓冲区被刷写的次数。
  • ProfileEvent_StorageBufferErrorOnFlush (UInt64) — 由于写入目标表时出错,‘Buffer’ 表中的缓冲区无法刷写的次数。
  • ProfileEvent_StorageBufferPassedAllMinThresholds (UInt64) — 达到所有最小阈值条件,从而刷写 ‘Buffer’ 表中缓冲区的次数。
  • ProfileEvent_StorageBufferPassedTimeMaxThreshold (UInt64) — 达到最大时间阈值条件,从而刷写 ‘Buffer’ 表中缓冲区的次数。
  • ProfileEvent_StorageBufferPassedRowsMaxThreshold (UInt64) — 达到最大行数阈值条件,从而刷写 ‘Buffer’ 表中缓冲区的次数。
  • ProfileEvent_StorageBufferPassedBytesMaxThreshold (UInt64) — 达到最大字节数阈值条件,从而刷写 ‘Buffer’ 表中缓冲区的次数。
  • ProfileEvent_StorageBufferPassedTimeFlushThreshold (UInt64) — 达到仅用于后台刷写的时间刷写阈值,从而刷写 ‘Buffer’ 表中缓冲区的次数。这是仅供专家使用的指标。如果你读到了这里但并非专家,请停止阅读。
  • ProfileEvent_StorageBufferPassedRowsFlushThreshold (UInt64) — 达到仅用于后台刷写的行数刷写阈值,从而刷写 ‘Buffer’ 表中缓冲区的次数。这是仅供专家使用的指标。如果你读到了这里但并非专家,请停止阅读。
  • ProfileEvent_StorageBufferPassedBytesFlushThreshold (UInt64) — 达到仅用于后台刷写的字节数刷写阈值,从而刷写 ‘Buffer’ 表中缓冲区的次数。这是仅供专家使用的指标。如果你读到了这里但并非专家,请停止阅读。
  • ProfileEvent_StorageBufferLayerLockReadersWaitMilliseconds (UInt64) — 读取时等待 Buffer 层的时间。
  • ProfileEvent_StorageBufferLayerLockWritersWaitMilliseconds (UInt64) — 等待 Buffer 层空闲以便写入的时间 (可用于调优 Buffer 层) 。
  • ProfileEvent_SystemLogErrorOnFlush (UInt64) — 任意系统日志刷新到对应系统表失败的次数。刷新操作会重复尝试。
  • ProfileEvent_DictCacheKeysRequested (UInt64) — 为 cache 类型的字典从数据源请求的键数量。
  • ProfileEvent_DictCacheKeysRequestedMiss (UInt64) — 为 cache 类型的字典从数据源请求、但未在数据源中找到的键数量。
  • ProfileEvent_DictCacheKeysRequestedFound (UInt64) — 为 cache 类型的字典从数据源请求并在数据源中找到的键数量。
  • ProfileEvent_DictCacheKeysExpired (UInt64) — 在 cache 类型的字典中查找、且在缓存中命中但已过时的键数量。
  • ProfileEvent_DictCacheKeysNotFound (UInt64) — 在 cache 类型的字典中查找但未找到的键数量。
  • ProfileEvent_DictCacheKeysHit (UInt64) — 在 cache 类型的字典中查找并在缓存中命中的键数量。
  • ProfileEvent_DictCacheRequestTimeNs (UInt64) — 为 cache 类型的字典查询外部数据源所花费的纳秒数。
  • ProfileEvent_DictCacheRequests (UInt64) — 为 cache 类型的字典向外部数据源发起的批量请求次数。
  • ProfileEvent_DictCacheLockWriteNs (UInt64) — 为更新 cache 类型字典中的数据而等待写锁所花费的纳秒数。
  • ProfileEvent_DictCacheLockReadNs (UInt64) — 为查找 cache 类型字典中的数据而等待读锁所花费的纳秒数。
  • ProfileEvent_DistributedSyncInsertionTimeoutExceeded (UInt64) — 在同步插入 Distributed 表期间,等待分片时超时的次数 (distributed_foreground_insert = 1)
  • ProfileEvent_DistributedAsyncInsertionFailures (UInt64) — 异步插入 Distributed 表失败的次数 (distributed_foreground_insert = 0)
  • ProfileEvent_DataAfterMergeDiffersFromReplica (UInt64) — 合并后的数据与其他副本上的数据在字节级不完全一致的次数。可能有以下几个原因:
    1. 服务器更新后使用了更新版本的压缩库。
    2. 使用了另一种压缩方法。
    3. 使用了非确定性的压缩算法 (这种情况极不可能) 。
    4. 由于代码中的逻辑错误,使用了非确定性的合并算法。
    5. 由于代码中的 bug,导致内存中的数据损坏。
    6. 由于硬件问题,导致内存中的数据损坏。
    7. 服务器启动后手动修改了源数据。
    8. 手动修改了存储在 ZooKeeper 中的校验和。
    9. 与 part 格式相关的设置 (如 ‘enable_mixed_granularity_parts’) 在不同副本上不一致。 服务器已成功检测到这种情况,并将从副本下载合并后的 part,以强制获得字节级完全一致的结果。
  • ProfileEvent_DataAfterMutationDiffersFromReplica (UInt64) — 变更后的数据与其他副本上的数据在字节级别不完全一致的次数。除 ‘DataAfterMergeDiffersFromReplica’ 中所述原因外,也可能是由非确定性变更导致的。
  • ProfileEvent_PolygonsAddedToPool (UInt64) — 已添加到 ‘pointInPolygon’ 函数缓存 (pool) 中的多边形数量。
  • ProfileEvent_PolygonsInPoolAllocatedBytes (UInt64) — 为添加到 ‘pointInPolygon’ 函数缓存 (pool) 中的多边形分配的字节数。
  • ProfileEvent_NaiveBayesClassifierModelsLoaded (UInt64) — 已加载的朴素贝叶斯分类器模型数量。
  • ProfileEvent_NaiveBayesClassifierModelsAllocatedBytes (UInt64) — 为朴素贝叶斯分类器模型分配的字节数。
  • ProfileEvent_USearchAddCount (UInt64) — 添加到 usearch 索引中的向量数量。
  • ProfileEvent_USearchAddVisitedMembers (UInt64) — 向 usearch 索引添加向量时访问的节点数量。
  • ProfileEvent_USearchAddComputedDistances (UInt64) — 向 usearch 索引添加向量时计算距离的次数。
  • ProfileEvent_USearchSearchCount (UInt64) — 在 usearch 索引中执行的搜索操作次数。
  • ProfileEvent_USearchSearchVisitedMembers (UInt64) — 在 usearch 索引中搜索时访问的节点数量。
  • ProfileEvent_USearchSearchComputedDistances (UInt64) — 在 usearch 索引中搜索时计算距离的次数。
  • ProfileEvent_RWLockAcquiredReadLocks (UInt64) — 获取读锁的次数 (在 heavy RWLock 中) 。
  • ProfileEvent_RWLockAcquiredWriteLocks (UInt64) — 获取写锁的次数 (在 heavy RWLock 中) 。
  • ProfileEvent_RWLockReadersWaitMilliseconds (UInt64) — 等待读锁获取成功所花费的总时间 (在 heavy RWLock 中) 。
  • ProfileEvent_RWLockWritersWaitMilliseconds (UInt64) — 等待写锁获取成功所花费的总时间 (在 heavy RWLock 中) 。
  • ProfileEvent_DNSError (UInt64) — DNS 解析错误总数
  • ProfileEvent_PartsLockHoldMicroseconds (UInt64) — 在 MergeTree 表中持有数据分区片段锁的总时间
  • ProfileEvent_PartsLockWaitMicroseconds (UInt64) — 在 MergeTree 表中等待数据分区片段锁的总时间
  • ProfileEvent_PartsLocks (UInt64) — 在 MergeTree 表中获取数据分区片段锁的次数
  • ProfileEvent_SharedPartsLockHoldMicroseconds (UInt64) — 在 MergeTree 表中持有共享数据分区片段锁的总时间
  • ProfileEvent_SharedPartsLockWaitMicroseconds (UInt64) — 在 MergeTree 表中等待共享数据分区片段锁的总时间
  • ProfileEvent_SharedPartsLocks (UInt64) — 在 MergeTree 表中获取共享数据分区片段锁的次数
  • ProfileEvent_RealTimeMicroseconds (UInt64) — 处理线程 (queries 和其他 tasks) 消耗的总实际时间 (墙钟时间) (请注意,这是一个总和) 。
  • ProfileEvent_UserTimeMicroseconds (UInt64) — 处理线程 (queries 和其他 tasks) 在用户态执行 CPU 指令所花费的总时间。这包括 CPU 管线因访问主存、缓存未命中、分支预测失败、超线程等原因而停顿的时间。
  • ProfileEvent_SystemTimeMicroseconds (UInt64) — 处理线程 (执行查询及其他任务) 在操作系统内核模式下执行 CPU 指令所花费的总时间。即系统调用所消耗的时间,不包括阻塞式系统调用期间的等待时间。
  • ProfileEvent_MemoryOvercommitWaitTimeMicroseconds (UInt64) — 在 OvercommitTracker 中等待内存释放所花费的总时间。
  • ProfileEvent_MemoryAllocatorPurge (UInt64) — 请求执行内存分配器 purge 操作的总次数
  • ProfileEvent_MemoryAllocatorPurgeTimeMicroseconds (UInt64) — 执行内存分配器 purge 操作所花费的总时间
  • ProfileEvent_SoftPageFaults (UInt64) — 查询执行线程中的软缺页次数。软缺页通常意味着内存分配器缓存未命中,因此需要操作系统创建新的内存映射,并随后分配一个物理内存页。
  • ProfileEvent_HardPageFaults (UInt64) — 查询执行线程中的硬缺页次数。该值较高通常表明:要么你忘记在服务器上关闭 swap,要么在极高内存压力下 ClickHouse 可执行文件的内存页被驱逐,或者成功使用了表数据的 ‘mmap’ 读取方法。
  • ProfileEvent_OSIOWaitMicroseconds (UInt64) — 从操作系统视角看,线程等待 IO 操作结果所花费的总时间。这是真实的 IO,不包括页缓存。
  • ProfileEvent_OSCPUWaitMicroseconds (UInt64) — 从操作系统视角看,线程已准备好执行、但仍在等待操作系统调度所花费的总时间。
  • ProfileEvent_OSCPUVirtualTimeMicroseconds (UInt64) — 从操作系统视角看到的 CPU 时间。不包括因虚拟化导致的非自愿等待。
  • ProfileEvent_OSReadBytes (UInt64) — 从磁盘或块设备读取的字节数。不包括从页缓存读取的字节。由于块大小、预读等原因,可能会包含额外数据。
  • ProfileEvent_OSWriteBytes (UInt64) — 写入磁盘或块设备的字节数。不包括页缓存中脏页里的字节。也可能不包括由操作系统异步写入的数据。
  • ProfileEvent_OSReadChars (UInt64) — 从文件系统读取的字节数,包括页缓存,以及网络和其他文件。
  • ProfileEvent_OSWriteChars (UInt64) — 写入文件系统的字节数,包括页缓存,以及网络和其他文件。
  • ProfileEvent_ParallelReplicasHandleRequestMicroseconds (UInt64) — 处理来自副本的标记请求所花费的时间
  • ProfileEvent_ParallelReplicasHandleAnnouncementMicroseconds (UInt64) — 处理副本通知所花费的时间
  • ProfileEvent_ParallelReplicasAnnouncementMicroseconds (UInt64) — 发送通知所花费的时间
  • ProfileEvent_ParallelReplicasReadRequestMicroseconds (UInt64) — 处理读取请求所花费的时间
  • ProfileEvent_ParallelReplicasReadAssignedMarks (UInt64) — 所有副本中,通过一致性哈希分配的已调度标记总数
  • ProfileEvent_ParallelReplicasReadUnassignedMarks (UInt64) — 所有副本中,被调度的未分配标记总数
  • ProfileEvent_ParallelReplicasReadAssignedForStealingMarks (UInt64) — 所有副本中,通过一致性哈希分配用于窃取的已调度标记总数
  • ProfileEvent_ParallelReplicasReadMarks (UInt64) — 给定副本读取的标记数量
  • ProfileEvent_ParallelReplicasStealingByHashMicroseconds (UInt64) — 收集用于按哈希窃取的分段所花费的时间
  • ProfileEvent_ParallelReplicasProcessingPartsMicroseconds (UInt64) — 处理数据分区片段所花费的时间
  • ProfileEvent_ParallelReplicasStealingLeftoversMicroseconds (UInt64) — 收集遗留分段所花费的时间
  • ProfileEvent_ParallelReplicasCollectingOwnedSegmentsMicroseconds (UInt64) — 收集按哈希分配给本副本的分段所花费的时间
  • ProfileEvent_ParallelReplicasNumRequests (UInt64) — 发往发起节点的请求数量。
  • ProfileEvent_ParallelReplicasDeniedRequests (UInt64) — 发往发起节点且被完全拒绝的请求数量
  • ProfileEvent_CacheWarmerBytesDownloaded (UInt64) — 由专用后台线程拉取到文件系统缓存中的数据量。
  • ProfileEvent_CacheWarmerDataPartsDownloaded (UInt64) — 被 CacheWarmer 完整拉取的数据分区片段数量。
  • ProfileEvent_IgnoredColdParts (UInt64) — 请参见设置 ignore_cold_parts_seconds。读查询忽略尚未被 CacheWarmer 拉入缓存的最新 parts 的次数。
  • ProfileEvent_PreferredWarmedUnmergedParts (UInt64) — 请参见设置 prefer_warmed_unmerged_parts_seconds。读查询优先使用缓存中的过期未合并 parts,而不是尚未被 CacheWarmer 拉入缓存的 merged part 的次数。
  • ProfileEvent_PerfCPUCycles (UInt64) — 总周期数。请注意 CPU 频率扩缩容时的影响。
  • ProfileEvent_PerfInstructions (UInt64) — 已退休指令数。请注意,这些值可能会受到各种因素影响,尤其是硬件中断计数。
  • ProfileEvent_PerfCacheReferences (UInt64) — 缓存访问次数。通常表示最后一级缓存访问,但也可能因 CPU 而异。这可能包括预取和一致性消息;同样,这取决于 CPU 的设计。
  • ProfileEvent_PerfCacheMisses (UInt64) — 缓存未命中次数。通常表示最后一级缓存未命中;通常需结合 PERFCOUNTHWCACHEREFERENCES 事件一起使用,以计算缓存未命中率。
  • ProfileEvent_PerfBranchInstructions (UInt64) — 已退休的分支指令数。在 Linux 2.6.35 之前,该指标在 AMD 处理器上使用了错误的事件。
  • ProfileEvent_PerfBranchMisses (UInt64) — 分支预测失败的指令数。
  • ProfileEvent_PerfBusCycles (UInt64) — 总线周期数,可能与总周期数不同。
  • ProfileEvent_PerfStalledCyclesFrontend (UInt64) — 发射阶段的停滞周期数。
  • ProfileEvent_PerfStalledCyclesBackend (UInt64) — 退休阶段的停滞周期数。
  • ProfileEvent_PerfRefCPUCycles (UInt64) — 总周期数;不受 CPU 频率扩缩容影响。
  • ProfileEvent_PerfCPUClock (UInt64) — CPU 时钟,即每个 CPU 的高分辨率计时器
  • ProfileEvent_PerfTaskClock (UInt64) — 当前正在运行任务的专用时钟计数
  • ProfileEvent_PerfContextSwitches (UInt64) — 上下文切换次数
  • ProfileEvent_PerfCPUMigrations (UInt64) — 进程迁移到新 CPU 的次数
  • ProfileEvent_PerfAlignmentFaults (UInt64) — 对齐错误次数。这类错误发生在未对齐内存访问时;内核虽可处理,但会降低性能。仅在某些架构上会发生 (x86 上不会发生) 。
  • ProfileEvent_PerfEmulationFaults (UInt64) — 仿真故障次数。内核有时会在遇到未实现的指令时触发陷阱,并在用户空间对其进行模拟。这会对性能产生负面影响。
  • ProfileEvent_PerfMinEnabledTime (UInt64) — 在所有事件中,某个事件处于启用状态的最短时间。用于跟踪事件复用带来的影响
  • ProfileEvent_PerfMinEnabledRunningTime (UInt64) — 启用时间最短的事件的运行时间。用于跟踪事件复用的程度
  • ProfileEvent_PerfDataTLBReferences (UInt64) — 数据 TLB 访问次数
  • ProfileEvent_PerfDataTLBMisses (UInt64) — 数据 TLB 未命中次数
  • ProfileEvent_PerfInstructionTLBReferences (UInt64) — 指令 TLB 访问次数
  • ProfileEvent_PerfInstructionTLBMisses (UInt64) — 指令 TLB 未命中次数
  • ProfileEvent_PerfLocalMemoryReferences (UInt64) — 本地 NUMA 节点内存读取次数
  • ProfileEvent_PerfLocalMemoryMisses (UInt64) — 本地 NUMA 节点内存读取未命中次数
  • ProfileEvent_CannotWriteToWriteBufferDiscard (UInt64) — 由于管道已满或无法写入管道,查询分析器或信号处理程序丢弃的堆栈跟踪数量。
  • ProfileEvent_QueryProfilerSignalOverruns (UInt64) — 因超限而放弃处理查询分析器信号的次数,加上操作系统因超限而未投递的信号数量。
  • ProfileEvent_QueryProfilerConcurrencyOverruns (UInt64) — 由于其他线程中并发运行的查询分析器过多而放弃处理查询分析器信号的次数,这可能表明系统过载。
  • ProfileEvent_QueryProfilerRuns (UInt64) — QueryProfiler 运行的次数。
  • ProfileEvent_QueryProfilerErrors (UInt64) — 异步堆栈展开期间发生的无效内存访问。
  • ProfileEvent_CreatedLogEntryForMerge (UInt64) — 已成功创建用于在 ReplicatedMergeTree 中合并 parts 的日志条目。
  • ProfileEvent_NotCreatedLogEntryForMerge (UInt64) — 由于另一个副本并发更新日志,未能创建用于在 ReplicatedMergeTree 中合并 parts 的日志条目。
  • ProfileEvent_CreatedLogEntryForMutation (UInt64) — 已成功创建用于在 ReplicatedMergeTree 中对 parts 执行变更的日志条目。
  • ProfileEvent_NotCreatedLogEntryForMutation (UInt64) — 由于另一个副本并发更新日志,未能创建用于在 ReplicatedMergeTree 中对 parts 执行变更的日志条目。
  • ProfileEvent_S3ReadMicroseconds (UInt64) — 对 S3 存储发起 GET 和 HEAD 请求所用的时间。
  • ProfileEvent_S3ReadRequestsCount (UInt64) — 对 S3 存储发起的 GET 和 HEAD 请求数量。
  • ProfileEvent_S3ReadRequestsErrors (UInt64) — 对 S3 存储发起的 GET 和 HEAD 请求中的非限流错误数量。
  • ProfileEvent_S3ReadRequestsThrottling (UInt64) — 对 S3 存储发起的 GET 和 HEAD 请求中 429 和 503 错误的数量。
  • ProfileEvent_S3ReadRequestsRedirects (UInt64) — 对 S3 存储发起的 GET 和 HEAD 请求中的重定向数量。
  • ProfileEvent_S3ReadRequestAttempts (UInt64) — GET 和 HEAD 请求的尝试次数,包括首次尝试和任何重试,但不包括由 S3 重试策略在内部执行的重试
  • ProfileEvent_S3ReadRequestRetryableErrors (UInt64) — GET 和 HEAD 请求中的可重试错误数量,不包括由 S3 重试策略在内部执行的重试
  • ProfileEvent_S3WriteMicroseconds (UInt64) — 对 S3 存储发起 POST、DELETE、PUT 和 PATCH 请求所用的时间。
  • ProfileEvent_S3WriteRequestsCount (UInt64) — 对 S3 存储发起的 POST、DELETE、PUT 和 PATCH 请求数。
  • ProfileEvent_S3WriteRequestsErrors (UInt64) — 对 S3 存储发起的 POST、DELETE、PUT 和 PATCH 请求中的非限流错误数。
  • ProfileEvent_S3WriteRequestsThrottling (UInt64) — 对 S3 存储发起的 POST、DELETE、PUT 和 PATCH 请求中的 429 和 503 错误数。
  • ProfileEvent_S3WriteRequestsRedirects (UInt64) — 对 S3 存储发起的 POST、DELETE、PUT 和 PATCH 请求中的重定向次数。
  • ProfileEvent_S3WriteRequestAttempts (UInt64) — POST、DELETE、PUT 和 PATCH 请求的尝试次数,包括首次尝试和所有重试,但不包括由重试策略在内部执行的重试
  • ProfileEvent_S3WriteRequestRetryableErrors (UInt64) — POST、DELETE、PUT 和 PATCH 请求中的可重试错误数,不包括由重试策略在内部执行的重试
  • ProfileEvent_DiskS3ReadMicroseconds (UInt64) — 对 DiskS3 存储发起 GET 和 HEAD 请求的耗时。
  • ProfileEvent_DiskS3ReadRequestsCount (UInt64) — 对 DiskS3 存储发起的 GET 和 HEAD 请求数。
  • ProfileEvent_DiskS3ReadRequestsErrors (UInt64) — 对 DiskS3 存储发起的 GET 和 HEAD 请求中的非限流错误数。
  • ProfileEvent_DiskS3ReadRequestsThrottling (UInt64) — 对 DiskS3 存储发起的 GET 和 HEAD 请求中的 429 和 503 错误数。
  • ProfileEvent_DiskS3ReadRequestsRedirects (UInt64) — 对 DiskS3 存储发起的 GET 和 HEAD 请求中的重定向次数。
  • ProfileEvent_DiskS3ReadRequestAttempts (UInt64) — 对 DiskS3 存储发起的 GET 和 HEAD 请求的尝试次数,包括首次尝试和所有重试,但不包括由 S3 重试策略在内部执行的重试
  • ProfileEvent_DiskS3ReadRequestRetryableErrors (UInt64) — 对 DiskS3 存储发起的 GET 和 HEAD 请求中的可重试错误数,不包括由 S3 重试策略在内部执行的重试
  • ProfileEvent_DiskS3WriteMicroseconds (UInt64) — 对 DiskS3 存储发起 POST、DELETE、PUT 和 PATCH 请求的耗时。
  • ProfileEvent_DiskS3WriteRequestsCount (UInt64) — 对 DiskS3 存储发起的 POST、DELETE、PUT 和 PATCH 请求数。
  • ProfileEvent_DiskS3WriteRequestsErrors (UInt64) — 对 DiskS3 存储发起的 POST、DELETE、PUT 和 PATCH 请求中的非限流错误数。
  • ProfileEvent_DiskS3WriteRequestsThrottling (UInt64) — 对 DiskS3 存储发起的 POST、DELETE、PUT 和 PATCH 请求中的 429 和 503 错误数。
  • ProfileEvent_DiskS3WriteRequestsRedirects (UInt64) — 对 DiskS3 存储发起的 POST、DELETE、PUT 和 PATCH 请求中的重定向次数。
  • ProfileEvent_DiskS3WriteRequestAttempts (UInt64) — 对 DiskS3 存储发起的 POST、DELETE、PUT 和 PATCH 请求的尝试次数,包括首次尝试和所有重试,但不包括由重试策略在内部执行的重试
  • ProfileEvent_DiskS3WriteRequestRetryableErrors (UInt64) — 对 DiskS3 存储发起的 POST、DELETE、PUT 和 PATCH 请求中的可重试错误数,不包括由重试策略在内部执行的重试
  • ProfileEvent_S3DeleteObjects (UInt64) — S3 API DeleteObject(s) 的调用次数。
  • ProfileEvent_S3CopyObject (UInt64) — S3 API CopyObject 的调用次数。
  • ProfileEvent_S3ListObjects (UInt64) — S3 API ListObjects 的调用次数。
  • ProfileEvent_S3HeadObject (UInt64) — S3 API HeadObject 的调用次数。
  • ProfileEvent_S3GetObjectTagging (UInt64) — S3 API GetObjectTagging 的调用次数。
  • ProfileEvent_S3CreateMultipartUpload (UInt64) — S3 API CreateMultipartUpload 的调用次数。
  • ProfileEvent_S3UploadPartCopy (UInt64) — S3 API UploadPartCopy 的调用次数。
  • ProfileEvent_S3UploadPart (UInt64) — S3 API UploadPart 的调用次数。
  • ProfileEvent_S3AbortMultipartUpload (UInt64) — S3 API AbortMultipartUpload 的调用次数。
  • ProfileEvent_S3CompleteMultipartUpload (UInt64) — S3 API CompleteMultipartUpload 的调用次数。
  • ProfileEvent_S3PutObject (UInt64) — S3 API PutObject 的调用次数。
  • ProfileEvent_S3GetObject (UInt64) — S3 API GetObject 的调用次数。
  • ProfileEvent_DiskS3DeleteObjects (UInt64) — DiskS3 API DeleteObject(s) 的调用次数。
  • ProfileEvent_DiskS3CopyObject (UInt64) — DiskS3 API CopyObject 的调用次数。
  • ProfileEvent_DiskS3ListObjects (UInt64) — DiskS3 API ListObjects 的调用次数。
  • ProfileEvent_DiskS3HeadObject (UInt64) — DiskS3 API HeadObject 的调用次数。
  • ProfileEvent_DiskS3GetObjectTagging (UInt64) — DiskS3 API GetObjectTagging 的调用次数。
  • ProfileEvent_DiskS3CreateMultipartUpload (UInt64) — DiskS3 API CreateMultipartUpload 的调用次数。
  • ProfileEvent_DiskS3UploadPartCopy (UInt64) — DiskS3 API UploadPartCopy 的调用次数。
  • ProfileEvent_DiskS3UploadPart (UInt64) — DiskS3 API UploadPart 的调用次数。
  • ProfileEvent_DiskS3AbortMultipartUpload (UInt64) — DiskS3 API AbortMultipartUpload 的调用次数。
  • ProfileEvent_DiskS3CompleteMultipartUpload (UInt64) — DiskS3 API CompleteMultipartUpload 的调用次数。
  • ProfileEvent_DiskS3PutObject (UInt64) — DiskS3 API PutObject 的调用次数。
  • ProfileEvent_DiskS3GetObject (UInt64) — DiskS3 API GetObject 的调用次数。
  • ProfileEvent_DiskPlainRewritableAzureDirectoryCreated (UInt64) — 由 AzureObjectStorage 的 ‘plain_rewritable’ 元数据存储创建的目录数量。
  • ProfileEvent_DiskPlainRewritableAzureDirectoryRemoved (UInt64) — 由 AzureObjectStorage 的 ‘plain_rewritable’ 元数据存储删除的目录数量。
  • ProfileEvent_DiskPlainRewritableLocalDirectoryCreated (UInt64) — 由 LocalObjectStorage 的 ‘plain_rewritable’ 元数据存储创建的目录数量。
  • ProfileEvent_DiskPlainRewritableLocalDirectoryRemoved (UInt64) — 由 LocalObjectStorage 的 ‘plain_rewritable’ 元数据存储删除的目录数量。
  • ProfileEvent_DiskPlainRewritableS3DirectoryCreated (UInt64) — plain_rewritable 元数据存储为 S3ObjectStorage 创建的目录数量。
  • ProfileEvent_DiskPlainRewritableS3DirectoryRemoved (UInt64) — plain_rewritable 元数据存储为 S3ObjectStorage 删除的目录数量。
  • ProfileEvent_DiskPlainRewritableLegacyLayoutDiskCount (UInt64) — 使用旧版布局的 plain_rewritable 磁盘数量。
  • ProfileEvent_S3Clients (UInt64) — 已创建的 S3 客户端数量。
  • ProfileEvent_TinyS3Clients (UInt64) — 复用其他客户端现有认证提供商的 S3 客户端副本数量。
  • ProfileEvent_EngineFileLikeReadFiles (UInt64) — 在处理文件的表引擎 (如 File/S3/URL/HDFS) 中读取的文件数量。
  • ProfileEvent_ReadBufferFromS3Microseconds (UInt64) — 从 S3 读取所花费的时间。
  • ProfileEvent_ReadBufferFromS3InitMicroseconds (UInt64) — 初始化与 S3 的连接所花费的时间。
  • ProfileEvent_ReadBufferFromS3Bytes (UInt64) — 从 S3 读取的字节数。
  • ProfileEvent_ReadBufferFromS3RequestsErrors (UInt64) — 从 S3 读取时发生的异常次数。
  • ProfileEvent_WriteBufferFromS3Microseconds (UInt64) — 写入 S3 所花费的时间。
  • ProfileEvent_WriteBufferFromS3Bytes (UInt64) — 写入 S3 的字节数。
  • ProfileEvent_WriteBufferFromS3RequestsErrors (UInt64) — 写入 S3 时发生的异常次数。
  • ProfileEvent_WriteBufferFromS3WaitInflightLimitMicroseconds (UInt64) — 当当前请求数达到 s3_max_inflight_parts_for_one_file 定义的限制时,等待其中部分请求完成所花费的时间。
  • ProfileEvent_QueryMemoryLimitExceeded (UInt64) — 查询超出内存限制的次数。
  • ProfileEvent_MemoryAllocatedWithoutCheck (UInt64) — 未检查内存约束即分配内存的次数。
  • ProfileEvent_MemoryAllocatedWithoutCheckBytes (UInt64) — 未检查内存约束即分配的字节数。
  • ProfileEvent_AzureGetObject (UInt64) — Azure API GetObject 调用次数。
  • ProfileEvent_AzureUpload (UInt64) — Azure Blob 存储 API Upload 调用次数
  • ProfileEvent_AzureStageBlock (UInt64) — Azure Blob 存储 API StageBlock 调用次数
  • ProfileEvent_AzureCommitBlockList (UInt64) — Azure Blob 存储 API CommitBlockList 调用次数
  • ProfileEvent_AzureCopyObject (UInt64) — Azure Blob 存储 API CopyObject 调用次数
  • ProfileEvent_AzureDeleteObjects (UInt64) — Azure Blob 存储 API DeleteObject(s) 调用次数。
  • ProfileEvent_AzureListObjects (UInt64) — Azure Blob 存储 API ListObjects 调用次数。
  • ProfileEvent_AzureGetProperties (UInt64) — Azure Blob 存储 API GetProperties 调用次数。
  • ProfileEvent_AzureCreateContainer (UInt64) — Azure Blob 存储 API CreateContainer 调用次数。
  • ProfileEvent_DiskAzureGetObject (UInt64) — Disk Azure API GetObject 调用次数。
  • ProfileEvent_DiskAzureUpload (UInt64) — Disk Azure blob 存储 API Upload 调用次数
  • ProfileEvent_DiskAzureStageBlock (UInt64) — Disk Azure blob 存储 API StageBlock 调用次数
  • ProfileEvent_DiskAzureCommitBlockList (UInt64) — Disk Azure blob 存储 API CommitBlockList 调用次数
  • ProfileEvent_DiskAzureCopyObject (UInt64) — Disk Azure blob 存储 API CopyObject 调用次数
  • ProfileEvent_DiskAzureListObjects (UInt64) — Disk Azure blob 存储 API ListObjects 调用次数。
  • ProfileEvent_DiskAzureDeleteObjects (UInt64) — Azure Blob 存储 API DeleteObject(s) 调用次数。
  • ProfileEvent_DiskAzureGetProperties (UInt64) — Disk Azure blob 存储 API GetProperties 调用次数。
  • ProfileEvent_DiskAzureCreateContainer (UInt64) — Disk Azure blob 存储 API CreateContainer 调用次数。
  • ProfileEvent_ReadBufferFromAzureMicroseconds (UInt64) — 从 Azure 读取所花费的时间。
  • ProfileEvent_ReadBufferFromAzureInitMicroseconds (UInt64) — 初始化与 Azure 的连接所花费的时间。
  • ProfileEvent_ReadBufferFromAzureBytes (UInt64) — 从 Azure 读取的字节数。
  • ProfileEvent_ReadBufferFromAzureRequestsErrors (UInt64) — 从 Azure 读取时发生异常的次数
  • ProfileEvent_CachedReadBufferReadFromCacheHits (UInt64) — 从文件系统缓存读取时命中缓存的次数。
  • ProfileEvent_CachedReadBufferReadFromCacheMisses (UInt64) — 从文件系统缓存读取时未命中缓存的次数。
  • ProfileEvent_CachedReadBufferReadFromSourceMicroseconds (UInt64) — 从文件系统缓存源读取所花费的时间 (来自远程文件系统等)
  • ProfileEvent_CachedReadBufferWaitReadBufferMicroseconds (UInt64) — 等待内部读取缓冲区所花费的时间 (包括缓存等待)
  • ProfileEvent_CachedReadBufferPredownloadedFromSourceMicroseconds (UInt64) — 为预下载从文件系统缓存源读取所花费的时间 (来自远程文件系统等)
  • ProfileEvent_CachedReadBufferReadFromCacheMicroseconds (UInt64) — 从文件系统缓存读取所花费的时间
  • ProfileEvent_CachedReadBufferReadFromSourceBytes (UInt64) — 从文件系统缓存源读取的字节数 (来自远程文件系统等)
  • ProfileEvent_CachedReadBufferPredownloadedFromSourceBytes (UInt64) — 为预下载从文件系统缓存源读取的字节数 (来自远程文件系统等)
  • ProfileEvent_CachedReadBufferReadFromCacheBytes (UInt64) — 从文件系统缓存读取的字节数
  • ProfileEvent_CachedReadBufferPredownloadedBytes (UInt64) — 从文件系统缓存源读取的字节数。缓存分段会作为一个整体按从左到右的顺序读取,因此可能需要预下载与当前任务无关的某个分段部分,才能获取所需数据
  • ProfileEvent_CachedReadBufferCacheWriteBytes (UInt64) — 从源 (远程文件系统等) 写入文件系统缓存的字节数
  • ProfileEvent_CachedReadBufferCacheWriteMicroseconds (UInt64) — 将数据写入文件系统缓存所花费的时间
  • ProfileEvent_CachedReadBufferCreateBufferMicroseconds (UInt64) — 准备缓冲区所花费的时间
  • ProfileEvent_CachedWriteBufferCacheWriteBytes (UInt64) — 从源 (远程文件系统等) 写入文件系统缓存的字节数
  • ProfileEvent_CachedWriteBufferCacheWriteMicroseconds (UInt64) — 将数据写入文件系统缓存所花费的时间
  • ProfileEvent_FilesystemCacheLoadMetadataMicroseconds (UInt64) — 加载文件系统缓存元数据所花费的时间
  • ProfileEvent_FilesystemCacheEvictedBytes (UInt64) — 从文件系统缓存中淘汰的字节数
  • ProfileEvent_FilesystemCacheCreatedKeyDirectories (UInt64) — 已创建的键目录数量
  • ProfileEvent_FilesystemCacheEvictedFileSegments (UInt64) — 从文件系统缓存中淘汰的 File 段数量
  • ProfileEvent_FilesystemCacheEvictedFileSegmentsDuringPriorityIncrease (UInt64) — 提高 File 段优先级时从文件系统缓存中淘汰的 File 段数量 (适用于 SLRU 缓存策略)
  • ProfileEvent_FilesystemCacheBackgroundDownloadQueuePush (UInt64) — 发送到文件系统缓存后台下载队列的 File 段数量
  • ProfileEvent_FilesystemCacheEvictionSkippedFileSegments (UInt64) — 因处于不可释放状态而跳过淘汰的 File 段数量
  • ProfileEvent_FilesystemCacheEvictionSkippedEvictingFileSegments (UInt64) — 因处于正在淘汰状态而跳过淘汰的 File 段数量
  • ProfileEvent_FilesystemCacheEvictionSkippedMovingFileSegments (UInt64) — 因处于移动状态而跳过淘汰的 File 段数量
  • ProfileEvent_FilesystemCacheEvictionTries (UInt64) — 文件系统缓存淘汰尝试次数
  • ProfileEvent_FilesystemCacheEvictionReusedIterator (UInt64) — 文件系统缓存迭代器复用次数
  • ProfileEvent_FilesystemCacheLockKeyMicroseconds (UInt64) — 锁定缓存键所花费的时间
  • ProfileEvent_FilesystemCacheLockMetadataMicroseconds (UInt64) — 锁定文件系统缓存元数据所花费的时间
  • ProfileEvent_FilesystemCachePriorityWriteLockMicroseconds (UInt64) — 为写入优先队列而锁定文件系统缓存所花费的时间
  • ProfileEvent_FilesystemCachePriorityReadLockMicroseconds (UInt64) — 为从优先队列读取而锁定文件系统缓存所花费的时间
  • ProfileEvent_FilesystemCacheStateLockMicroseconds (UInt64) — 获取状态锁时锁定文件系统缓存所花费的时间
  • ProfileEvent_FilesystemCacheReserveMicroseconds (UInt64) — 预留文件系统缓存空间所花费的时间
  • ProfileEvent_FilesystemCacheReserveAttempts (UInt64) — 预留文件系统缓存空间的尝试次数
  • ProfileEvent_FilesystemCacheEvictMicroseconds (UInt64) — 文件系统缓存淘汰所花费的时间
  • ProfileEvent_FilesystemCacheGetOrSetMicroseconds (UInt64) — 文件系统缓存 getOrSet() 所花费的时间
  • ProfileEvent_FilesystemCacheGetMicroseconds (UInt64) — 文件系统缓存 get() 所花费的时间
  • ProfileEvent_FilesystemCacheBackgroundEvictedFileSegments (UInt64) — 由后台线程驱逐的 File 段数量
  • ProfileEvent_FilesystemCacheBackgroundEvictedBytes (UInt64) — 由后台线程驱逐的字节数
  • ProfileEvent_FilesystemCacheCheckCorrectness (UInt64) — 调用 FileCache::assertCacheCorrectness 的次数
  • ProfileEvent_FilesystemCacheCheckCorrectnessMicroseconds (UInt64) — FileCache::assertCacheCorrectness 的耗时
  • ProfileEvent_FileSegmentWaitMicroseconds (UInt64) — 处于 DOWNLOADING 状态时的等待耗时
  • ProfileEvent_FileSegmentCompleteMicroseconds (UInt64) — 文件系统缓存中 FileSegment::complete() 的耗时
  • ProfileEvent_FileSegmentLockMicroseconds (UInt64) — 锁定 File 段的耗时
  • ProfileEvent_FileSegmentWriteMicroseconds (UInt64) — File 段执行 write() 的耗时
  • ProfileEvent_FileSegmentIncreasePriorityMicroseconds (UInt64) — 提升 File 段优先级的耗时
  • ProfileEvent_FileSegmentRemoveMicroseconds (UInt64) — File 段执行 remove() 的耗时
  • ProfileEvent_FileSegmentHolderCompleteMicroseconds (UInt64) — File 段持有者执行 complete() 的耗时
  • ProfileEvent_FileSegmentFailToIncreasePriority (UInt64) — 由于缓存锁竞争激烈而未能提升优先级的次数
  • ProfileEvent_FilesystemCacheFailToReserveSpaceBecauseOfLockContention (UInt64) — 由于缓存锁竞争激烈而跳过空间预留的次数
  • ProfileEvent_FilesystemCacheFailToReserveSpaceBecauseOfCacheResize (UInt64) — 由于缓存正在调整大小而跳过空间预留的次数
  • ProfileEvent_FilesystemCacheHoldFileSegments (UInt64) — 被持有的文件系统缓存 File 段数量
  • ProfileEvent_FilesystemCacheUnusedHoldFileSegments (UInt64) — 被持有但未使用的文件系统缓存 File 段数量 (例如由于寻道或 LIMIT n 等原因)
  • ProfileEvent_FilesystemCacheFreeSpaceKeepingThreadRun (UInt64) — 后台线程执行空闲空间维护任务的次数
  • ProfileEvent_FilesystemCacheFreeSpaceKeepingThreadWorkMilliseconds (UInt64) — 后台线程执行空闲空间维护任务的耗时
  • ProfileEvent_FilesystemCacheFailedEvictionCandidates (UInt64) — 在动态文件系统缓存驱逐期间,意外未能被驱逐的 File 段数量
  • ProfileEvent_RemoteFSSeeks (UInt64) — 异步缓冲区的寻道总次数
  • ProfileEvent_RemoteFSPrefetches (UInt64) — 从远程文件系统异步读取时进行的预取次数
  • ProfileEvent_RemoteFSCancelledPrefetches (UInt64) — 已取消的预取次数 (由于寻道)
  • ProfileEvent_RemoteFSUnusedPrefetches (UInt64) — 缓冲区销毁时仍在等待中的预取次数
  • ProfileEvent_RemoteFSPrefetchedReads (UInt64) — 从预取缓冲区读取的次数
  • ProfileEvent_RemoteFSPrefetchedBytes (UInt64) — 从预取缓冲区读取的字节数
  • ProfileEvent_RemoteFSUnprefetchedReads (UInt64) — 从未预取缓冲区读取的次数
  • ProfileEvent_RemoteFSUnprefetchedBytes (UInt64) — 从未预取缓冲区读取的字节数
  • ProfileEvent_RemoteFSLazySeeks (UInt64) — 延迟寻道次数
  • ProfileEvent_RemoteFSSeeksWithReset (UInt64) — 导致新连接的寻道次数
  • ProfileEvent_RemoteFSBuffers (UInt64) — 为从远程文件系统异步读取而创建的缓冲区数量
  • ProfileEvent_MergeTreePrefetchedReadPoolInit (UInt64) — 在 MergeTreePrefetchedReadPool 中准备任务所花费的时间
  • ProfileEvent_WaitPrefetchTaskMicroseconds (UInt64) — 等待预取读取器所花费的时间
  • ProfileEvent_ThreadpoolReaderTaskMicroseconds (UInt64) — 异步读取过程中获取数据所花费的时间
  • ProfileEvent_ThreadpoolReaderPrepareMicroseconds (UInt64) — 准备阶段所花费的时间 (例如调用 reader 的 seek() method)
  • ProfileEvent_ThreadpoolReaderReadBytes (UInt64) — 异步读取中由线程池任务读取的字节数
  • ProfileEvent_ThreadpoolReaderSubmit (UInt64) — 异步读取中由线程池任务读取的字节数
  • ProfileEvent_ThreadpoolReaderSubmitReadSynchronously (UInt64) — 未在线程池中调度任务而改为同步读取的次数
  • ProfileEvent_ThreadpoolReaderSubmitReadSynchronouslyBytes (UInt64) — 同步读取的字节数
  • ProfileEvent_ThreadpoolReaderSubmitReadSynchronouslyMicroseconds (UInt64) — 同步读取所花费的时间
  • ProfileEvent_ThreadpoolReaderSubmitLookupInCacheMicroseconds (UInt64) — 检查内容是否已缓存所花费的时间
  • ProfileEvent_AsynchronousReaderIgnoredBytes (UInt64) — 异步读取过程中被忽略的字节数
  • ProfileEvent_ReadBufferSeekCancelConnection (UInt64) — 导致新连接的寻道次数 (S3、HTTP)
  • ProfileEvent_SleepFunctionCalls (UInt64) — sleep 函数 (sleep、sleepEachRow) 被调用的次数。
  • ProfileEvent_SleepFunctionMicroseconds (UInt64) — sleep 函数 (sleep、sleepEachRow) 中设置的休眠时间。
  • ProfileEvent_SleepFunctionElapsedMicroseconds (UInt64) — sleep 函数 (sleep、sleepEachRow) 中实际休眠所花费的时间。
  • ProfileEvent_ThreadPoolReaderPageCacheHit (UInt64) — ThreadPoolReader 内部读取命中页面缓存的次数。
  • ProfileEvent_ThreadPoolReaderPageCacheHitBytes (UInt64) — ThreadPoolReader 内部从页面缓存读取的字节数。
  • ProfileEvent_ThreadPoolReaderPageCacheHitElapsedMicroseconds (UInt64) — ThreadPoolReader 从页面缓存读取数据所花费的时间。
  • ProfileEvent_ThreadPoolReaderPageCacheMiss (UInt64) — ThreadPoolReader 内部读取未命中页面缓存并转交给线程池的次数。
  • ProfileEvent_ThreadPoolReaderPageCacheMissBytes (UInt64) — ThreadPoolReader 内部读取未命中页面缓存并转交给线程池时读取的字节数。
  • ProfileEvent_ThreadPoolReaderPageCacheMissElapsedMicroseconds (UInt64) — 在 ThreadPoolReader 的异步作业中读取数据所耗费的时间——当读取未命中 page cache 时。
  • ProfileEvent_AsynchronousReadWaitMicroseconds (UInt64) — 在异步本地读取中等待异步读取所耗费的时间。
  • ProfileEvent_SynchronousReadWaitMicroseconds (UInt64) — 在异步本地读取中等待同步读取所耗费的时间。
  • ProfileEvent_AsynchronousRemoteReadWaitMicroseconds (UInt64) — 等待异步远程读取所耗费的时间。
  • ProfileEvent_SynchronousRemoteReadWaitMicroseconds (UInt64) — 等待同步远程读取所耗费的时间。
  • ProfileEvent_ExternalDataSourceLocalCacheReadBytes (UInt64) — 在 RemoteReadBufferCache 中从本地缓存缓冲区读取的字节数
  • ProfileEvent_MainConfigLoads (UInt64) — 重新加载主配置的次数。
  • ProfileEvent_AggregationPreallocatedElementsInHashTables (UInt64) — 为聚合在哈希表中预分配的元素数量。
  • ProfileEvent_AggregationHashTablesInitializedAsTwoLevel (UInt64) — 为聚合初始化为两级结构的哈希表数量。
  • ProfileEvent_AggregationOptimizedEqualRangesOfKeys (UInt64) — 有多少个块应用了键相等范围优化
  • ProfileEvent_HashJoinPreallocatedElementsInHashTables (UInt64) — 为哈希 join 在哈希表中预分配的元素数量。
  • ProfileEvent_MetadataFromKeeperCacheHit (UInt64) — 对象存储元数据请求在未向 Keeper 发出请求的情况下直接由缓存响应的次数
  • ProfileEvent_MetadataFromKeeperCacheMiss (UInt64) — 对象存储元数据请求必须由 Keeper 响应的次数
  • ProfileEvent_MetadataFromKeeperCacheTooManyInvalidated (UInt64) — 文件系统缓存返回过多失效条目的次数
  • ProfileEvent_MetadataFromKeeperCacheUpdateMicroseconds (UInt64) — 更新缓存所耗费的总时间,包括等待 Keeper 响应的时间
  • ProfileEvent_MetadataFromKeeperUpdateCacheOneLevel (UInt64) — 对目录树单个层级执行缓存更新的次数
  • ProfileEvent_MetadataFromKeeperTransactionCommit (UInt64) — 尝试执行元数据事务提交的次数
  • ProfileEvent_MetadataFromKeeperTransactionCommitRetry (UInt64) — 重试元数据事务提交的次数
  • ProfileEvent_MetadataFromKeeperCleanupTransactionCommit (UInt64) — 针对已删除对象清理操作尝试执行元数据事务提交的次数
  • ProfileEvent_MetadataFromKeeperCleanupTransactionCommitRetry (UInt64) — 针对已删除对象清理操作重试元数据事务提交的次数
  • ProfileEvent_MetadataFromKeeperOperations (UInt64) — 向 Keeper 发起请求的次数
  • ProfileEvent_MetadataFromKeeperIndividualOperations (UInt64) — 通过向 Keeper 发起单个或批量请求读取或写入的路径数量
  • ProfileEvent_MetadataFromKeeperIndividualOperationsMicroseconds (UInt64) — 向 Keeper 发起单个或批量请求期间所耗费的时间
  • ProfileEvent_MetadataFromKeeperReconnects (UInt64) — 重新连接 Keeper 的次数
  • ProfileEvent_MetadataFromKeeperBackgroundCleanupObjects (UInt64) — 后台任务执行旧已删除对象清理的次数
  • ProfileEvent_MetadataFromKeeperBackgroundCleanupTransactions (UInt64) — 后台任务清理旧事务幂等性标记的次数
  • ProfileEvent_MetadataFromKeeperBackgroundCleanupBlobs (UInt64) — 后台任务清理空 blob 布局分片的次数
  • ProfileEvent_MetadataFromKeeperBackgroundCleanupErrors (UInt64) — 后台清理任务中发生错误的次数
  • ProfileEvent_BlobKillerThreadRuns (UInt64) — BlobKiller 线程执行次数
  • ProfileEvent_BlobKillerThreadLockedBlobs (UInt64) — 从元数据存储返回的 blob 数量
  • ProfileEvent_BlobKillerThreadRemoveTasks (UInt64) — BlobKiller 创建的删除任务数量
  • ProfileEvent_BlobKillerThreadRemovedBlobs (UInt64) — BlobKiller 删除的 blob 数量
  • ProfileEvent_BlobKillerThreadRecordedBlobs (UInt64) — BlobKiller 已将其删除记录到元数据存储中的 blob 数量
  • ProfileEvent_BlobKillerThreadLockBlobsErrors (UInt64) — BlobKiller 执行期间发生 blob 锁定错误的次数
  • ProfileEvent_BlobKillerThreadRemoveBlobsErrors (UInt64) — BlobKiller 执行期间发生 blob 删除错误的次数
  • ProfileEvent_BlobKillerThreadRecordBlobsErrors (UInt64) — BlobKiller 执行期间发生 blob 记录错误的次数
  • ProfileEvent_BlobCopierThreadRuns (UInt64) — BlobCopier 线程执行次数
  • ProfileEvent_BlobCopierThreadLockedBlobs (UInt64) — 从元数据存储返回的 blob 数量
  • ProfileEvent_BlobCopierThreadReplicatedBlobs (UInt64) — BlobCopier 复制的 blob 数量
  • ProfileEvent_BlobCopierThreadRecordedBlobs (UInt64) — BlobCopier 已将其复制记录到元数据存储中的 blob 数量
  • ProfileEvent_BlobCopierThreadLockBlobsErrors (UInt64) — BlobCopier 执行期间发生 blob 锁定错误的次数
  • ProfileEvent_BlobCopierThreadReplicateBlobsErrors (UInt64) — BlobCopier 执行期间发生 blob 复制错误的次数
  • ProfileEvent_BlobCopierThreadRecordBlobsErrors (UInt64) — BlobCopier 执行期间发生 blob 记录错误的次数
  • ProfileEvent_SharedMergeTreeMetadataCacheHintLoadedFromCache (UInt64) — 无需访问 Keeper 即命中元数据缓存提示的次数
  • ProfileEvent_KafkaRebalanceRevocations (UInt64) — 分区撤销次数 (消费者组再平衡的第一阶段)
  • ProfileEvent_KafkaRebalanceAssignments (UInt64) — 分区分配次数 (消费者组再平衡的最后阶段)
  • ProfileEvent_KafkaRebalanceErrors (UInt64) — 消费者组再平衡失败的次数
  • ProfileEvent_KafkaMessagesPolled (UInt64) — 从 librdkafka 轮询到 ClickHouse 的 Kafka 消息数量
  • ProfileEvent_KafkaMessagesRead (UInt64) — ClickHouse 已处理的 Kafka 消息数量
  • ProfileEvent_KafkaMessagesFailed (UInt64) — ClickHouse 解析失败的 Kafka 消息数量
  • ProfileEvent_KafkaRowsRead (UInt64) — 从 Kafka 消息中解析出的行数
  • ProfileEvent_KafkaRowsRejected (UInt64) — 已解析但随后被拒绝的行数 (由于再平衡、错误或类似原因) 。这些行会在再平衡后再次被消费。
  • ProfileEvent_KafkaDirectReads (UInt64) — 自 server 启动以来,直接从 Kafka 表执行 select 查询的次数
  • ProfileEvent_KafkaBackgroundReads (UInt64) — 自 server 启动以来,从 Kafka 读取数据并在后台填充 materialized view 的次数
  • ProfileEvent_KafkaCommits (UInt64) — 将已消费的 offset 成功提交到 Kafka 的次数 (通常应与 KafkaBackgroundReads 相同)
  • ProfileEvent_KafkaCommitFailures (UInt64) — 将已消费的 offset 提交到 Kafka 失败的次数 (通常表明存在某种数据重复)
  • ProfileEvent_KafkaConsumerErrors (UInt64) — librdkafka 在 poll 期间报告的错误次数
  • ProfileEvent_KafkaMVNotReady (UInt64) — 向尚未就绪的 materialized view 流式传输数据时失败的次数
  • ProfileEvent_KafkaWrites (UInt64) — 向 Kafka 表写入 (insert) 的次数
  • ProfileEvent_KafkaRowsWritten (UInt64) — 插入到 Kafka 表中的行数
  • ProfileEvent_KafkaProducerFlushes (UInt64) — 对 Kafka producer 显式执行 flush 的次数
  • ProfileEvent_KafkaMessagesProduced (UInt64) — 发送到 Kafka 的消息数
  • ProfileEvent_KafkaProducerErrors (UInt64) — 向 Kafka 生产消息时发生的错误次数
  • ProfileEvent_ScalarSubqueriesGlobalCacheHit (UInt64) — 使用全局缓存读取标量子查询的次数
  • ProfileEvent_ScalarSubqueriesLocalCacheHit (UInt64) — 使用本地缓存读取标量子查询的次数
  • ProfileEvent_ScalarSubqueriesCacheMiss (UInt64) — 读取标量子查询时未命中缓存,因此必须完整计算的次数
  • ProfileEvent_SchemaInferenceCacheHits (UInt64) — 在 schema 缓存中找到所请求源的次数
  • ProfileEvent_SchemaInferenceCacheSchemaHits (UInt64) — 在 schema inference 期间,在 schema 缓存中找到 schema 的次数
  • ProfileEvent_SchemaInferenceCacheNumRowsHits (UInt64) — 在从文件计数期间,在 schema 缓存中找到行数的次数
  • ProfileEvent_SchemaInferenceCacheMisses (UInt64) — 在 schema 缓存中未找到所请求源的次数
  • ProfileEvent_SchemaInferenceCacheSchemaMisses (UInt64) — 在 schema inference 期间,所请求源已在缓存中但 schema 不在缓存中的次数
  • ProfileEvent_SchemaInferenceCacheNumRowsMisses (UInt64) — 在从文件计数时,所请求源已在缓存中但行数不在缓存中的次数
  • ProfileEvent_SchemaInferenceCacheEvictions (UInt64) — 因溢出而从缓存中逐出 schema 的次数
  • ProfileEvent_SchemaInferenceCacheInvalidations (UInt64) — 因数据变更导致缓存中的 schema 失效的次数
  • ProfileEvent_KeeperPacketsSent (UInt64) — Keeper server 发送的数据包数
  • ProfileEvent_KeeperPacketsReceived (UInt64) — Keeper 服务器接收的数据包数
  • ProfileEvent_KeeperRequestTotal (UInt64) — Keeper 服务器上的请求总数
  • ProfileEvent_KeeperRequestTotalWithSubrequests (UInt64) — Keeper 服务器上的请求总数,在多请求中每个子请求都会单独计数
  • ProfileEvent_KeeperLatency (UInt64) — Keeper 延迟
  • ProfileEvent_KeeperTotalElapsedMicroseconds (UInt64) — 单个请求的 Keeper 总延迟
  • ProfileEvent_KeeperProcessElapsedMicroseconds (UInt64) — 单个请求的 Keeper 提交延迟
  • ProfileEvent_KeeperPreprocessElapsedMicroseconds (UInt64) — 单个请求的 Keeper 预处理延迟
  • ProfileEvent_KeeperStorageLockWaitMicroseconds (UInt64) — 等待获取 Keeper 存储锁的耗时
  • ProfileEvent_KeeperStorageSharedLockWaitMicroseconds (UInt64) — 等待获取 Keeper 存储共享锁的耗时
  • ProfileEvent_KeeperChangelogLockWaitMicroseconds (UInt64) — 等待获取 Keeper 更新日志锁的耗时
  • ProfileEvent_KeeperServerWriteLockWaitMicroseconds (UInt64) — 等待获取 Keeper 服务器写锁的耗时
  • ProfileEvent_KeeperSessionCallbackLockWaitMicroseconds (UInt64) — 等待获取 Keeper 会话回调锁的耗时
  • ProfileEvent_KeeperReadRequestQueueLockWaitMicroseconds (UInt64) — 等待获取 Keeper 读取请求队列锁的耗时
  • ProfileEvent_KeeperProcessAndResponsesLockWaitMicroseconds (UInt64) — 等待获取 Keeper 处理与响应锁的耗时
  • ProfileEvent_KeeperCommitWaitElapsedMicroseconds (UInt64) — 等待特定日志提交完成的耗时
  • ProfileEvent_KeeperBatchMaxCount (UInt64) — 批次大小受数量限制的次数
  • ProfileEvent_KeeperBatchMaxTotalSize (UInt64) — 批次大小受总字节数限制的次数
  • ProfileEvent_KeeperReadBatchCount (UInt64) — Keeper 处理的读取请求批次数
  • ProfileEvent_KeeperReadBatchTotalRequests (UInt64) — Keeper 以批次方式处理的读取请求总数
  • ProfileEvent_KeeperCommits (UInt64) — 成功提交的次数
  • ProfileEvent_KeeperCommitsFailed (UInt64) — 提交失败的次数
  • ProfileEvent_KeeperSnapshotCreations (UInt64) — 创建快照的次数
  • ProfileEvent_KeeperSnapshotCreationsFailed (UInt64) — 创建快照失败的次数
  • ProfileEvent_KeeperSnapshotApplys (UInt64) — 应用快照的次数
  • ProfileEvent_KeeperSnapshotApplysFailed (UInt64) — 应用快照失败的次数
  • ProfileEvent_KeeperReadSnapshot (UInt64) — 已完成的快照读取次数
  • ProfileEvent_KeeperReadSnapshotObject (UInt64) — 发送给跟随者的快照对象数量
  • ProfileEvent_KeeperReadSnapshotFailed (UInt64) — 快照读取失败次数
  • ProfileEvent_KeeperSnapshotRemoteLoaderErrors (UInt64) — 向跟随者提供快照时,RemoteSnapshotLoader 中发生的远程读取错误次数
  • ProfileEvent_KeeperSaveSnapshotObject (UInt64) — 从 leader 接收的快照对象数量
  • ProfileEvent_KeeperSaveSnapshotFailed (UInt64) — 快照保存失败次数
  • ProfileEvent_KeeperSaveSnapshot (UInt64) — 快照保存次数
  • ProfileEvent_KeeperCreateRequest (UInt64) — create 请求次数
  • ProfileEvent_KeeperRemoveRequest (UInt64) — remove 请求次数
  • ProfileEvent_KeeperSetRequest (UInt64) — set 请求次数
  • ProfileEvent_KeeperReconfigRequest (UInt64) — reconfig 请求次数
  • ProfileEvent_KeeperCheckRequest (UInt64) — check 请求次数
  • ProfileEvent_KeeperMultiRequest (UInt64) — multi 请求次数
  • ProfileEvent_KeeperMultiReadRequest (UInt64) — multi read 请求次数
  • ProfileEvent_KeeperGetRequest (UInt64) — get 请求次数
  • ProfileEvent_KeeperListRequest (UInt64) — list 请求次数
  • ProfileEvent_KeeperListRecursiveRequest (UInt64) — 递归获取子节点请求次数
  • ProfileEvent_KeeperExistsRequest (UInt64) — exists 请求次数
  • ProfileEvent_KeeperSetWatchesRequest (UInt64) — set watches 请求次数
  • ProfileEvent_KeeperAddWatchRequest (UInt64) — add watches 请求次数
  • ProfileEvent_KeeperRemoveWatchRequest (UInt64) — remove watches 请求次数
  • ProfileEvent_KeeperCheckWatchRequest (UInt64) — remove watches 请求次数
  • ProfileEvent_KeeperRequestRejectedDueToSoftMemoryLimitCount (UInt64) — 因超出软内存限制而被拒绝的请求数量
  • ProfileEvent_KeeperStaleRequestsSkipped (UInt64) — 因会话已失效而被跳过的 Keeper 请求数量
  • ProfileEvent_KeeperLiveSessionsLockWaitMicroseconds (UInt64) — 等待获取 Keeper 活跃会话锁所耗费的时间
  • ProfileEvent_OverflowBreak (UInt64) — 在设置 ’*_overflow_mode’ = ‘break’ 时,因查询复杂度限制而中止数据处理且结果不完整的次数。
  • ProfileEvent_OverflowThrow (UInt64) — 在设置 ’*_overflow_mode’ = ‘throw’ 时,因查询复杂度限制而中止数据处理并抛出异常的次数。
  • ProfileEvent_OverflowAny (UInt64) — 近似 GROUP BY 生效的次数:即仅对前 ‘max_rows_to_group_by’ 个唯一键执行聚合,而由于 ‘group_by_overflow_mode’ = ‘any’,其余键被忽略。
  • ProfileEvent_S3QueueSetFileProcessingMicroseconds (UInt64) — 将文件设置为处理中状态所耗费的时间
  • ProfileEvent_S3QueueSetFileProcessedMicroseconds (UInt64) — 将文件设置为已处理状态所耗费的时间
  • ProfileEvent_S3QueueSetFileFailedMicroseconds (UInt64) — 将文件设置为失败状态所耗费的时间
  • ProfileEvent_ObjectStorageQueueFailedFiles (UInt64) — 处理失败的文件数量
  • ProfileEvent_ObjectStorageQueueProcessedFiles (UInt64) — 已处理的文件数量
  • ProfileEvent_ObjectStorageQueueCleanupMaxSetSizeOrTTLMicroseconds (UInt64) — 将文件设置为失败状态所耗费的时间
  • ProfileEvent_ObjectStorageQueuePullMicroseconds (UInt64) — 读取文件数据所耗费的时间
  • ProfileEvent_ObjectStorageQueueFailedToBatchSetProcessing (UInt64) — 批次 set processing request 失败的次数
  • ProfileEvent_ObjectStorageQueueTrySetProcessingRequests (UInt64) — 尝试发起 set processing request 的次数
  • ProfileEvent_ObjectStorageQueueTrySetProcessingSucceeded (UInt64) — 成功将文件设置为处理中状态的次数
  • ProfileEvent_ObjectStorageQueueTrySetProcessingFailed (UInt64) — 未能将文件设置为处理中状态的次数
  • ProfileEvent_ObjectStorageQueueListedFiles (UInt64) — StorageS3(Azure)Queue 中列出的文件数量
  • ProfileEvent_ObjectStorageQueueFilteredFiles (UInt64) — StorageS3(Azure)Queue 中过滤后的文件数量
  • ProfileEvent_ObjectStorageQueueReadFiles (UInt64) — 已读取的文件数量 (不等于实际插入的文件数量)
  • ProfileEvent_ObjectStorageQueueReadRows (UInt64) — 已读取的行数量 (不等于实际插入的行数量)
  • ProfileEvent_ObjectStorageQueueReadBytes (UInt64) — 已读取的字节数 (不等于实际插入的字节数)
  • ProfileEvent_ObjectStorageQueueExceptionsDuringRead (UInt64) — S3(Azure)Queue 中读取期间发生的异常次数
  • ProfileEvent_ObjectStorageQueueExceptionsDuringInsert (UInt64) — S3(Azure)Queue 中插入期间发生的异常次数
  • ProfileEvent_ObjectStorageQueueMovedObjects (UInt64) — 作为 after_processing = move 的一部分被移动的对象数量
  • ProfileEvent_ObjectStorageQueueRemovedObjects (UInt64) — 作为 after_processing = delete 的一部分被删除的对象数量
  • ProfileEvent_ObjectStorageQueueTaggedObjects (UInt64) — 作为 after_processing = tag 的一部分被添加标签的对象数量
  • ProfileEvent_ObjectStorageQueueInsertIterations (UInt64) — 插入迭代次数
  • ProfileEvent_ObjectStorageQueueCommitRequests (UInt64) — 将文件提交为失败或已处理状态的 keeper 请求数
  • ProfileEvent_ObjectStorageQueueSuccessfulCommits (UInt64) — 成功的 keeper commit 次数
  • ProfileEvent_ObjectStorageQueueUnsuccessfulCommits (UInt64) — 失败的 keeper commit 次数
  • ProfileEvent_ObjectStorageQueueCancelledFiles (UInt64) — StorageS3(Azure)Queue 中已取消的文件数
  • ProfileEvent_ObjectStorageQueueProcessedRows (UInt64) — StorageS3(Azure)Queue 中已处理的行数
  • ProfileEvent_ObjectStorageListedObjects (UInt64) — 在应用任何过滤之前,对象存储列表 API 返回的对象总数。
  • ProfileEvent_ObjectStorageGlobFilteredObjects (UInt64) — 与 glob 或 Regex 模式不匹配、因此在列出期间被跳过的对象数。
  • ProfileEvent_ObjectStoragePredicateFilteredObjects (UInt64) — 通过 _path/_file 上的虚拟列谓词过滤掉的对象数。
  • ProfileEvent_ObjectStorageReadObjects (UInt64) — 对象存储 source 实际打开并读取的对象数。
  • ProfileEvent_ServerStartupMilliseconds (UInt64) — 从启动 server 到开始监听套接字所经过的时间,单位为毫秒
  • ProfileEvent_IOUringSQEsSubmitted (UInt64) — 已提交的 io_uring SQE 总数
  • ProfileEvent_IOUringSQEsResubmitsAsync (UInt64) — 已执行的异步 io_uring SQE 重新提交总数
  • ProfileEvent_IOUringSQEsResubmitsSync (UInt64) — 已执行的同步 io_uring SQE 重新提交总数
  • ProfileEvent_IOUringCQEsCompleted (UInt64) — 成功完成的 io_uring CQE 总数
  • ProfileEvent_IOUringCQEsFailed (UInt64) — 已完成但失败的 io_uring CQE 总数
  • ProfileEvent_BackupsOpenedForRead (UInt64) — 以只读方式打开的备份数量
  • ProfileEvent_BackupsOpenedForWrite (UInt64) — 以写入方式打开的备份数量
  • ProfileEvent_BackupsOpenedForUnlock (UInt64) — 以解锁方式打开的备份数量
  • ProfileEvent_BackupReadMetadataMicroseconds (UInt64) — 从 .backup 文件读取备份 metadata 所花费的时间
  • ProfileEvent_BackupWriteMetadataMicroseconds (UInt64) — 将备份 metadata 写入 .backup 文件所花费的时间
  • ProfileEvent_BackupEntriesCollectorMicroseconds (UInt64) — 生成备份条目所花费的时间
  • ProfileEvent_BackupEntriesCollectorForTablesDataMicroseconds (UInt64) — 为表数据生成备份条目所花费的时间
  • ProfileEvent_BackupEntriesCollectorRunPostTasksMicroseconds (UInt64) — 生成备份条目后运行后置任务所花费的时间
  • ProfileEvent_BackupPreparingFileInfosMicroseconds (UInt64) — 为备份条目准备文件信息所花费的时间
  • ProfileEvent_BackupReadLocalFilesToCalculateChecksums (UInt64) — 为计算备份条目的 checksums 而在本地读取的文件数
  • ProfileEvent_BackupReadLocalBytesToCalculateChecksums (UInt64) — 为计算备份条目的校验和而在本地读取的文件总大小
  • ProfileEvent_BackupReadRemoteFilesToCalculateChecksums (UInt64) — 为计算备份条目的校验和而从远程磁盘读取的文件数量
  • ProfileEvent_BackupReadRemoteBytesToCalculateChecksums (UInt64) — 为计算备份条目的校验和而从远程磁盘读取的文件总大小
  • ProfileEvent_BackupLockFileReads (UInt64) — 创建备份时读取 ‘.lock’ 文件的次数
  • ProfileEvent_RestorePartsSkippedFiles (UInt64) — 恢复 parts 时跳过的文件数量
  • ProfileEvent_RestorePartsSkippedBytes (UInt64) — 恢复 parts 时跳过的文件总大小
  • ProfileEvent_ReadTaskRequestsReceived (UInt64) — 为选择读取任务,由远程服务器回调到发起端服务器的请求次数 (用于 s3Cluster 表函数及类似场景) 。在发起端服务器侧统计。
  • ProfileEvent_MergeTreeReadTaskRequestsReceived (UInt64) — 为选择读取任务,由远程服务器回调到发起端服务器的请求次数 (用于 MergeTree 表) 。在发起端服务器侧统计。
  • ProfileEvent_ReadTaskRequestsSent (UInt64) — 为选择读取任务,由远程服务器回调到发起端服务器的请求次数 (用于 s3Cluster 表函数及类似场景) 。在远程服务器侧统计。
  • ProfileEvent_MergeTreeReadTaskRequestsSent (UInt64) — 为选择读取任务,由远程服务器回调到发起端服务器的请求次数 (用于 MergeTree 表) 。在远程服务器侧统计。
  • ProfileEvent_MergeTreeAllRangesAnnouncementsSent (UInt64) — 远程服务器向发起端服务器发送有关数据分区片段集合的通知次数 (用于 MergeTree 表) 。在远程服务器侧统计。
  • ProfileEvent_ReadTaskRequestsSentElapsedMicroseconds (UInt64) — 为选择读取任务,由远程服务器回调到发起端服务器所耗费的时间 (用于 s3Cluster 表函数及类似场景) 。在远程服务器侧统计。
  • ProfileEvent_MergeTreeReadTaskRequestsSentElapsedMicroseconds (UInt64) — 为选择读取任务,由远程服务器回调到发起端服务器所耗费的时间 (用于 MergeTree 表) 。在远程服务器侧统计。
  • ProfileEvent_MergeTreeAllRangesAnnouncementsSentElapsedMicroseconds (UInt64) — 远程服务器向发起端服务器发送有关数据分区片段集合的通知所耗费的时间 (用于 MergeTree 表) 。在远程服务器侧统计。
  • ProfileEvent_MergerMutatorsGetPartsForMergeElapsedMicroseconds (UInt64) — 获取数据分区片段快照并据此构建 ranges 所耗费的时间。
  • ProfileEvent_MergerMutatorPrepareRangesForMergeElapsedMicroseconds (UInt64) — 准备可根据 merge predicate 进行合并的 parts ranges 所耗费的时间。
  • ProfileEvent_MergerMutatorSelectPartsForMergeElapsedMicroseconds (UInt64) — 从可合并的 ranges 中选择 parts 所耗费的时间。
  • ProfileEvent_MergerMutatorRangesForMergeCount (UInt64) — 候选合并 ranges 的数量
  • ProfileEvent_MergerMutatorPartsInRangesForMergeCount (UInt64) — 候选合并 parts 的数量
  • ProfileEvent_MergerMutatorSelectRangePartsCount (UInt64) — 所选合并 range 中 parts 的数量
  • ProfileEvent_ConnectionPoolIsFullMicroseconds (UInt64) — 等待连接池中可用 slot 的总时间。
  • ProfileEvent_AsyncLoaderWaitMicroseconds (UInt64) — 查询等待异步加载器作业的总时间。
  • ProfileEvent_DistrCacheServerSwitches (UInt64) — 分布式缓存读取缓冲区事件。在读/写穿透缓存中,分布式缓存服务器之间切换的次数
  • ProfileEvent_DistrCacheReadMicroseconds (UInt64) — 分布式缓存读取缓冲区事件。从分布式缓存读取所花费的时间
  • ProfileEvent_DistrCacheFallbackReadMicroseconds (UInt64) — 分布式缓存读取缓冲区事件。从后备缓冲区而非分布式缓存读取所花费的时间
  • ProfileEvent_DistrCachePrecomputeRangesMicroseconds (UInt64) — 分布式缓存读取缓冲区事件。预先计算读取范围所花费的时间
  • ProfileEvent_DistrCacheNextImplMicroseconds (UInt64) — 分布式缓存读取缓冲区事件。在 ReadBufferFromDistributedCache::nextImpl 中花费的时间
  • ProfileEvent_DistrCacheStartRangeMicroseconds (UInt64) — 分布式缓存读取缓冲区事件。使用分布式缓存开始新的读取范围所花费的时间
  • ProfileEvent_DistrCacheRangeChange (UInt64) — 分布式缓存读取缓冲区事件。因寻道/last_position 变化而更改读取范围的次数
  • ProfileEvent_DistrCacheRangeResetBackward (UInt64) — 分布式缓存读取缓冲区事件。因寻道/last_position 变化而重置读取范围的次数
  • ProfileEvent_DistrCacheRangeResetForward (UInt64) — 分布式缓存读取缓冲区事件。因寻道/last_position 变化而重置读取范围的次数
  • ProfileEvent_DistrCacheReconnectsAfterTimeout (UInt64) — 分布式缓存读取缓冲区事件。超时后的重连次数
  • ProfileEvent_DistrCacheServerUpdates (UInt64) — Distributed Cache 事件。读取或写入期间,由于哈希选中的服务器发生变化 (例如服务器被注销) 而导致的服务器切换次数
  • ProfileEvent_DistrCacheReadErrors (UInt64) — 分布式缓存读取缓冲区事件。读取期间发生的分布式缓存错误次数
  • ProfileEvent_DistrCacheWriteErrors (UInt64) — 分布式缓存写入缓冲区事件。写入期间发生的分布式缓存错误次数
  • ProfileEvent_DistrCacheWriteReconnectsAfterTimeout (UInt64) — 分布式缓存写入缓冲区事件。超时后的重连次数
  • ProfileEvent_DistrCacheWriteMicroseconds (UInt64) — 分布式缓存写入缓冲区事件。在 WriteBufferFromDistributedCache::writeToFileSegment 中花费的时间
  • ProfileEvent_DistrCacheWriteBytes (UInt64) — 分布式缓存写入缓冲区事件。写入分布式缓存的字节数
  • ProfileEvent_DistrCacheObjectStorageWriteMicroseconds (UInt64) — 分布式缓存写入缓冲区事件。写入对象存储所花费的时间
  • ProfileEvent_DistrCacheObjectStorageWriteBytes (UInt64) — 分布式缓存写入缓冲区事件。写入对象存储的字节数
  • ProfileEvent_DistrCacheGetResponseMicroseconds (UInt64) — Distributed Cache 客户端事件。等待分布式缓存响应所花费的时间
  • ProfileEvent_DistrCacheMakeRequestErrors (UInt64) — Distributed Cache 客户端事件。发起请求时发生的分布式缓存错误次数
  • ProfileEvent_DistrCacheReceiveResponseErrors (UInt64) — Distributed Cache 客户端事件。接收请求响应时发生的分布式缓存错误次数
  • ProfileEvent_DistrCacheReceivedDataPackets (UInt64) — Distributed Cache 客户端事件。从分布式缓存接收到的 Data 数据包总数
  • ProfileEvent_DistrCacheReceivedDataPacketsBytes (UInt64) — Distributed Cache 客户端事件。从分布式缓存接收到的 Data 数据包字节总数
  • ProfileEvent_DistrCacheReceivedOkPackets (UInt64) — Distributed Cache 客户端事件。从分布式缓存接收到的 Ok 数据包总数
  • ProfileEvent_DistrCacheReceivedErrorPackets (UInt64) — 分布式缓存客户端事件。从分布式缓存接收到的 Error 数据包总数
  • ProfileEvent_DistrCacheReceivedCredentialsRefreshPackets (UInt64) — 分布式缓存客户端事件。从分布式缓存接收到的 RefreshCredentials 数据包总数
  • ProfileEvent_DistrCacheReceivedStopPackets (UInt64) — 分布式缓存客户端事件。从分布式缓存接收到的 Stop 数据包总数
  • ProfileEvent_DistrCacheSentDataPackets (UInt64) — 分布式缓存客户端事件。发送到分布式缓存的 Data 数据包总数
  • ProfileEvent_DistrCacheSentDataPacketsBytes (UInt64) — 分布式缓存客户端事件。发送到分布式缓存的 Data 数据包字节数
  • ProfileEvent_DistrCacheUnusedPackets (UInt64) — 分布式缓存客户端事件。从分布式缓存跳过的未使用数据包数量
  • ProfileEvent_DistrCacheUnusedDataPacketsBytes (UInt64) — 分布式缓存客户端事件。被忽略的 Data 数据包字节数
  • ProfileEvent_DistrCacheUnusedPacketsBufferAllocations (UInt64) — 分布式缓存客户端事件。无法复用现有缓冲区时额外分配缓冲区的次数
  • ProfileEvent_DistrCacheLockRegistryMicroseconds (UInt64) — Distributed Cache registry 事件。获取 DistributedCacheRegistry 锁所花费的时间
  • ProfileEvent_DistrCacheRegistryUpdateMicroseconds (UInt64) — Distributed Cache registry 事件。更新分布式缓存 registry 所花费的时间
  • ProfileEvent_DistrCacheRegistryUpdates (UInt64) — Distributed Cache registry 事件。分布式缓存 registry 的更新次数
  • ProfileEvent_DistrCacheHashRingRebuilds (UInt64) — Distributed Cache registry 事件。分布式缓存哈希环重建次数
  • ProfileEvent_DistrCacheSuccessfulRegistryUpdates (UInt64) — Distributed Cache registry 事件。服务器 registry 成功更新的次数
  • ProfileEvent_DistrCacheUnsuccessfulRegistryUpdates (UInt64) — Distributed Cache registry 事件。服务器 registry 更新失败的次数
  • ProfileEvent_DistrCacheReadBytesFromFallbackBuffer (UInt64) — 分布式缓存读取缓冲区事件。从后备缓冲区读取的字节数
  • ProfileEvent_DistrCacheOpenedConnections (UInt64) — 分布式缓存连接事件。到分布式缓存的打开连接数
  • ProfileEvent_DistrCacheReusedConnections (UInt64) — 分布式缓存连接事件。到分布式缓存的复用连接数
  • ProfileEvent_DistrCacheStaleReconnections (UInt64) — 分布式缓存连接事件。因连接池中的陈旧连接 (被 peer 关闭) 而发生的重连次数
  • ProfileEvent_DistrCacheRemoveOutdatedMicroseconds (UInt64) — 分布式缓存连接事件。从池中移除过期连接所花费的时间
  • ProfileEvent_DistrCacheOpenedConnectionsBypassingPool (UInt64) — 分布式缓存连接事件。绕过连接池打开到分布式缓存的连接数
  • ProfileEvent_DistrCacheConnectMicroseconds (UInt64) — 分布式缓存连接事件。连接到分布式缓存所花费的时间
  • ProfileEvent_DistrCacheConnectAttempts (UInt64) — 分布式缓存连接事件。连接到分布式缓存的尝试次数
  • ProfileEvent_DistrCacheSuccessfulConnectAttempts (UInt64) — 分布式缓存连接事件。连接到分布式缓存的成功尝试次数
  • ProfileEvent_DistrCacheUnsuccessfulConnectAttempts (UInt64) — 分布式缓存连接事件。连接到分布式缓存的失败尝试次数
  • ProfileEvent_DistrCacheGetClientMicroseconds (UInt64) — 分布式缓存连接事件。获取分布式缓存客户端所花费的时间
  • ProfileEvent_DistrCacheTemporaryFilesCreated (UInt64) — 分布式缓存连接事件。在分布式缓存中创建的临时 File 数量
  • ProfileEvent_DistrCacheTemporaryFilesBytesWritten (UInt64) — 分布式缓存连接事件。写入分布式缓存中创建的临时 File 的字节数
  • ProfileEvent_DistrCacheServerProcessRequestMicroseconds (UInt64) — Distributed Cache 服务器事件。在 DistributedCache 服务端处理请求所耗费的时间
  • ProfileEvent_DistrCacheServerStartRequestPackets (UInt64) — Distributed Cache 服务器事件。DistributedCacheServer 中 StartRequest 数据包的数量
  • ProfileEvent_DistrCacheServerContinueRequestPackets (UInt64) — Distributed Cache 服务器事件。DistributedCacheServer 中 ContinueRequest 数据包的数量
  • ProfileEvent_DistrCacheServerEndRequestPackets (UInt64) — Distributed Cache 服务器事件。DistributedCacheServer 中 EndRequest 数据包的数量
  • ProfileEvent_DistrCacheServerReceivedCredentialsRefreshPackets (UInt64) — Distributed Cache 服务器事件。DistributedCacheServer 中 RefreshCredentials client 数据包的数量
  • ProfileEvent_DistrCacheServerAckRequestPackets (UInt64) — Distributed Cache 服务器事件。DistributedCacheServer 中 AckRequest 数据包的数量
  • ProfileEvent_DistrCacheServerNewS3CachedClients (UInt64) — Distributed Cache 服务器事件。新建的已缓存 S3 client 数量
  • ProfileEvent_DistrCacheServerReusedS3CachedClients (UInt64) — Distributed Cache 服务器事件。复用的已缓存 S3 client 数量
  • ProfileEvent_DistrCacheServerCredentialsRefresh (UInt64) — Distributed Cache 服务器事件。已过期凭证被刷新的次数
  • ProfileEvent_DistrCacheServerCachedReadBufferCacheHits (UInt64) — Distributed Cache 服务器事件。从文件系统缓存读取时,分布式缓存命中缓存的次数
  • ProfileEvent_DistrCacheServerCachedReadBufferCacheMisses (UInt64) — Distributed Cache 服务器事件。从文件系统缓存读取时,分布式缓存未命中缓存的次数
  • ProfileEvent_DistrCacheServerCachedReadBufferCacheWrittenBytes (UInt64) — Distributed Cache 服务器事件。从文件系统缓存读取时,分布式缓存写入缓存的字节数
  • ProfileEvent_DistrCacheServerCachedReadBufferCacheReadBytes (UInt64) — Distributed Cache 服务器事件。从文件系统缓存读取时,分布式缓存从缓存读取的字节数
  • ProfileEvent_DistrCacheServerCachedReadBufferObjectStorageReadBytes (UInt64) — Distributed Cache 服务器事件。从文件系统缓存读取时,分布式缓存从对象存储读取的字节数
  • ProfileEvent_DistrCacheServerCachedReadBufferCachePredownloadBytes (UInt64) — Distributed Cache 服务器事件。从文件系统缓存读取时,分布式缓存为预下载而从对象存储读取的字节数
  • ProfileEvent_DistrCacheServerSkipped (UInt64) — Distributed Cache 服务器事件。由于先前连接尝试失败而跳过 Distributed Cache 服务器的次数
  • ProfileEvent_LogTest (UInt64) — 级别为 Test 的日志消息数量
  • ProfileEvent_LogTrace (UInt64) — 级别为 Trace 的日志消息数量
  • ProfileEvent_LogDebug (UInt64) — 级别为 Debug 的日志消息数量
  • ProfileEvent_LogInfo (UInt64) — 级别为 Info 的日志消息数量
  • ProfileEvent_LogWarning (UInt64) — 级别为 Warning 的日志消息数量
  • ProfileEvent_LogError (UInt64) — 级别为 Error 的日志消息数量
  • ProfileEvent_LogFatal (UInt64) — 级别为 Fatal 的日志消息数量
  • ProfileEvent_LoggerElapsedNanoseconds (UInt64) — 日志记录的累计耗时
  • ProfileEvent_InterfaceHTTPSendBytes (UInt64) — 通过 HTTP 接口发送的字节数
  • ProfileEvent_InterfaceHTTPReceiveBytes (UInt64) — 通过 HTTP 接口接收的字节数
  • ProfileEvent_InterfaceNativeSendBytes (UInt64) — 通过原生接口发送的字节数
  • ProfileEvent_InterfaceNativeReceiveBytes (UInt64) — 通过原生接口接收的字节数
  • ProfileEvent_InterfacePrometheusSendBytes (UInt64) — 通过 Prometheus 接口发送的字节数
  • ProfileEvent_InterfacePrometheusReceiveBytes (UInt64) — 通过 Prometheus 接口接收的字节数
  • ProfileEvent_InterfaceInterserverSendBytes (UInt64) — 通过服务器间接口发送的字节数
  • ProfileEvent_InterfaceInterserverReceiveBytes (UInt64) — 通过服务器间接口接收的字节数
  • ProfileEvent_InterfaceMySQLSendBytes (UInt64) — 通过 MySQL 接口发送的字节数
  • ProfileEvent_InterfaceMySQLReceiveBytes (UInt64) — 通过 MySQL 接口接收的字节数
  • ProfileEvent_InterfacePostgreSQLSendBytes (UInt64) — 通过 PostgreSQL 接口发送的字节数
  • ProfileEvent_InterfacePostgreSQLReceiveBytes (UInt64) — 通过 PostgreSQL 接口接收的字节数
  • ProfileEvent_ParallelReplicasUsedCount (UInt64) — 使用基于任务的并行副本执行查询时所使用的副本数
  • ProfileEvent_ParallelReplicasAvailableCount (UInt64) — 使用基于任务的并行副本执行查询时可用的副本数
  • ProfileEvent_ParallelReplicasUnavailableCount (UInt64) — 使用基于任务的并行副本执行查询时,被选中但在查询执行期间发现不可用的副本数
  • ProfileEvent_SharedMergeTreeVirtualPartsUpdates (UInt64) — 虚拟分区片段更新次数
  • ProfileEvent_SharedMergeTreeVirtualPartsUpdatesByLeader (UInt64) — 由 leader 执行的虚拟分区片段更新
  • ProfileEvent_SharedMergeTreeVirtualPartsUpdateMicroseconds (UInt64) — 虚拟分区片段更新耗时 (微秒)
  • ProfileEvent_SharedMergeTreeVirtualPartsUpdatesFromZooKeeper (UInt64) — 来自 ZooKeeper 的虚拟分区片段更新次数
  • ProfileEvent_SharedMergeTreeVirtualPartsUpdatesFromZooKeeperMicroseconds (UInt64) — 来自 ZooKeeper 的虚拟分区片段更新耗时 (微秒)
  • ProfileEvent_SharedMergeTreeVirtualPartsUpdatesPeerNotFound (UInt64) — 由于未找到任何 peer,来自 peer 的虚拟分区片段更新失败次数
  • ProfileEvent_SharedMergeTreeVirtualPartsUpdatesFromPeer (UInt64) — 来自 peer 的虚拟分区片段更新次数
  • ProfileEvent_SharedMergeTreeVirtualPartsUpdatesFromPeerMicroseconds (UInt64) — 来自 peer 的虚拟分区片段更新耗时 (微秒)
  • ProfileEvent_SharedMergeTreeVirtualPartsUpdatesForMergesOrStatus (UInt64) — 由非默认后台 job 触发的虚拟分区片段更新
  • ProfileEvent_SharedMergeTreeVirtualPartsUpdatesLeaderFailedElection (UInt64) — 虚拟分区片段更新 leader 选举失败
  • ProfileEvent_SharedMergeTreeVirtualPartsUpdatesLeaderSuccessfulElection (UInt64) — 虚拟分区片段更新 leader 选举成功
  • ProfileEvent_SharedMergeTreeMergeMutationAssignmentAttempt (UInt64) — 尝试分配 merge 或变更的次数
  • ProfileEvent_SharedMergeTreeMergeMutationAssignmentFailedWithNothingToDo (UInt64) — 尝试分配 merge 或变更但因没有可合并内容而失败的次数
  • ProfileEvent_SharedMergeTreeMergeMutationAssignmentFailedWithConflict (UInt64) — 尝试分配 merge 或变更但因 Keeper 中存在冲突而失败的次数
  • ProfileEvent_SharedMergeTreeMergeMutationAssignmentSuccessful (UInt64) — 成功分配 merge 或变更的次数
  • ProfileEvent_SharedMergeTreeMergePartsMovedToOudated (UInt64) — 被移动到过期目录的 parts 数量
  • ProfileEvent_SharedMergeTreeMergePartsMovedToCondemned (UInt64) — 被移动到废弃目录的 parts 数量
  • ProfileEvent_SharedMergeTreeOutdatedPartsConfirmationRequest (UInt64) — 用于确认过期分区片段的 ZooKeeper 请求数量
  • ProfileEvent_SharedMergeTreeOutdatedPartsConfirmationInvocations (UInt64) — 确认过期分区片段的调用次数
  • ProfileEvent_SharedMergeTreeOutdatedPartsHTTPRequest (UInt64) — 为确认过期分区片段而发送的 HTTP 请求数量
  • ProfileEvent_SharedMergeTreeOutdatedPartsHTTPResponse (UInt64) — 为确认过期分区片段而发送的 HTTP 响应数量
  • ProfileEvent_SharedMergeTreeCondemnedPartsKillRequest (UInt64) — 用于移除废弃 parts 的 ZooKeeper 请求数量
  • ProfileEvent_SharedMergeTreeCondemnedPartsLockConflict (UInt64) — 因冲突而未能获取锁的次数
  • ProfileEvent_SharedMergeTreeCondemnedPartsRemoved (UInt64) — 被移除的废弃 parts 数量
  • ProfileEvent_SharedMergeTreePartsKillerRuns (UInt64) — parts killer 的运行次数
  • ProfileEvent_SharedMergeTreePartsKillerMicroseconds (UInt64) — parts killer 主线程耗时
  • ProfileEvent_SharedMergeTreePartsKillerParts (UInt64) — 被 killer 调度的 parts 数量
  • ProfileEvent_SharedMergeTreePartsKillerPartsMicroseconds (UInt64) — 移除 parts 所耗费的时间 (由多个线程执行)
  • ProfileEvent_SharedMergeTreeMergeSelectingTaskMicroseconds (UInt64) — SMT 的 merge 选择任务耗时 (微秒)
  • ProfileEvent_SharedMergeTreeReplicaSetUpdateTaskRuns (UInt64) — updateReplicaSetTask 的运行次数
  • ProfileEvent_SharedMergeTreeOptimizeAsync (UInt64) — 已执行的异步 OPTIMIZE 查询数量
  • ProfileEvent_SharedMergeTreeOptimizeSync (UInt64) — 已执行的同步 OPTIMIZE 查询数量
  • ProfileEvent_SharedMergeTreeScheduleDataProcessingJob (UInt64) — 调用 scheduleDataProcessingJob 的次数
  • ProfileEvent_SharedMergeTreeScheduleDataProcessingJobNothingToScheduled (UInt64) — 调用 scheduleDataProcessingJob 但没有可调度任务的次数
  • ProfileEvent_SharedMergeTreeScheduleDataProcessingJobMicroseconds (UInt64) — scheduleDataProcessingJob 的执行时间
  • ProfileEvent_SharedMergeTreeHandleBlockingParts (UInt64) — scheduleDataProcessingJob 中处理的阻塞 parts 数量
  • ProfileEvent_SharedMergeTreeHandleBlockingPartsMicroseconds (UInt64) — scheduleDataProcessingJob 中处理阻塞 parts 的耗时
  • ProfileEvent_SharedMergeTreeHandleFetchPartsMicroseconds (UInt64) — scheduleDataProcessingJob 中处理已拉取 parts 的耗时
  • ProfileEvent_SharedMergeTreeHandleOutdatedParts (UInt64) — scheduleDataProcessingJob 中处理的过期分区片段数量
  • ProfileEvent_SharedMergeTreeHandleOutdatedPartsMicroseconds (UInt64) — scheduleDataProcessingJob 中处理过期分区片段的耗时
  • ProfileEvent_SharedMergeTreeSelectPartsForRendezvousFetchMicroseconds (UInt64) — selectPartsForRendezvousFetch 的耗时
  • ProfileEvent_SharedMergeTreeSelectPartsForRendezvousFetchParts (UInt64) — selectPartsForRendezvousFetch 选出的 parts 数量
  • ProfileEvent_SharedMergeTreeSelectPartsForCoordinatedFetchMicroseconds (UInt64) — selectPartsForCoordinatedFetch 的耗时
  • ProfileEvent_SharedMergeTreeSelectPartsForCoordinatedFetchParts (UInt64) — selectPartsForCoordinatedFetch 选出的 parts 数量
  • ProfileEvent_SharedMergeTreeSelectPartsForFullFetchMicroseconds (UInt64) — selectPartsForFullFetch 的耗时
  • ProfileEvent_SharedMergeTreeSelectPartsForFullFetchParts (UInt64) — selectPartsForFullFetch 选出的 parts 数量
  • ProfileEvent_SharedMergeTreeTryUpdateDiskMetadataCacheForPartMicroseconds (UInt64) — scheduleDataProcessingJob 中 tryUpdateDiskMetadataCacheForPart 的耗时
  • ProfileEvent_SharedMergeTreeLoadChecksumAndIndexesMicroseconds (UInt64) — 仅 SharedMergeTree 使用的 loadColumnsChecksumsIndexes 耗时
  • ProfileEvent_SharedMergeTreeSnapshotPartsCleanRequest (UInt64) — SnapshotCleanerThread 决定清理某个 part 的次数
  • ProfileEvent_SharedMergeTreeSnapshotPartsCleanerParts (UInt64) — SnapshotCleanerThread 尝试清理某个 part 的耗时
  • ProfileEvent_SharedMergeTreeSnapshotPartsRemoved (UInt64) — SnapshotCleanerThread 成功清理某个 part 的次数
  • ProfileEvent_SharedMergeTreeSnapshotPartsCleanerRuns (UInt64) — SnapshotCleanerThread 的运行次数
  • ProfileEvent_SharedMergeTreeSnapshotPartsCleanerMicroseconds (UInt64) — SnapshotCleanerThread 的总运行时长
  • ProfileEvent_SharedMergeTreeSnapshotPartsCleanerPartsMicroseconds (UInt64) — SnapshotCleanerThread 清理 parts 的耗时
  • ProfileEvent_SharedMergeTreeDataPartsFetchAttempt (UInt64) — 尝试拉取数据分区片段的次数
  • ProfileEvent_SharedMergeTreeDataPartsFetchFromPeer (UInt64) — 从 peer 拉取数据分区片段的次数
  • ProfileEvent_SharedMergeTreeDataPartsFetchFromPeerMicroseconds (UInt64) — 从 peer 拉取数据分区片段所用的微秒数
  • ProfileEvent_SharedMergeTreeDataPartsFetchFromS3 (UInt64) — 从 S3 拉取数据分区片段的次数
  • ProfileEvent_SharedMergeTreeReplicaSetUpdatesFromZooKeeper (UInt64) — 从 ZooKeeper 更新副本集的次数
  • ProfileEvent_SharedMergeTreeReplicaSetUpdatesFromZooKeeperRequests (UInt64) — 为更新副本集而发起的 ZooKeeper 请求总数
  • ProfileEvent_SharedMergeTreeReplicaSetUpdatesFromZooKeeperMicroseconds (UInt64) — 更新副本集所花费的时间
  • ProfileEvent_KeeperLogsEntryReadFromLatestCache (UInt64) — 从最新日志缓存中读取的 Keeper 日志条目数
  • ProfileEvent_KeeperLogsEntryReadFromCommitCache (UInt64) — 从提交日志缓存中读取的 Keeper 日志条目数
  • ProfileEvent_KeeperLogsEntryReadFromFile (UInt64) — 直接从更新日志文件中读取的 Keeper 日志条目数
  • ProfileEvent_KeeperLogsPrefetchedEntries (UInt64) — 从更新日志文件中预拉取的 Keeper 日志条目数
  • ProfileEvent_KeeperChangelogWrittenBytes (UInt64) — 写入 Keeper 更新日志的字节数
  • ProfileEvent_KeeperChangelogFileSyncMicroseconds (UInt64) — Keeper 更新日志执行 fsync 所花费的时间 (仅限未压缩日志)
  • ProfileEvent_KeeperSnapshotWrittenBytes (UInt64) — 写入 Keeper 快照文件的字节数
  • ProfileEvent_KeeperSnapshotFileSyncMicroseconds (UInt64) — Keeper 快照文件执行 fsync 所花费的时间
  • ProfileEvent_StorageConnectionsCreated (UInt64) — 为存储后端创建的连接数
  • ProfileEvent_StorageConnectionsReused (UInt64) — 为存储后端复用的连接数
  • ProfileEvent_StorageConnectionsReset (UInt64) — 为存储后端重置的连接数
  • ProfileEvent_StorageConnectionsPreserved (UInt64) — 为存储后端保留的连接数
  • ProfileEvent_StorageConnectionsExpired (UInt64) — 为存储后端已过期的连接数
  • ProfileEvent_StorageConnectionsErrors (UInt64) — 为存储后端创建连接失败的次数
  • ProfileEvent_StorageConnectionsElapsedMicroseconds (UInt64) — 为存储后端创建连接所花费的总时间
  • ProfileEvent_DiskConnectionsCreated (UInt64) — 为磁盘创建的连接数
  • ProfileEvent_DiskConnectionsReused (UInt64) — 为磁盘复用的连接数
  • ProfileEvent_DiskConnectionsReset (UInt64) — 为磁盘重置的连接数
  • ProfileEvent_DiskConnectionsPreserved (UInt64) — 为磁盘保留的连接数
  • ProfileEvent_DiskConnectionsExpired (UInt64) — 为磁盘已过期的连接数
  • ProfileEvent_DiskConnectionsErrors (UInt64) — 为磁盘创建连接失败的次数
  • ProfileEvent_DiskConnectionsElapsedMicroseconds (UInt64) — 为磁盘创建连接所花费的总时间
  • ProfileEvent_HTTPConnectionsCreated (UInt64) — 已创建的客户端 HTTP 连接数
  • ProfileEvent_HTTPConnectionsReused (UInt64) — 复用的客户端 HTTP 连接数量
  • ProfileEvent_HTTPConnectionsReset (UInt64) — 被重置的客户端 HTTP 连接数量
  • ProfileEvent_HTTPConnectionsPreserved (UInt64) — 保留的客户端 HTTP 连接数量
  • ProfileEvent_HTTPConnectionsExpired (UInt64) — 已过期的客户端 HTTP 连接数量
  • ProfileEvent_HTTPConnectionsErrors (UInt64) — 创建客户端 HTTP 连接失败的次数
  • ProfileEvent_HTTPConnectionsElapsedMicroseconds (UInt64) — 创建客户端 HTTP 连接所花费的总时间
  • ProfileEvent_HTTPServerConnectionsCreated (UInt64) — 已创建的服务器 HTTP 连接数量
  • ProfileEvent_HTTPServerConnectionsReused (UInt64) — 复用的服务器 HTTP 连接数量
  • ProfileEvent_HTTPServerConnectionsPreserved (UInt64) — 保留的服务器 HTTP 连接数量。连接已成功保持为 Keep-Alive 状态
  • ProfileEvent_HTTPServerConnectionsExpired (UInt64) — 已过期的服务器 HTTP 连接数量。
  • ProfileEvent_HTTPServerConnectionsClosed (UInt64) — 已关闭的服务器 HTTP 连接数量。未协商 Keep-Alive
  • ProfileEvent_HTTPServerConnectionsReset (UInt64) — 被重置的服务器 HTTP 连接数量。服务器关闭了连接
  • ProfileEvent_AddressesDiscovered (UInt64) — HTTP 连接的 DNS 解析结果中新发现的地址总数
  • ProfileEvent_AddressesExpired (UInt64) — HTTP 连接的 DNS 解析结果中已过期、不再出现的地址总数
  • ProfileEvent_AddressesMarkedAsFailed (UInt64) — 因 HTTP 连接错误而被标记为失败的地址总数
  • ProfileEvent_ReadWriteBufferFromHTTPRequestsSent (UInt64) — ReadWriteBufferFromHTTP 发送的 HTTP 请求数量
  • ProfileEvent_ReadWriteBufferFromHTTPBytes (UInt64) — ReadWriteBufferFromHTTP 接收和发送的载荷字节总大小。不包括 HTTP 请求头。
  • ProfileEvent_WriteBufferFromHTTPRequestsSent (UInt64) — WriteBufferFromHTTP 发送的 HTTP 请求数量
  • ProfileEvent_WriteBufferFromHTTPBytes (UInt64) — WriteBufferFromHTTP 接收和发送的载荷字节总大小。不包括 HTTP 请求头。
  • ProfileEvent_ConcurrencyControlSlotsGranted (UInt64) — 按照每个查询保证 1 个线程的规则,以及对设置 ‘use_concurrency_control’ = 0 的查询授予的 CPU 插槽数量
  • ProfileEvent_ConcurrencyControlSlotsDelayed (UInt64) — 初始未获授予、需要等待空闲 CPU 插槽的 CPU 插槽数量
  • ProfileEvent_ConcurrencyControlSlotsAcquired (UInt64) — 已获取的 CPU 插槽总数
  • ProfileEvent_ConcurrencyControlSlotsAcquiredNonCompeting (UInt64) — 已获取的非竞争 CPU 插槽总数
  • ProfileEvent_ConcurrencyControlQueriesDelayed (UInt64) — 需要等待 CPU 插槽扩容的 CPU 插槽分配 (查询) 总数
  • ProfileEvent_ConcurrencyControlWaitMicroseconds (UInt64) — 查询等待 CPU 插槽资源请求的总时间。
  • ProfileEvent_ConcurrencyControlPreemptedMicroseconds (UInt64) — 查询因 CPU 插槽被抢占而等待的总时间
  • ProfileEvent_ConcurrencyControlPreemptions (UInt64) — CPU 抢占的总次数
  • ProfileEvent_ConcurrencyControlUpscales (UInt64) — CPU 扩容事件的总次数
  • ProfileEvent_ConcurrencyControlDownscales (UInt64) — CPU 缩容事件的总次数
  • ProfileEvent_ConcurrentQuerySlotsAcquired (UInt64) — 已获取的查询插槽总数
  • ProfileEvent_ConcurrentQueryWaitMicroseconds (UInt64) — 查询等待获取查询插槽的总时间
  • ProfileEvent_CoordinatedMergesMergeCoordinatorUpdateCount (UInt64) — 合并协调器更新的总次数
  • ProfileEvent_CoordinatedMergesMergeCoordinatorUpdateMicroseconds (UInt64) — 更新合并协调器状态所花费的总时间
  • ProfileEvent_CoordinatedMergesMergeCoordinatorFetchMetadataMicroseconds (UInt64) — 合并协调器内部拉取最新元数据所花费的总时间
  • ProfileEvent_CoordinatedMergesMergeCoordinatorFilterMicroseconds (UInt64) — 合并协调器内部过滤已准备好的合并任务所花费的总时间
  • ProfileEvent_CoordinatedMergesMergeCoordinatorSelectMergesMicroseconds (UInt64) — 合并协调器内部使用合并选择器查找合并任务所花费的总时间
  • ProfileEvent_CoordinatedMergesMergeCoordinatorLockStateForShareCount (UInt64) — 以共享方式获取协调器状态锁的总次数
  • ProfileEvent_CoordinatedMergesMergeCoordinatorLockStateExclusivelyCount (UInt64) — 以独占方式获取协调器状态锁的总次数
  • ProfileEvent_CoordinatedMergesMergeCoordinatorLockStateForShareMicroseconds (UInt64) — 以共享方式获取协调器状态互斥锁所花费的总时间
  • ProfileEvent_CoordinatedMergesMergeCoordinatorLockStateExclusivelyMicroseconds (UInt64) — 以独占方式获取协调器状态互斥锁所花费的总时间
  • ProfileEvent_CoordinatedMergesMergeWorkerUpdateCount (UInt64) — 合并工作线程更新的总次数
  • ProfileEvent_CoordinatedMergesMergeWorkerUpdateMicroseconds (UInt64) — 工作线程更新已分配合并任务本地状态所花费的总时间
  • ProfileEvent_CoordinatedMergesMergeAssignmentRequest (UInt64) — 合并分配请求的总次数
  • ProfileEvent_CoordinatedMergesMergeAssignmentResponse (UInt64) — 合并分配响应的总次数
  • ProfileEvent_CoordinatedMergesMergeAssignmentRequestMicroseconds (UInt64) — 在合并分配客户端中花费的总时间
  • ProfileEvent_CoordinatedMergesMergeAssignmentResponseMicroseconds (UInt64) — 在合并分配处理程序中花费的总时间
  • ProfileEvent_SharedDatabaseCatalogFailedToApplyState (UInt64) — SharedDatabaseCatalog 中应用新状态失败的次数
  • ProfileEvent_SharedDatabaseCatalogStateApplicationMicroseconds (UInt64) — 在 SharedDatabaseCatalog 中应用新状态所花费的总时间
  • ProfileEvent_MemoryWorkerRun (UInt64) — MemoryWorker 在后台运行的次数
  • ProfileEvent_MemoryWorkerRunElapsedMicroseconds (UInt64) — MemoryWorker 执行后台工作的总耗时
  • ProfileEvent_ParquetFetchWaitTimeMicroseconds (UInt64) — 等待解码线程 (非预取线程) 读取 Parquet 文件所耗费的时间
  • ProfileEvent_WasmSerializationMicroseconds (UInt64) — 执行 WebAssembly 代码所花费的时间
  • ProfileEvent_WasmDeserializationMicroseconds (UInt64) — 执行 WebAssembly 代码所花费的时间
  • ProfileEvent_WasmGuestExecuteMicroseconds (UInt64) — 执行 WebAssembly 代码所花费的时间
  • ProfileEvent_WasmTotalExecuteMicroseconds (UInt64) — 执行 WebAssembly 代码所花费的时间
  • ProfileEvent_WasmModuleInstatiate (UInt64) — 已创建的 WebAssembly 隔离区数量
  • ProfileEvent_WasmMemoryAllocated (UInt64) — 为 WebAssembly 隔离区分配的内存总量
  • ProfileEvent_ParquetReadRowGroups (UInt64) — 从 Parquet 数据中读取的行组总数
  • ProfileEvent_ParquetPrunedRowGroups (UInt64) — 从 Parquet 数据中被剪枝的行组总数
  • ProfileEvent_ParquetDecodingTasks (UInt64) — 由 Parquet reader 发出的任务数
  • ProfileEvent_ParquetDecodingTaskBatches (UInt64) — 由 Parquet reader 发送到线程池的任务批次
  • ProfileEvent_ParquetPrefetcherReadRandomRead (UInt64) — DB::Parquet::Prefetcher 使用 ReadMode::RandomRead 的读取总次数
  • ProfileEvent_ParquetPrefetcherReadSeekAndRead (UInt64) — DB::Parquet::Prefetcher 使用 ReadMode::SeekAndRead 的读取总次数
  • ProfileEvent_ParquetPrefetcherReadEntireFile (UInt64) — DB::Parquet::Prefetcher 使用 ReadMode::EntireFileIsInMemory 的读取总次数
  • ProfileEvent_ParquetRowsFilterExpression (UInt64) — 经过过滤器的行总数
  • ProfileEvent_ParquetColumnsFilterExpression (UInt64) — 经过过滤器的列总数
  • ProfileEvent_FilterTransformPassedRows (UInt64) — 查询中通过过滤器的行数
  • ProfileEvent_FilterTransformPassedBytes (UInt64) — 查询中通过过滤器的字节数
  • ProfileEvent_QueryPreempted (UInt64) — 由于 priority 设置导致任务被暂停并等待的次数
  • ProfileEvent_IndexBinarySearchAlgorithm (UInt64) — 在索引标记上使用二分查找算法的次数
  • ProfileEvent_IndexGenericExclusionSearchAlgorithm (UInt64) — 在索引标记上使用通用排除搜索算法的次数
  • ProfileEvent_ParallelReplicasQueryCount (UInt64) — 单次查询执行期间,使用并行副本执行的 (子) 查询数量
  • ProfileEvent_DistributedConnectionReconnectCount (UInt64) — 分布式查询执行期间,与其他服务器重新建立连接的次数。当从连接池中获取到过期连接时,可能会发生这种情况
  • ProfileEvent_DistributedConnectionConnectCount (UInt64) — 分布式查询执行期间,与其他服务器建立连接的次数。当建立新连接而不是使用连接池中的现有连接时,就会发生这种情况。
  • ProfileEvent_RefreshableViewRefreshSuccess (UInt64) — 可刷新materialized view 成功刷新的次数
  • ProfileEvent_RefreshableViewRefreshFailed (UInt64) — 可刷新materialized view 刷新失败的次数
  • ProfileEvent_RefreshableViewSyncReplicaSuccess (UInt64) — 从可刷新materialized view 执行 SELECT 时,隐式执行 SYNC REPLICA 的次数
  • ProfileEvent_RefreshableViewSyncReplicaRetry (UInt64) — 从可刷新materialized view 执行 SELECT 时,隐式 SYNC REPLICA 失败后重试的次数
  • ProfileEvent_RefreshableViewLockTableRetry (UInt64) — 从可刷新materialized view 执行 SELECT 时,由于旧表被 drop 而不得不切换到新表的次数
  • ProfileEvent_AsyncLoggingConsoleTotalMessages (UInt64) — 已发送到控制台日志异步队列的消息总数 (包括已接收和已丢弃的消息)
  • ProfileEvent_AsyncLoggingFileLogTotalMessages (UInt64) — 已发送到文件日志异步队列的消息总数 (包括已接收和已丢弃的消息)
  • ProfileEvent_AsyncLoggingErrorFileLogTotalMessages (UInt64) — 已发送到错误文件日志异步队列的消息总数 (包括已接收和已丢弃的消息)
  • ProfileEvent_AsyncLoggingSyslogTotalMessages (UInt64) — 已发送到 syslog 异步队列的消息总数 (包括已接收和已丢弃的消息)
  • ProfileEvent_AsyncLoggingTextLogTotalMessages (UInt64) — 已发送到 text_log 异步队列的消息总数 (包括已接收和已丢弃的消息)
  • ProfileEvent_AsyncLoggingConsoleDroppedMessages (UInt64) — 由于异步日志队列已满而从控制台日志中丢弃的消息数
  • ProfileEvent_AsyncLoggingFileLogDroppedMessages (UInt64) — 由于异步日志队列已满而从文件日志中丢弃的消息数
  • ProfileEvent_AsyncLoggingErrorFileLogDroppedMessages (UInt64) — 由于异步日志队列已满而从错误文件日志中丢弃的消息数
  • ProfileEvent_AsyncLoggingSyslogDroppedMessages (UInt64) — 由于异步日志队列已满而从 syslog 中丢弃的消息数
  • ProfileEvent_AsyncLoggingTextLogDroppedMessages (UInt64) — 由于异步日志队列已满而从 text_log 中丢弃的消息数
  • ProfileEvent_JemallocFailedAllocationSampleTracking (UInt64) — 跟踪 jemalloc allocations 样本失败的总次数
  • ProfileEvent_JemallocFailedDeallocationSampleTracking (UInt64) — 跟踪 jemalloc 释放样本失败的总次数
  • ProfileEvent_LoadedStatisticsMicroseconds (UInt64) — 从 parts 加载 STATISTICS 的耗时
  • ProfileEvent_RuntimeDataflowStatisticsInputBytes (UInt64) — 收集到的统计信息:如果查询以并行副本方式执行,副本将读取的字节数
  • ProfileEvent_RuntimeDataflowStatisticsOutputBytes (UInt64) — 收集到的统计信息:如果查询以并行副本方式执行,副本将发送给 initiator 的字节数
  • ProfileEvent_S3CachedCredentialsProvidersReused (UInt64) — 从 cache 中复用的 credentials 提供商总数
  • ProfileEvent_S3CachedCredentialsProvidersAdded (UInt64) — 新增到 cache 中的 credentials 提供商总数
  • ProfileEvent_RuntimeFiltersCreated (UInt64) — 单个查询中创建的不同 JOIN 运行时过滤器数量
  • ProfileEvent_RuntimeFilterBlocksProcessed (UInt64) — 由 JOIN 运行时过滤器处理的块数
  • ProfileEvent_RuntimeFilterBlocksSkipped (UInt64) — 由于过滤效果不佳,过滤器被动态禁用,因此被 JOIN 运行时过滤器跳过且未处理的块数
  • ProfileEvent_RuntimeFilterRowsChecked (UInt64) — 由 JOIN 运行时过滤器检查的行数
  • ProfileEvent_RuntimeFilterRowsPassed (UInt64) — 通过 JOIN 运行时过滤器的行数 (即未被其过滤掉的行数)
  • ProfileEvent_RuntimeFilterRowsSkipped (UInt64) — 块中被 JOIN 运行时过滤器跳过的行数
  • ProfileEvent_JoinBuildPostProcessingMicroseconds (UInt64) — 构建 JOIN 右侧后所执行后处理步骤的耗时
  • ProfileEvent_AIInputTokens (UInt64) — 查询中所有 AI 函数调用消耗的 prompt 标记总数
  • ProfileEvent_AIOutputTokens (UInt64) — 查询中所有 AI 函数调用消耗的补全标记总数
  • ProfileEvent_AIAPICalls (UInt64) — 分派给 AI 提供商的 HTTP 请求数
  • ProfileEvent_AIRowsProcessed (UInt64) — 获得 AI 结果的行数
  • ProfileEvent_AIRowsSkipped (UInt64) — 因配额限制或错误而获得默认值的行数
  • CurrentMetric_Query (Int64) — 正在执行的查询数
  • CurrentMetric_ASTFuzzerAccumulatedFragments (Int64) — 服务器端 AST fuzzer 为后续变更累积的 AST 片段数量
  • CurrentMetric_QueryNonInternal (Int64) — 正在执行的非内部查询数 (由用户发起的查询,不包括 ClickHouse 的内部查询)
  • CurrentMetric_Merge (Int64) — 正在执行的后台合并数
  • CurrentMetric_MergeParts (Int64) — 参与当前后台合并的源 parts 数量
  • CurrentMetric_Move (Int64) — 当前正在执行的移动操作数
  • CurrentMetric_PartMutation (Int64) — 变更数量 (ALTER DELETE/UPDATE)
  • CurrentMetric_ReplicatedFetch (Int64) — 正在从副本拉取的数据分区片段数量
  • CurrentMetric_ReplicatedSend (Int64) — 正在发送到副本的数据分区片段数量
  • CurrentMetric_ReplicatedChecks (Int64) — 正在进行一致性检查的数据分区片段数量
  • CurrentMetric_BackgroundMergesAndMutationsPoolTask (Int64) — 关联后台池中活跃的合并和变更数量
  • CurrentMetric_BackgroundMergesAndMutationsPoolSize (Int64) — 关联后台池中活跃合并和变更数量的上限
  • CurrentMetric_BackgroundFetchesPoolTask (Int64) — 关联后台池中活跃的拉取数量
  • CurrentMetric_BackgroundFetchesPoolSize (Int64) — 关联后台池中同时进行的拉取数量上限
  • CurrentMetric_BackgroundCommonPoolTask (Int64) — 关联后台池中活跃的任务数量
  • CurrentMetric_BackgroundCommonPoolSize (Int64) — 关联后台池中任务数量的上限
  • CurrentMetric_BackgroundMovePoolTask (Int64) — 用于移动操作的 BackgroundProcessingPool 中活跃任务的数量
  • CurrentMetric_BackgroundMovePoolSize (Int64) — 用于移动操作的 BackgroundProcessingPool 中任务数量上限
  • CurrentMetric_AzureRequests (Int64) — 当前正在执行的 Azure 请求数量
  • CurrentMetric_BackgroundSchedulePoolTask (Int64) — BackgroundSchedulePool 中活跃任务的数量。该池用于周期性执行 ReplicatedMergeTree 任务,例如清理旧数据分区片段、修改数据分区片段、重新初始化副本等。
  • CurrentMetric_BackgroundSchedulePoolSize (Int64) — BackgroundSchedulePool 中任务数量上限。该池用于周期性执行 ReplicatedMergeTree 任务,例如清理旧数据分区片段、修改数据分区片段、重新初始化副本等。
  • CurrentMetric_BackgroundBufferFlushSchedulePoolTask (Int64) — BackgroundBufferFlushSchedulePool 中活跃任务的数量。该池用于周期性执行 Buffer 刷写
  • CurrentMetric_BackgroundBufferFlushSchedulePoolSize (Int64) — BackgroundBufferFlushSchedulePool 中任务数量上限
  • CurrentMetric_BackgroundDistributedSchedulePoolTask (Int64) — BackgroundDistributedSchedulePool 中活跃任务的数量。该池用于在后台执行分布式发送。
  • CurrentMetric_BackgroundDistributedSchedulePoolSize (Int64) — BackgroundDistributedSchedulePool 中任务数量上限
  • CurrentMetric_BackgroundMessageBrokerSchedulePoolTask (Int64) — 用于消息流式传输的 BackgroundMessageBrokerSchedulePool 中活跃任务的数量
  • CurrentMetric_BackgroundMessageBrokerSchedulePoolSize (Int64) — 用于消息流式传输的 BackgroundMessageBrokerSchedulePool 中任务数量上限
  • CurrentMetric_CacheDictionaryUpdateQueueBatches (Int64) — CacheDictionaries 中更新队列里“批次” (一组键) 的数量。
  • CurrentMetric_CacheDictionaryUpdateQueueKeys (Int64) — CacheDictionaries 中更新队列里键的精确数量。
  • CurrentMetric_DiskSpaceReservedForMerge (Int64) — 为当前正在运行的后台合并预留的磁盘空间。它略大于当前正在合并的 parts 总大小。
  • CurrentMetric_DistributedSend (Int64) — 向远程服务器发送已 INSERT 到分布式表中的数据时的连接数。包括同步和异步两种模式。
  • CurrentMetric_QueryPreempted (Int64) — 因 priority 设置而被暂停并等待的运行中任务数量。
  • CurrentMetric_TCPConnection (Int64) — 到 TCP 服务器的连接数 (使用原生接口的客户端) ,也包括服务器之间的分布式查询连接
  • CurrentMetric_MySQLConnection (Int64) — 使用 MySQL 协议的客户端连接数
  • CurrentMetric_HTTPConnection (Int64) — 到 HTTP 服务器的连接数
  • CurrentMetric_InterserverConnection (Int64) — 来自其他副本、用于拉取 parts 的连接数
  • CurrentMetric_PostgreSQLConnection (Int64) — 使用 PostgreSQL 协议的客户端连接数
  • CurrentMetric_OpenFileForRead (Int64) — 打开用于读取的文件数量
  • CurrentMetric_OpenFileForWrite (Int64) — 打开用于写入的文件数量
  • CurrentMetric_Compressing (Int64) — 使用内部压缩编解码器的压缩操作数量
  • CurrentMetric_Decompressing (Int64) — 使用内部压缩编解码器的解压操作数量
  • CurrentMetric_ParallelCompressedWriteBufferThreads (Int64) — 所有 ParallelCompressedWriteBuffer 实例中的线程数,这些线程正在执行并行压缩和写入
  • CurrentMetric_ParallelCompressedWriteBufferWait (Int64) — 所有 ParallelCompressedWriteBuffer 实例中当前正在等待缓冲区可用于写入的线程数
  • CurrentMetric_TotalTemporaryFiles (Int64) — 已创建的临时 File 数量
  • CurrentMetric_TemporaryFilesForSort (Int64) — 为外部排序创建的临时 File 数量
  • CurrentMetric_TemporaryFilesForAggregation (Int64) — 为外部聚合创建的临时 File 数量
  • CurrentMetric_TemporaryFilesForJoin (Int64) — 为 JOIN 创建的临时 File 数量
  • CurrentMetric_TemporaryFilesForMerge (Int64) — 用于 vertical merge 的临时 File 数量
  • CurrentMetric_TemporaryFilesUnknown (Int64) — 在用途未知的情况下创建的临时 File 数量
  • CurrentMetric_Read (Int64) — 正在进行中的读 (read、pread、io_getevents 等) 系统调用数量
  • CurrentMetric_RemoteRead (Int64) — 正在进行中的远程读取操作数量
  • CurrentMetric_Write (Int64) — 正在进行中的写 (write、pwrite、io_getevents 等) 系统调用数量
  • CurrentMetric_NetworkReceive (Int64) — 从网络接收数据的线程数。仅包括与 ClickHouse 相关的网络交互,不包括第三方库的交互。
  • CurrentMetric_NetworkSend (Int64) — 向网络发送数据的线程数。仅包括与 ClickHouse 相关的网络交互,不包括第三方库的交互。
  • CurrentMetric_SendScalars (Int64) — 正在向远程服务器发送标量数据的连接数量。
  • CurrentMetric_SendExternalTables (Int64) — 正在向远程服务器发送外部表数据的连接数量。外部表用于通过分布式子查询实现 GLOBAL IN 和 GLOBAL JOIN 运算符。
  • CurrentMetric_QueryThread (Int64) — 查询处理线程数
  • CurrentMetric_ReadonlyReplica (Int64) — 当前处于只读状态的复制表数量,原因是 ZooKeeper 会话丢失后的重新初始化,或在未配置 ZooKeeper 的情况下启动。
  • CurrentMetric_ReplicaReady (Int64) — 指示副本是否已准备好接受查询:0 = 否,1 = 是
  • CurrentMetric_MemoryTracking (Int64) — 服务器分配的内存总量 (字节) 。
  • CurrentMetric_MemoryTrackingUncorrected (Int64) — 服务器分配且未经 RSS 校正的内存总量 (字节) 。
  • CurrentMetric_MergesMutationsMemoryTracking (Int64) — 后台任务 (merge 和 mutations) 分配的内存总量 (字节) 。
  • CurrentMetric_EphemeralNode (Int64) — ZooKeeper 中持有的临时节点数量。
  • CurrentMetric_MaxAllocatedEphemeralLockSequentialNumber (Int64) — 为 ZooKeeper 中的临时锁 znode 分配的最大顺序编号。主要受块编号影响。
  • CurrentMetric_ZooKeeperSession (Int64) — 到 ZooKeeper 的会话 (连接) 数量。不应超过 1,因为使用多个到 ZooKeeper 的连接可能会因 ZooKeeper 一致性模型允许的非线性一致性 (陈旧读取) 而导致 bug。
  • CurrentMetric_ZooKeeperSessionExpired (Int64) — 已过期的全局 ZooKeeper 会话数量。
  • CurrentMetric_ZooKeeperConnectionLossStartedTimestampSeconds (Int64) — ZooKeeper 连接丢失时的 Unix 时间戳 (以秒为单位) ;如果连接正常,则为 0。
  • CurrentMetric_ZooKeeperWatch (Int64) — ZooKeeper 中的 watches (事件订阅) 数量。
  • CurrentMetric_ZooKeeperRequest (Int64) — 正在处理中的 ZooKeeper 请求数量。
  • CurrentMetric_DelayedInserts (Int64) — 由于 MergeTree 表中某个分区的活动 data parts 数量过多而被限流的 INSERT 查询数量。
  • CurrentMetric_ContextLockWait (Int64) — 在 Context 中等待锁的线程数量。这是全局锁。
  • CurrentMetric_StorageBufferRows (Int64) — Buffer 表缓冲区中的行数。
  • CurrentMetric_StorageBufferBytes (Int64) — Buffer 表缓冲区中的字节数。
  • CurrentMetric_DictCacheRequests (Int64) — cache 类型字典的数据源中正在处理的请求数量。
  • CurrentMetric_Revision (Int64) — server 的修订号。除补丁发行版外,每个 release 或 release candidate 都会使该数值递增。
  • CurrentMetric_VersionInteger (Int64) — server 的版本,以一个基数为 1000 的整数表示。例如,版本 11.22.33 会转换为 11022033。
  • CurrentMetric_RWLockWaitingReaders (Int64) — 在表 RWLock 上等待读锁的线程数量。
  • CurrentMetric_RWLockWaitingWriters (Int64) — 在表 RWLock 上等待写锁的线程数量。
  • CurrentMetric_RWLockActiveReaders (Int64) — 在表 RWLock 上持有读锁的线程数量。
  • CurrentMetric_RWLockActiveWriters (Int64) — 在表 RWLock 上持有写锁的线程数量。
  • CurrentMetric_GlobalThread (Int64) — 全局线程池中的线程数量。
  • CurrentMetric_GlobalThreadActive (Int64) — 全局线程池中正在运行任务的线程数量。
  • CurrentMetric_GlobalThreadScheduled (Int64) — 全局线程池中已排队或正在运行的作业数量。
  • CurrentMetric_LocalThread (Int64) — 已废弃。本地线程池中的线程数量。本地线程池中的线程取自全局线程池。
  • CurrentMetric_LocalThreadActive (Int64) — 已废弃。本地线程池中正在运行任务的线程数量。
  • CurrentMetric_LocalThreadScheduled (Int64) — 已废弃。本地线程池中已排队或正在运行的作业数量。
  • CurrentMetric_MergeTreeDataSelectExecutorThreads (Int64) — MergeTreeDataSelectExecutor 线程池中的线程数量。
  • CurrentMetric_MergeTreeDataSelectExecutorThreadsActive (Int64) — MergeTreeDataSelectExecutor 线程池中正在运行任务的线程数量。
  • CurrentMetric_MergeTreeDataSelectExecutorThreadsScheduled (Int64) — MergeTreeDataSelectExecutor 线程池中已排队或正在运行的作业数量。
  • CurrentMetric_BackupsThreads (Int64) — BACKUP 线程池中的线程数量。
  • CurrentMetric_BackupsThreadsActive (Int64) — BACKUP 线程池中正在运行任务的线程数量。
  • CurrentMetric_BackupsThreadsScheduled (Int64) — BACKUP 的排队中或活动中的作业数。
  • CurrentMetric_RestoreThreads (Int64) — RESTORE 线程池中的线程数。
  • CurrentMetric_RestoreThreadsActive (Int64) — RESTORE 线程池中正在执行任务的线程数。
  • CurrentMetric_RestoreThreadsScheduled (Int64) — RESTORE 的排队中或活动中的作业数。
  • CurrentMetric_MarksLoaderThreads (Int64) — 用于加载标记的线程池中的线程数。
  • CurrentMetric_MarksLoaderThreadsActive (Int64) — 用于加载标记的线程池中正在执行任务的线程数。
  • CurrentMetric_MarksLoaderThreadsScheduled (Int64) — 用于加载标记的线程池中排队中或活动中的作业数。
  • CurrentMetric_IOPrefetchThreads (Int64) — IO 预取线程池中的线程数。
  • CurrentMetric_IOPrefetchThreadsActive (Int64) — IO 预取线程池中正在执行任务的线程数。
  • CurrentMetric_IOPrefetchThreadsScheduled (Int64) — IO 预取线程池中排队中或活动中的作业数。
  • CurrentMetric_IOWriterThreads (Int64) — IO 写入线程池中的线程数。
  • CurrentMetric_IOWriterThreadsActive (Int64) — IO 写入线程池中正在执行任务的线程数。
  • CurrentMetric_IOWriterThreadsScheduled (Int64) — IO 写入线程池中排队中或活动中的作业数。
  • CurrentMetric_IOThreads (Int64) — IO 线程池中的线程数。
  • CurrentMetric_IOThreadsActive (Int64) — IO 线程池中正在执行任务的线程数。
  • CurrentMetric_IOThreadsScheduled (Int64) — IO 线程池中排队中或活动中的作业数。
  • CurrentMetric_CompressionThread (Int64) — 压缩线程池中的线程数。
  • CurrentMetric_CompressionThreadActive (Int64) — 压缩线程池中正在执行任务的线程数。
  • CurrentMetric_CompressionThreadScheduled (Int64) — 压缩线程池中排队中或活动中的作业数。
  • CurrentMetric_ThreadPoolRemoteFSReaderThreads (Int64) — 用于 remote_filesystem_read_method=threadpool 的线程池中的线程数。
  • CurrentMetric_ThreadPoolRemoteFSReaderThreadsActive (Int64) — 用于 remote_filesystem_read_method=threadpool 的线程池中正在执行任务的线程数。
  • CurrentMetric_ThreadPoolRemoteFSReaderThreadsScheduled (Int64) — 用于 remote_filesystem_read_method=threadpool 的线程池中排队中或活动中的作业数。
  • CurrentMetric_ThreadPoolFSReaderThreads (Int64) — 用于 local_filesystem_read_method=threadpool 的线程池中的线程数。
  • CurrentMetric_ThreadPoolFSReaderThreadsActive (Int64) — 用于 local_filesystem_read_method=threadpool 的线程池中正在执行任务的线程数。
  • CurrentMetric_ThreadPoolFSReaderThreadsScheduled (Int64) — 用于 local_filesystem_read_method=threadpool 的线程池中排队中或活动中的作业数。
  • CurrentMetric_ObjectStorageQueueShutdownThreads (Int64) — object storage 队列关闭线程池中的线程数。
  • CurrentMetric_ObjectStorageQueueShutdownThreadsActive (Int64) — object storage 队列关闭线程池中正在执行任务的线程数。
  • CurrentMetric_ObjectStorageQueueShutdownThreadsScheduled (Int64) — object storage 队列关闭线程池中已排队或正在运行的作业数。
  • CurrentMetric_ObjectStorageQueueMetadataCacheSizeBytes (Int64) — ObjectStorageQueue 元数据缓存的大小 (以字节为单位) 。
  • CurrentMetric_ObjectStorageQueueMetadataCacheSizeElements (Int64) — ObjectStorageQueue 元数据缓存中的元素数。
  • CurrentMetric_DeltaLakeSnapshotCacheSizeElements (Int64) — DeltaLake 快照缓存中的元素数。
  • CurrentMetric_BackupsIOThreads (Int64) — BackupsIO 线程池中的线程数。
  • CurrentMetric_BackupsIOThreadsActive (Int64) — BackupsIO 线程池中正在执行任务的线程数。
  • CurrentMetric_BackupsIOThreadsScheduled (Int64) — BackupsIO 线程池中已排队或正在运行的作业数。
  • CurrentMetric_DiskObjectStorageAsyncThreads (Int64) — 已废弃指标,不显示任何内容。
  • CurrentMetric_DiskObjectStorageAsyncThreadsActive (Int64) — 已废弃指标,不显示任何内容。
  • CurrentMetric_StorageHiveThreads (Int64) — StorageHive 线程池中的线程数。
  • CurrentMetric_StorageHiveThreadsActive (Int64) — StorageHive 线程池中正在执行任务的线程数。
  • CurrentMetric_StorageHiveThreadsScheduled (Int64) — StorageHive 线程池中已排队或正在运行的作业数。
  • CurrentMetric_TablesLoaderBackgroundThreads (Int64) — tables loader 后台线程池中的线程数。
  • CurrentMetric_TablesLoaderBackgroundThreadsActive (Int64) — tables loader 后台线程池中正在执行任务的线程数。
  • CurrentMetric_TablesLoaderBackgroundThreadsScheduled (Int64) — tables loader 后台线程池中已排队或正在运行的作业数。
  • CurrentMetric_TablesLoaderForegroundThreads (Int64) — tables loader 前台线程池中的线程数。
  • CurrentMetric_TablesLoaderForegroundThreadsActive (Int64) — tables loader 前台线程池中正在执行任务的线程数。
  • CurrentMetric_TablesLoaderForegroundThreadsScheduled (Int64) — tables loader 前台线程池中已排队或正在运行的作业数。
  • CurrentMetric_DatabaseOnDiskThreads (Int64) — DatabaseOnDisk 线程池中的线程数。
  • CurrentMetric_DatabaseOnDiskThreadsActive (Int64) — DatabaseOnDisk 线程池中正在执行任务的线程数。
  • CurrentMetric_DatabaseOnDiskThreadsScheduled (Int64) — DatabaseOnDisk 线程池中已排队或正在运行的作业数。
  • CurrentMetric_DatabaseBackupThreads (Int64) — DatabaseBackup 线程池中的线程数。
  • CurrentMetric_DatabaseBackupThreadsActive (Int64) — DatabaseBackup 线程池中正在执行任务的线程数。
  • CurrentMetric_DatabaseBackupThreadsScheduled (Int64) — DatabaseBackup 线程池中已排队或正在运行的作业数量。
  • CurrentMetric_DatabaseCatalogThreads (Int64) — DatabaseCatalog 线程池中的线程数量。
  • CurrentMetric_DatabaseCatalogThreadsActive (Int64) — DatabaseCatalog 线程池中正在运行任务的线程数量。
  • CurrentMetric_DatabaseCatalogThreadsScheduled (Int64) — DatabaseCatalog 线程池中已排队或正在运行的作业数量。
  • CurrentMetric_DestroyAggregatesThreads (Int64) — 用于销毁聚合状态的线程池中的线程数量。
  • CurrentMetric_DestroyAggregatesThreadsActive (Int64) — 用于销毁聚合状态的线程池中正在运行任务的线程数量。
  • CurrentMetric_DestroyAggregatesThreadsScheduled (Int64) — 用于销毁聚合状态的线程池中已排队或正在运行的作业数量。
  • CurrentMetric_ConcurrentHashJoinPoolThreads (Int64) — 用于并发哈希连接的线程池中的线程数量。
  • CurrentMetric_ConcurrentHashJoinPoolThreadsActive (Int64) — 用于并发哈希连接的线程池中正在运行任务的线程数量。
  • CurrentMetric_ConcurrentHashJoinPoolThreadsScheduled (Int64) — 用于并发哈希连接的线程池中已排队或正在运行的作业数量。
  • CurrentMetric_HashedDictionaryThreads (Int64) — HashedDictionary 线程池中的线程数量。
  • CurrentMetric_HashedDictionaryThreadsActive (Int64) — HashedDictionary 线程池中正在运行任务的线程数量。
  • CurrentMetric_HashedDictionaryThreadsScheduled (Int64) — HashedDictionary 线程池中已排队或正在运行的作业数量。
  • CurrentMetric_CacheDictionaryThreads (Int64) — CacheDictionary 线程池中的线程数量。
  • CurrentMetric_CacheDictionaryThreadsActive (Int64) — CacheDictionary 线程池中正在运行任务的线程数量。
  • CurrentMetric_CacheDictionaryThreadsScheduled (Int64) — CacheDictionary 线程池中已排队或正在运行的作业数量。
  • CurrentMetric_ParallelFormattingOutputFormatThreads (Int64) — ParallelFormattingOutputFormatThreads 线程池中的线程数量。
  • CurrentMetric_ParallelFormattingOutputFormatThreadsActive (Int64) — ParallelFormattingOutputFormatThreads 线程池中正在运行任务的线程数量。
  • CurrentMetric_ParallelFormattingOutputFormatThreadsScheduled (Int64) — ParallelFormattingOutputFormatThreads 线程池中已排队或正在运行的作业数量。
  • CurrentMetric_MergeTreeBackgroundExecutorThreads (Int64) — MergeTreeBackgroundExecutor 线程池中的线程数量。
  • CurrentMetric_MergeTreeBackgroundExecutorThreadsActive (Int64) — MergeTreeBackgroundExecutor 线程池中正在运行任务的线程数量。
  • CurrentMetric_MergeTreeBackgroundExecutorThreadsScheduled (Int64) — MergeTreeBackgroundExecutor 线程池中已排队或正在运行的作业数量。
  • CurrentMetric_AsynchronousInsertThreads (Int64) — AsynchronousInsert 线程池中的线程数量。
  • CurrentMetric_AsynchronousInsertThreadsActive (Int64) — AsynchronousInsert 线程池中正在运行任务的线程数量。
  • CurrentMetric_AsynchronousInsertThreadsScheduled (Int64) — AsynchronousInsert 线程池中已排队或正在运行的作业数量。
  • CurrentMetric_AsynchronousInsertQueueSize (Int64) — AsynchronousInsert 队列中待处理任务的数量。
  • CurrentMetric_AsynchronousInsertQueueBytes (Int64) — AsynchronousInsert 队列中待处理字节数。
  • CurrentMetric_StartupSystemTablesThreads (Int64) — StartupSystemTables 线程池中的线程数量。
  • CurrentMetric_StartupSystemTablesThreadsActive (Int64) — StartupSystemTables 线程池中正在执行任务的线程数量。
  • CurrentMetric_StartupSystemTablesThreadsScheduled (Int64) — StartupSystemTables 线程池中已排队或正在执行的作业数量。
  • CurrentMetric_AggregatorThreads (Int64) — Aggregator 线程池中的线程数量。
  • CurrentMetric_AggregatorThreadsActive (Int64) — Aggregator 线程池中正在执行任务的线程数量。
  • CurrentMetric_AggregatorThreadsScheduled (Int64) — Aggregator 线程池中已排队或正在执行的作业数量。
  • CurrentMetric_DDLWorkerThreads (Int64) — ON CLUSTER 查询的 DDLWorker 线程池中的线程数量。
  • CurrentMetric_DDLWorkerThreadsActive (Int64) — ON CLUSTER 查询的 DDLWORKER 线程池中正在执行任务的线程数量。
  • CurrentMetric_DDLWorkerThreadsScheduled (Int64) — ON CLUSTER 查询的 DDLWORKER 线程池中已排队或正在执行的作业数量。
  • CurrentMetric_StorageDistributedThreads (Int64) — StorageDistributed 线程池中的线程数量。
  • CurrentMetric_StorageDistributedThreadsActive (Int64) — StorageDistributed 线程池中正在执行任务的线程数量。
  • CurrentMetric_StorageDistributedThreadsScheduled (Int64) — StorageDistributed 线程池中已排队或正在执行的作业数量。
  • CurrentMetric_DistributedInsertThreads (Int64) — 用于向 Distributed 执行 INSERT 的线程数量。
  • CurrentMetric_DistributedInsertThreadsActive (Int64) — 用于向 Distributed 执行 INSERT 且正在执行任务的线程数量。
  • CurrentMetric_DistributedInsertThreadsScheduled (Int64) — 用于向 Distributed 执行 INSERT 的已排队或正在执行的作业数量。
  • CurrentMetric_StorageS3Threads (Int64) — StorageS3 线程池中的线程数量。
  • CurrentMetric_StorageS3ThreadsActive (Int64) — StorageS3 线程池中正在执行任务的线程数量。
  • CurrentMetric_StorageS3ThreadsScheduled (Int64) — StorageS3 线程池中已排队或正在执行的作业数量。
  • CurrentMetric_ObjectStorageS3Threads (Int64) — S3ObjectStorage 线程池中的线程数量。
  • CurrentMetric_ObjectStorageS3ThreadsActive (Int64) — S3ObjectStorage 线程池中正在执行任务的线程数量。
  • CurrentMetric_ObjectStorageS3ThreadsScheduled (Int64) — S3ObjectStorage 线程池中已排队或正在执行的作业数量。
  • CurrentMetric_StorageObjectStorageThreads (Int64) — 远程表引擎线程池中的线程数量。
  • CurrentMetric_StorageObjectStorageThreadsActive (Int64) — 远程表引擎线程池中正在执行任务的线程数量。
  • CurrentMetric_StorageObjectStorageThreadsScheduled (Int64) — 远程表引擎线程池中排队或活跃的作业数量。
  • CurrentMetric_ObjectStorageAzureThreads (Int64) — AzureObjectStorage 线程池中的线程数量。
  • CurrentMetric_ObjectStorageAzureThreadsActive (Int64) — AzureObjectStorage 线程池中正在运行任务的线程数量。
  • CurrentMetric_ObjectStorageAzureThreadsScheduled (Int64) — AzureObjectStorage 线程池中排队或活跃的作业数量。
  • CurrentMetric_BuildVectorSimilarityIndexThreads (Int64) — 构建向量相似度索引线程池中的线程数量。
  • CurrentMetric_BuildVectorSimilarityIndexThreadsActive (Int64) — 构建向量相似度索引线程池中正在运行任务的线程数量。
  • CurrentMetric_BuildVectorSimilarityIndexThreadsScheduled (Int64) — 构建向量相似度索引线程池中排队或活跃的作业数量。
  • CurrentMetric_DistributedIndexAnalysisThreads (Int64) — 用于分布式索引分析的线程池中的线程数量。
  • CurrentMetric_DistributedIndexAnalysisThreadsActive (Int64) — 用于分布式索引分析的线程池中正在运行任务的线程数量。
  • CurrentMetric_DistributedIndexAnalysisThreadsScheduled (Int64) — 分布式索引分析线程池中排队或活跃的作业数量。
  • CurrentMetric_ObjectStorageQueueRegisteredServers (Int64) — StorageS3(Azure)Queue 中已注册的服务器数量。
  • CurrentMetric_IcebergCatalogThreads (Int64) — IcebergCatalog 线程池中的线程数量。
  • CurrentMetric_IcebergCatalogThreadsActive (Int64) — IcebergCatalog 线程池中正在运行任务的线程数量。
  • CurrentMetric_IcebergCatalogThreadsScheduled (Int64) — IcebergCatalog 线程池中排队或活跃的作业数量。
  • CurrentMetric_IcebergSchedulePoolTask (Int64) — Iceberg 表的后台调度池中的任务数量。
  • CurrentMetric_IcebergSchedulePoolSize (Int64) — Iceberg 表的后台调度池中的任务数量上限。
  • CurrentMetric_ParallelWithQueryThreads (Int64) — 用于处理 PARALLEL WITH 查询的线程池中的线程数量。
  • CurrentMetric_ParallelWithQueryActiveThreads (Int64) — 用于处理 PARALLEL WITH 查询的线程池中的活跃线程数量。
  • CurrentMetric_ParallelWithQueryScheduledThreads (Int64) — 用于处理 PARALLEL WITH 查询的线程池中排队或活跃的作业数量。
  • CurrentMetric_DiskPlainRewritableAzureDirectoryMapSize (Int64) — AzureObjectStorage 的 ‘plain_rewritable’ 内存映射中本地到远程路径条目的数量。
  • CurrentMetric_DiskPlainRewritableAzureFileCount (Int64) — AzureObjectStorage 的 ‘plain_rewritable’ 内存映射中文件条目的数量。
  • CurrentMetric_DiskPlainRewritableLocalDirectoryMapSize (Int64) — LocalObjectStorage 的 ‘plain_rewritable’ 内存映射中本地到远程路径条目的数量。
  • CurrentMetric_DiskPlainRewritableLocalFileCount (Int64) — LocalObjectStorage 的 ‘plain_rewritable’ 内存映射中文件条目的数量。
  • CurrentMetric_DiskPlainRewritableS3DirectoryMapSize (Int64) — S3ObjectStorage 的 ‘plain_rewritable’ 内存映射中本地到远程路径条目的数量。
  • CurrentMetric_DiskPlainRewritableS3FileCount (Int64) — S3ObjectStorage 中 plain_rewritable 内存映射里的文件条目数。
  • CurrentMetric_MergeTreeFetchPartitionThreads (Int64) — 用于 ALTER TABLE FETCH PARTITION 的线程数。
  • CurrentMetric_MergeTreeFetchPartitionThreadsActive (Int64) — 用于 ALTER TABLE FETCH PARTITION 拉取分片的线程数。
  • CurrentMetric_MergeTreeFetchPartitionThreadsScheduled (Int64) — ALTER TABLE FETCH PARTITION 中已排队或正在执行的分片拉取数。
  • CurrentMetric_MergeTreePartsLoaderThreads (Int64) — MergeTree parts 加载线程池中的线程数。
  • CurrentMetric_MergeTreePartsLoaderThreadsActive (Int64) — MergeTree parts 加载线程池中正在执行任务的线程数。
  • CurrentMetric_MergeTreePartsLoaderThreadsScheduled (Int64) — MergeTree parts 加载线程池中已排队或正在执行的作业数。
  • CurrentMetric_MergeTreeOutdatedPartsLoaderThreads (Int64) — 用于加载过期数据分区片段的线程池中的线程数。
  • CurrentMetric_MergeTreeOutdatedPartsLoaderThreadsActive (Int64) — 用于加载过期数据分区片段的线程池中的活跃线程数。
  • CurrentMetric_MergeTreeOutdatedPartsLoaderThreadsScheduled (Int64) — 用于加载过期数据分区片段的线程池中已排队或正在执行的作业数。
  • CurrentMetric_MergeTreeUnexpectedPartsLoaderThreads (Int64) — 用于加载异常数据分区片段的线程池中的线程数。
  • CurrentMetric_MergeTreeUnexpectedPartsLoaderThreadsActive (Int64) — 用于加载异常数据分区片段的线程池中的活跃线程数。
  • CurrentMetric_MergeTreeUnexpectedPartsLoaderThreadsScheduled (Int64) — 用于加载异常数据分区片段的线程池中已排队或正在执行的作业数。
  • CurrentMetric_MergeTreePartsCleanerThreads (Int64) — MergeTree parts 清理器线程池中的线程数。
  • CurrentMetric_MergeTreePartsCleanerThreadsActive (Int64) — MergeTree parts 清理器线程池中正在执行任务的线程数。
  • CurrentMetric_MergeTreePartsCleanerThreadsScheduled (Int64) — MergeTree parts 清理器线程池中已排队或正在执行的作业数。
  • CurrentMetric_DatabaseReplicatedCreateTablesThreads (Int64) — DatabaseReplicated 中用于创建表的线程池中的线程数。
  • CurrentMetric_DatabaseReplicatedCreateTablesThreadsActive (Int64) — DatabaseReplicated 中用于创建表的线程池中的活跃线程数。
  • CurrentMetric_DatabaseReplicatedCreateTablesThreadsScheduled (Int64) — DatabaseReplicated 中用于创建表的线程池里已排队或正在执行的作业数。
  • CurrentMetric_IDiskCopierThreads (Int64) — 用于在不同类型磁盘之间复制数据的线程数。
  • CurrentMetric_IDiskCopierThreadsActive (Int64) — 用于在不同类型磁盘之间复制数据且正在执行任务的线程数。
  • CurrentMetric_IDiskCopierThreadsScheduled (Int64) — 用于在不同类型磁盘之间复制数据时已排队或正在执行的作业数。
  • CurrentMetric_SystemReplicasThreads (Int64) — system.replicas 线程池中的线程数。
  • CurrentMetric_SystemDatabaseReplicasThreads (Int64) — system.database_replicas 线程池中的线程数。
  • CurrentMetric_SystemReplicasThreadsActive (Int64) — system.replicas 线程池中正在执行任务的线程数。
  • CurrentMetric_SystemDatabaseReplicasThreadsActive (Int64) — system.database_replicas 线程池中正在执行任务的线程数。
  • CurrentMetric_SystemReplicasThreadsScheduled (Int64) — system.replicas 线程池中处于排队或活动状态的作业数。
  • CurrentMetric_SystemDatabaseReplicasThreadsScheduled (Int64) — system.database_replicas 线程池中处于排队或活动状态的作业数。
  • CurrentMetric_RestartReplicaThreads (Int64) — RESTART REPLICA 线程池中的线程数。
  • CurrentMetric_RestartReplicaThreadsActive (Int64) — RESTART REPLICA 线程池中正在执行任务的线程数。
  • CurrentMetric_RestartReplicaThreadsScheduled (Int64) — RESTART REPLICA 线程池中处于排队或活动状态的作业数。
  • CurrentMetric_QueryPipelineExecutorThreads (Int64) — PipelineExecutor 线程池中的线程数。
  • CurrentMetric_QueryPipelineExecutorThreadsActive (Int64) — PipelineExecutor 线程池中正在执行任务的线程数。
  • CurrentMetric_QueryPipelineExecutorThreadsScheduled (Int64) — PipelineExecutor 线程池中处于排队或活动状态的作业数。
  • CurrentMetric_ParquetEncoderThreads (Int64) — ParquetBlockOutputFormat 线程池中的线程数。
  • CurrentMetric_ParquetEncoderThreadsActive (Int64) — ParquetBlockOutputFormat 线程池中正在执行任务的线程数。
  • CurrentMetric_ParquetEncoderThreadsScheduled (Int64) — ParquetBlockOutputFormat 线程池中处于排队或活动状态的作业数。
  • CurrentMetric_MergeTreeSubcolumnsReaderThreads (Int64) — 用于读取 MergeTree 子列的线程池中的线程数。
  • CurrentMetric_MergeTreeSubcolumnsReaderThreadsActive (Int64) — 用于读取 MergeTree 子列的线程池中正在执行任务的线程数。
  • CurrentMetric_MergeTreeSubcolumnsReaderThreadsScheduled (Int64) — 用于读取 MergeTree 子列的线程池中处于排队或活动状态的作业数。
  • CurrentMetric_FormatParsingThreads (Int64) — 用于解析输入的线程池中的线程数。
  • CurrentMetric_FormatParsingThreadsActive (Int64) — 用于解析输入的线程池中正在执行任务的线程数。
  • CurrentMetric_FormatParsingThreadsScheduled (Int64) — 用于解析输入的线程池中处于排队或活动状态的作业数。
  • CurrentMetric_OutdatedPartsLoadingThreads (Int64) — 用于加载过期数据分区片段的线程池中的线程数。
  • CurrentMetric_OutdatedPartsLoadingThreadsActive (Int64) — 用于加载过期数据分区片段的线程池中的活动线程数。
  • CurrentMetric_OutdatedPartsLoadingThreadsScheduled (Int64) — 用于加载过期数据分区片段的线程池中处于排队或活动状态的作业数。
  • CurrentMetric_FreezePartThreads (Int64) — 用于冻结数据分区片段的线程池中的线程数。
  • CurrentMetric_FreezePartThreadsActive (Int64) — 用于冻结数据分区片段的线程池中的活动线程数。
  • CurrentMetric_FreezePartThreadsScheduled (Int64) — 用于冻结数据分区片段的线程池中处于排队或活动状态的作业数。
  • CurrentMetric_PolygonDictionaryThreads (Int64) — 用于 Polygon 字典的线程池中的线程数。
  • CurrentMetric_PolygonDictionaryThreadsActive (Int64) — polygon dictionaries 线程池中的活跃线程数。
  • CurrentMetric_PolygonDictionaryThreadsScheduled (Int64) — polygon dictionaries 线程池中已排队或处于活跃状态的作业数。
  • CurrentMetric_KeeperReadThreads (Int64) — Keeper server 读取线程池中的线程数。
  • CurrentMetric_KeeperReadThreadsActive (Int64) — Keeper server 读取线程池中的活跃线程数。
  • CurrentMetric_KeeperReadThreadsScheduled (Int64) — Keeper server 读取线程池中已排队或处于活跃状态的作业数。该指标没有实际意义,因为此线程池中的实际读取任务是通过另一种机制调度的。
  • CurrentMetric_DistributedBytesToInsert (Int64) — Distributed 表异步插入中待处理的字节数。会汇总每个分片的字节数。
  • CurrentMetric_BrokenDistributedBytesToInsert (Int64) — Distributed 表异步插入中已标记为损坏的字节数。会汇总每个分片的字节数。
  • CurrentMetric_DistributedFilesToInsert (Int64) — Distributed 表异步插入中待处理的文件数。会汇总每个分片的文件数。
  • CurrentMetric_BrokenDistributedFilesToInsert (Int64) — Distributed 表异步插入中已标记为损坏的文件数。会汇总每个分片的文件数。
  • CurrentMetric_TablesToDropQueueSize (Int64) — 已被 drop、正在等待后台删除数据的表数量。
  • CurrentMetric_MaxDDLEntryID (Int64) — DDLWorker 已处理的最大 DDL entry。
  • CurrentMetric_MaxPushedDDLEntryID (Int64) — DDLWorker 已推送到 ZooKeeper 的最大 DDL entry。
  • CurrentMetric_PartsTemporary (Int64) — 该 parts 当前正在生成中,不在 data_parts 列表中。
  • CurrentMetric_PartsPreCommitted (Int64) — 已弃用。参见 PartsPreActive。
  • CurrentMetric_PartsCommitted (Int64) — 已弃用。参见 PartsActive。
  • CurrentMetric_PartsPreActive (Int64) — 该 parts 位于 data_parts 中,但不用于 SELECT。
  • CurrentMetric_PartsActive (Int64) — 活跃的数据分区片段,供当前及后续的 SELECT 使用。
  • CurrentMetric_AttachedDatabase (Int64) — 活跃数据库数量。
  • CurrentMetric_AttachedTable (Int64) — 活跃表数量。
  • CurrentMetric_AttachedReplicatedTable (Int64) — 活跃复制表数量。
  • CurrentMetric_AttachedView (Int64) — 活跃视图数量。
  • CurrentMetric_AttachedDictionary (Int64) — 活跃字典数量。
  • CurrentMetric_PartsOutdated (Int64) — 非活跃的数据分区片段,但仍可能仅被当前的 SELECT 使用,可在 SELECT 完成后删除。
  • CurrentMetric_PartsDeleting (Int64) — 带有 identity 引用计数器的非活跃数据分区片段,当前正由清理器删除。
  • CurrentMetric_PartsDeleteOnDestroy (Int64) — 该分片已移动到另一块 disk,应在其自身的 destructor 中删除。
  • CurrentMetric_PartsWide (Int64) — 宽格式 parts。
  • CurrentMetric_PartsCompact (Int64) — 紧凑格式 parts。
  • CurrentMetric_MMappedFiles (Int64) — 内存映射文件总数。
  • CurrentMetric_MMappedFileBytes (Int64) — 内存映射文件区域的总大小。
  • CurrentMetric_AsynchronousReadWait (Int64) — 等待异步读取的线程数。
  • CurrentMetric_PendingAsyncInsert (Int64) — 等待刷盘的异步插入数。
  • CurrentMetric_KafkaConsumers (Int64) — 活跃 Kafka 消费者数量。
  • CurrentMetric_KafkaConsumersWithAssignment (Int64) — 已分配分区的活跃 Kafka 消费者数量。
  • CurrentMetric_KafkaProducers (Int64) — 已创建的活跃 Kafka 生产者数量。
  • CurrentMetric_KafkaLibrdkafkaThreads (Int64) — 活跃 librdkafka 线程数。
  • CurrentMetric_KafkaBackgroundReads (Int64) — 当前正在运行的后台读取数 (从 Kafka 填充 materialized views) 。
  • CurrentMetric_KafkaConsumersInUse (Int64) — 当前被 direct 或后台读取使用的消费者数量。
  • CurrentMetric_KafkaWrites (Int64) — 当前正在向 Kafka 执行的插入数。
  • CurrentMetric_KafkaAssignedPartitions (Int64) — 当前分配给 Kafka 表的分区数量。
  • CurrentMetric_FilesystemCacheReadBuffers (Int64) — 活跃的缓存缓冲区数量。
  • CurrentMetric_CacheFileSegments (Int64) — 现有缓存 File 段数量。
  • CurrentMetric_CacheDetachedFileSegments (Int64) — 现有 detached 缓存 File 段数量。
  • CurrentMetric_FilesystemCacheSize (Int64) — 文件系统缓存大小 (字节) 。
  • CurrentMetric_FilesystemCacheSizeLimit (Int64) — 文件系统缓存大小上限 (字节) 。
  • CurrentMetric_FilesystemCacheElements (Int64) — 文件系统缓存元素 (File 段) 。
  • CurrentMetric_FilesystemCacheDownloadQueueElements (Int64) — 下载队列中的文件系统缓存元素。
  • CurrentMetric_FilesystemCacheDelayedCleanupElements (Int64) — 后台清理队列中的文件系统缓存元素。
  • CurrentMetric_FilesystemCacheHoldFileSegments (Int64) — 当前被保留且不可释放的文件系统缓存 File 段数量。
  • CurrentMetric_FilesystemCacheKeys (Int64) — 文件系统缓存中的键数量。
  • CurrentMetric_FilesystemCacheReserveThreads (Int64) — 尝试在缓存中预留空间的线程数。
  • CurrentMetric_AsyncInsertCacheSize (Int64) — 缓存中 async insert 哈希 ID 的数量
  • CurrentMetric_IcebergMetadataFilesCacheBytes (Int64) — Iceberg 元数据缓存的大小 (以字节为单位)
  • CurrentMetric_IcebergMetadataFilesCacheFiles (Int64) — Iceberg 元数据缓存中已缓存文件的数量
  • CurrentMetric_ParquetMetadataCacheBytes (Int64) — Parquet 元数据缓存的大小 (以字节为单位)
  • CurrentMetric_ParquetMetadataCacheFiles (Int64) — Parquet 元数据缓存中已缓存文件的数量
  • CurrentMetric_AvroSchemaCacheBytes (Int64) — Avro schema 缓存的大小 (以字节为单位)
  • CurrentMetric_AvroSchemaCacheCells (Int64) — 已缓存的 Avro schema 数量
  • CurrentMetric_AvroSchemaRegistryCacheBytes (Int64) — Avro Schema Registry 缓存的大小 (以字节为单位)
  • CurrentMetric_AvroSchemaRegistryCacheCells (Int64) — Avro Schema Registry 缓存中的条目数量
  • CurrentMetric_HiveFilesCacheBytes (Int64) — Hive 缓存的大小 (以字节为单位)
  • CurrentMetric_HiveFilesCacheFiles (Int64) — Hive 缓存中已缓存文件的数量
  • CurrentMetric_HiveMetadataFilesCacheBytes (Int64) — Hive 元数据缓存的大小 (以字节为单位)
  • CurrentMetric_HiveMetadataFilesCacheFiles (Int64) — Hive 元数据缓存中已缓存文件的数量
  • CurrentMetric_VectorSimilarityIndexCacheBytes (Int64) — 向量相似度索引缓存的大小 (以字节为单位)
  • CurrentMetric_VectorSimilarityIndexCacheCells (Int64) — 向量相似度索引缓存中的条目数量
  • CurrentMetric_TextIndexTokensCacheBytes (Int64) — 文本索引标记缓存的大小 (以字节为单位)
  • CurrentMetric_TextIndexTokensCacheCells (Int64) — 文本索引标记缓存中的条目数量
  • CurrentMetric_TextIndexHeaderCacheBytes (Int64) — 文本索引头部缓存的大小 (以字节为单位)
  • CurrentMetric_TextIndexHeaderCacheCells (Int64) — 文本索引头部缓存中的条目数量
  • CurrentMetric_TextIndexPostingsCacheBytes (Int64) — 文本索引倒排列表缓存的大小 (以字节为单位)
  • CurrentMetric_TextIndexPostingsCacheCells (Int64) — 文本索引倒排列表缓存中的条目数量
  • CurrentMetric_DNSHostsCacheBytes (Int64) — DNS 主机缓存的大小 (以字节为单位)
  • CurrentMetric_DNSHostsCacheSize (Int64) — 已缓存 DNS 主机的数量
  • CurrentMetric_DNSAddressesCacheBytes (Int64) — DNS 地址缓存的大小 (以字节为单位)
  • CurrentMetric_DNSAddressesCacheSize (Int64) — 已缓存 DNS 地址的数量
  • CurrentMetric_MarkCacheBytes (Int64) — 标记缓存的总大小 (字节)
  • CurrentMetric_MarkCacheFiles (Int64) — 标记缓存中已缓存的标记文件总数
  • CurrentMetric_NamedCollection (Int64) — 命名集合的数量
  • CurrentMetric_PrimaryIndexCacheBytes (Int64) — 主索引缓存的总大小 (字节)
  • CurrentMetric_PrimaryIndexCacheFiles (Int64) — 主索引缓存中已缓存的索引文件总数
  • CurrentMetric_PageCacheBytes (Int64) — 用户态页缓存的总大小 (字节)
  • CurrentMetric_PageCacheCells (Int64) — 用户态页缓存中的条目总数
  • CurrentMetric_UncompressedCacheBytes (Int64) — 未压缩缓存的总大小 (字节) 。未压缩缓存通常无法提升性能,因此大多数情况下应避免使用
  • CurrentMetric_UncompressedCacheCells (Int64) — 未压缩缓存中的条目总数。每个条目表示一个解压后的数据块。未压缩缓存通常无法提升性能,因此大多数情况下应避免使用
  • CurrentMetric_IndexMarkCacheBytes (Int64) — 二级索引的标记缓存总大小 (字节)
  • CurrentMetric_IndexMarkCacheFiles (Int64) — 二级索引的标记缓存中已缓存的标记文件总数
  • CurrentMetric_IndexUncompressedCacheBytes (Int64) — 二级索引的未压缩缓存总大小 (字节) 。未压缩缓存通常无法提升性能,因此大多数情况下应避免使用
  • CurrentMetric_IndexUncompressedCacheCells (Int64) — 二级索引的未压缩缓存中的条目总数。每个条目表示一个解压后的数据块。未压缩缓存通常无法提升性能,因此大多数情况下应避免使用
  • CurrentMetric_MMapCacheCells (Int64) — 通过 mmap 打开的文件数 (即映射到内存中的文件数) 。该指标用于统计将设置 local_filesystem_read_method 设为 mmap 的查询。通过 mmap 打开的文件会保留在缓存中,以避免代价高昂的 TLB 刷写。
  • CurrentMetric_QueryCacheBytes (Int64) — 查询缓存的总大小 (字节)
  • CurrentMetric_QueryCacheEntries (Int64) — 查询缓存中的条目总数
  • CurrentMetric_QueryConditionCacheBytes (Int64) — 查询条件缓存的总大小 (字节)
  • CurrentMetric_QueryConditionCacheEntries (Int64) — 查询条件缓存中的条目总数
  • CurrentMetric_CompiledExpressionCacheBytes (Int64) — JIT 编译代码缓存占用的总字节数
  • CurrentMetric_CompiledExpressionCacheCount (Int64) — JIT 编译代码缓存中的条目总数
  • CurrentMetric_SerializationCacheBytesInMemoryAllocated (Int64) — 序列化缓存的总大小 (字节) ,包括键以及空槽位带来的额外开销
  • CurrentMetric_SerializationCacheBytesInMemory (Int64) — 序列化缓存的总大小 (字节) ,仅包括值
  • CurrentMetric_SerializationCacheCount (Int64) — 序列化缓存中的条目总数
  • CurrentMetric_MergeJoinBlocksCacheBytes (Int64) — MergeJoin 中缓存块占用的总字节数
  • CurrentMetric_MergeJoinBlocksCacheCount (Int64) — MergeJoin 中已缓存的块总数
  • CurrentMetric_BcryptCacheBytes (Int64) — bcrypt 身份验证缓存的总大小 (以字节为单位)
  • CurrentMetric_BcryptCacheSize (Int64) — bcrypt 身份验证缓存中的条目总数
  • CurrentMetric_ColumnsDescriptionsCacheSize (Int64) — ColumnsDescriptions 缓存大小 (每表缓存)
  • CurrentMetric_S3Requests (Int64) — S3 请求数
  • CurrentMetric_KeeperAliveConnections (Int64) — 存活连接数
  • CurrentMetric_KeeperOutstandingRequests (Int64) — 未完成请求数
  • CurrentMetric_ThreadsInOvercommitTracker (Int64) — OvercommitTracker 中等待的线程数
  • CurrentMetric_IOUringPendingEvents (Int64) — 等待提交的 io_uring SQE 数量
  • CurrentMetric_IOUringInFlightEvents (Int64) — 传输中的 io_uring SQE 数量
  • CurrentMetric_ReadTaskRequestsSent (Int64) — 远程服务器回发至发起端服务器、用于选择读取任务的在途回调请求当前数量 (用于 s3Cluster 表函数及类似场景) 。在远程服务器端测量。
  • CurrentMetric_MergeTreeReadTaskRequestsSent (Int64) — 远程服务器回发至发起端服务器、用于选择读取任务的在途回调请求当前数量 (用于 MergeTree 表) 。在远程服务器端测量。
  • CurrentMetric_MergeTreeAllRangesAnnouncementsSent (Int64) — 远程服务器发送至发起端服务器、关于数据分区片段集合的在途通知当前数量 (用于 MergeTree 表) 。在远程服务器端测量。
  • CurrentMetric_CreatedTimersInQueryProfiler (Int64) — QueryProfiler 中已创建的线程局部计时器数量
  • CurrentMetric_ActiveTimersInQueryProfiler (Int64) — QueryProfiler 中活跃的线程局部计时器数量
  • CurrentMetric_RefreshableViews (Int64) — 启用周期性刷新 (REFRESH) 的 materialized view 数量
  • CurrentMetric_RefreshingViews (Int64) — 当前正在执行刷新的 materialized view 数量
  • CurrentMetric_StorageBufferFlushThreads (Int64) — StorageBuffer 中用于后台刷写的线程数
  • CurrentMetric_StorageBufferFlushThreadsActive (Int64) — StorageBuffer 中正在执行任务的后台刷写线程数
  • CurrentMetric_StorageBufferFlushThreadsScheduled (Int64) — StorageBuffer 中用于后台刷写的排队中或活跃线程数
  • CurrentMetric_SharedMergeTreeThreads (Int64) — SharedMergeTree 内部线程池中的线程数
  • CurrentMetric_SharedMergeTreeThreadsActive (Int64) — SharedMergeTree 内部线程池中正在执行任务的线程数
  • CurrentMetric_SharedMergeTreeThreadsScheduled (Int64) — SharedMergeTree 内部线程池中排队中或活跃的线程数
  • CurrentMetric_SharedMergeTreeFetch (Int64) — 正在进行的拉取操作数量
  • CurrentMetric_SharedMergeTreeAssignedCurrentParts (Int64) — 被 merge 或 mutation 锁定的 parts 数量
  • CurrentMetric_SharedMergeTreeOutdatedPartsInKeeper (Int64) — Keeper 中存储的过期 parts 记录数量
  • CurrentMetric_SharedMergeTreeCondemnedPartsInKeeper (Int64) — Keeper 中存储的废弃 parts 记录数
  • CurrentMetric_SharedMergeTreeBrokenCondemnedPartsInKeeper (Int64) — Keeper 中存储的损坏废弃 parts 记录数
  • CurrentMetric_SharedMergeTreeMaxActiveReplicas (Int64) — Keeper 中已注册的活跃副本最大数量
  • CurrentMetric_SharedMergeTreeMaxInactiveReplicas (Int64) — Keeper 中已注册的非活跃副本最大数量
  • CurrentMetric_SharedMergeTreeMaxReplicas (Int64) — Keeper 中跨所有表注册的副本最大数量。请注意,它可能不等于 SharedMergeTreeMaxActiveReplicas 与 SharedMergeTreeMaxInactiveReplicas 之和
  • CurrentMetric_SharedMergeTreeMinActiveReplicas (Int64) — Keeper 中已注册的活跃副本最小数量
  • CurrentMetric_SharedMergeTreeMinInactiveReplicas (Int64) — Keeper 中已注册的非活跃副本最小数量
  • CurrentMetric_SharedMergeTreeMinReplicas (Int64) — Keeper 中跨所有表注册的副本最小数量。请注意,它可能不等于 SharedMergeTreeMinActiveReplicas 与 SharedMergeTreeMinInactiveReplicas 之和
  • CurrentMetric_SharedMergeTreeMinPartitions (Int64) — Keeper 中跨所有 SharedMergeTree 表注册的分区最小数量
  • CurrentMetric_SharedMergeTreeMaxPartitions (Int64) — Keeper 中跨所有 SharedMergeTree 表注册的分区最大数量
  • CurrentMetric_CacheWarmerBytesInProgress (Int64) — 等待异步加载到文件系统缓存中的远程 File 段总大小。
  • CurrentMetric_DistrCacheOpenedConnections (Int64) — 到 Distributed Cache 的已打开连接数
  • CurrentMetric_DistrCacheSharedLimitCount (Int64) — 按照 DistributedCache::ConnectionPool::SharedLimit 打开的连接数
  • CurrentMetric_DistrCacheUsedConnections (Int64) — 当前到 Distributed Cache 的已使用连接数
  • CurrentMetric_DistrCacheAllocatedConnections (Int64) — 当前已分配给 Distributed Cache 连接池的连接数
  • CurrentMetric_DistrCacheBorrowedConnections (Int64) — 当前从 Distributed Cache 连接池借出的连接数
  • CurrentMetric_DistrCacheReadRequests (Int64) — 已执行的发送到 Distributed Cache 的读取请求数
  • CurrentMetric_DistrCacheWriteRequests (Int64) — 已执行的发送到 Distributed Cache 的写入请求数
  • CurrentMetric_DistrCacheWriteBuffers (Int64) — 分布式缓存写入缓冲区数量
  • CurrentMetric_DistrCacheReadBuffers (Int64) — 分布式缓存读取缓冲区数量
  • CurrentMetric_DistrCacheServerConnections (Int64) — 从 Distributed Cache 到 ClickHouse server 的已打开连接数
  • CurrentMetric_DistrCacheRegisteredServers (Int64) — 分布式缓存中已注册的 server 数量
  • CurrentMetric_DistrCacheRegisteredServersCurrentAZ (Int64) — 当前可用区中分布式缓存已注册的 server 数量
  • CurrentMetric_DistrCacheServerS3CachedClients (Int64) — 分布式缓存的 S3 缓存 client 数量
  • CurrentMetric_DistrCacheServerRegistryConnections (Int64) — 从 Distributed Cache 到 ClickHouse server 的活动连接数 (未因限制而被标记为已取消)
  • CurrentMetric_SchedulerIOReadScheduled (Int64) — 当前正在调度的 IO 读取数
  • CurrentMetric_SchedulerIOWriteScheduled (Int64) — 当前正在调度的 IO 写入数
  • CurrentMetric_StorageConnectionsStored (Int64) — storages 的会话池中已存储的会话总数
  • CurrentMetric_StorageConnectionsTotal (Int64) — storages 的会话总数:包括池中存储的会话以及当前正在使用的会话
  • CurrentMetric_DiskConnectionsStored (Int64) — disks 的会话池中已存储的会话总数
  • CurrentMetric_DiskConnectionsTotal (Int64) — disks 的会话总数:包括池中存储的会话以及当前正在使用的会话
  • CurrentMetric_BlobKillerThreads (Int64) — object storage disk 删除进程的线程池中的线程数
  • CurrentMetric_BlobKillerThreadsActive (Int64) — object storage disk 删除进程的线程池中正在执行任务的线程数
  • CurrentMetric_BlobKillerThreadsScheduled (Int64) — object storage disk 删除进程的线程池中已排队或正在执行的任务数
  • CurrentMetric_BlobCopierThreads (Int64) — object storage disk 后台复制进程的线程池中的线程数
  • CurrentMetric_BlobCopierThreadsActive (Int64) — object storage disk 后台复制进程的线程池中正在执行任务的线程数
  • CurrentMetric_BlobCopierThreadsScheduled (Int64) — object storage disk 后台复制进程的线程池中已排队或正在执行的任务数
  • CurrentMetric_HTTPConnectionsStored (Int64) — HTTP 主机的会话池中已存储的会话总数
  • CurrentMetric_HTTPConnectionsTotal (Int64) — HTTP 主机的会话总数:包括池中存储的会话以及当前正在使用的会话
  • CurrentMetric_AddressesActive (Int64) — 可用于通过连接池创建连接的地址总数
  • CurrentMetric_AddressesBanned (Int64) — 因故障而被禁止通过连接池创建连接的地址总数
  • CurrentMetric_FilteringMarksWithPrimaryKey (Int64) — 当前按主键对 mark ranges 执行过滤的线程数
  • CurrentMetric_FilteringMarksWithSecondaryKeys (Int64) — 当前按次级键对 mark ranges 执行过滤的线程数
  • CurrentMetric_ConcurrencyControlScheduled (Int64) — 当前正在调度的 CPU 插槽请求总数
  • CurrentMetric_ConcurrencyControlAcquired (Int64) — 已获取的 CPU 插槽总数
  • CurrentMetric_ConcurrencyControlAcquiredNonCompeting (Int64) — 已获取且不被视为竞争的 CPU 插槽总数 (如果使用 fair_round_robin scheduler,则为第一个线程)
  • CurrentMetric_ConcurrencyControlSoftLimit (Int64) — CPU 插槽数量的软限制值
  • CurrentMetric_ConcurrencyControlPreempted (Int64) — 等待 CPU 插槽的被抢占线程总数
  • CurrentMetric_ConcurrentQueryScheduled (Int64) — 当前正在调度的查询插槽请求总数
  • CurrentMetric_ConcurrentQueryAcquired (Int64) — 已获取的查询插槽总数
  • CurrentMetric_DiskS3NoSuchKeyErrors (Int64) — 通过 ClickHouse 磁盘从 S3 云存储读取数据时发生的 NoSuchKey 错误数。
  • CurrentMetric_SharedCatalogStateApplicationThreads (Int64) — Shared Catalog 中用于状态应用的线程池中的线程数。
  • CurrentMetric_SharedCatalogStateApplicationThreadsActive (Int64) — Shared Catalog 中用于状态应用的线程池中的活动线程数。
  • CurrentMetric_SharedCatalogStateApplicationThreadsScheduled (Int64) — Shared Catalog 中用于状态应用的线程池中已排队或活动中的作业数。
  • CurrentMetric_SharedCatalogDropLocalThreads (Int64) — Shared Catalog 中用于删除本地表的线程池中的线程数。
  • CurrentMetric_SharedCatalogDropLocalThreadsActive (Int64) — Shared Catalog 中用于删除本地表的线程池中的活动线程数。
  • CurrentMetric_SharedCatalogDropLocalThreadsScheduled (Int64) — Shared Catalog 中用于删除本地表的线程池中已排队或活动中的作业数。
  • CurrentMetric_SharedCatalogDropZooKeeperThreads (Int64) — Shared Catalog 中用于删除 ZooKeeper 中对象的线程池中的线程数。
  • CurrentMetric_SharedCatalogDropZooKeeperThreadsActive (Int64) — Shared Catalog 中用于删除 ZooKeeper 中对象的线程池中的活动线程数。
  • CurrentMetric_SharedCatalogDropZooKeeperThreadsScheduled (Int64) — Shared Catalog 中用于删除 ZooKeeper 中对象的线程池中已排队或活动中的作业数。
  • CurrentMetric_CoordinatedMergesCoordinatorRunningMerges (Int64) — 合并协调器可见的正在运行的合并数。
  • CurrentMetric_CoordinatedMergesCoordinatorAssignedMerges (Int64) — 合并协调器状态中已分配的合并数。
  • CurrentMetric_CoordinatedMergesWorkerAssignedMerges (Int64) — 合并工作线程状态中已分配的合并数。
  • CurrentMetric_SharedDatabaseCatalogTablesInLocalDropDetachQueue (Int64) — Shared Catalog 中本地删除或分离队列中的表数。
  • CurrentMetric_SharedCatalogDropDetachLocalTablesErrors (Int64) — Shared Catalog 中尝试删除或分离本地表时发生的错误数。
  • CurrentMetric_SharedCatalogNumberOfObjectsInState (Int64) — Shared Catalog 当前状态中的对象数。
  • CurrentMetric_MetadataFromKeeperCacheObjects (Int64) — 磁盘元数据缓存中的对象数。
  • CurrentMetric_LicenseRemainingSeconds (Int64) — 许可证有效期剩余秒数。
  • CurrentMetric_StartupScriptsExecutionState (Int64) — 启动脚本的执行状态:0 = 未完成,1 = 成功,2 = 失败。
  • CurrentMetric_IsServerShuttingDown (Int64) — 指示服务器是否正在关闭:0 = 否,1 = 是
  • CurrentMetric_StatelessWorkerThreads (Int64) — 无状态工作线程池中的线程数。
  • CurrentMetric_StatelessWorkerThreadsActive (Int64) — 无状态工作线程池中正在执行任务的线程数。
  • CurrentMetric_StatelessWorkerThreadsScheduled (Int64) — 无状态工作线程池中已排队或活动中的作业数。
  • CurrentMetric_ReadonlyDisks (Int64) — 在磁盘检查期间被标记为只读的磁盘数。
  • CurrentMetric_BrokenDisks (Int64) — 在磁盘检查期间被标记为损坏的磁盘数。
  • CurrentMetric_TaskTrackerThreads (Int64) — 分布式查询远程任务跟踪器使用的线程数量。
  • CurrentMetric_TaskTrackerThreadsActive (Int64) — 分布式查询远程任务跟踪器线程池中正在运行任务的线程数量。
  • CurrentMetric_TaskTrackerThreadsScheduled (Int64) — 分布式查询远程任务跟踪器线程池中已排队或正在运行的作业数量。
  • CurrentMetric_DropDistributedCacheThreads (Int64) — 用于执行 drop distributed cache 查询的线程池中的线程数量。
  • CurrentMetric_DropDistributedCacheThreadsActive (Int64) — 用于执行 drop distributed cache 查询的线程池中的活跃线程数量。
  • CurrentMetric_DropDistributedCacheThreadsScheduled (Int64) — 用于 drop distributed cache 的线程池中已排队或正在运行的作业数量。
  • CurrentMetric_S3CachedCredentialsProviders (Int64) — 已缓存的凭证提供商总数
  • CurrentMetric_MergeTreeSnapshotCommitThreads (Int64) — 用于提交快照的线程数量
  • CurrentMetric_MergeTreeSnapshotCommitThreadsActive (Int64) — 用于提交快照的活跃线程数量
  • CurrentMetric_MergeTreeSnapshotCommitThreadsScheduled (Int64) — 用于提交快照的已调度线程数量

示例

SELECT * FROM system.metric_log LIMIT 1 FORMAT Vertical;
Row 1:
──────
hostname:                                                        clickhouse.eu-central1.internal
event_date:                                                      2020-09-05
event_time:                                                      2020-09-05 16:22:33
event_time_microseconds:                                         2020-09-05 16:22:33.196807
milliseconds:                                                    196
ProfileEvent_Query:                                              0
ProfileEvent_SelectQuery:                                        0
ProfileEvent_InsertQuery:                                        0
ProfileEvent_FailedQuery:                                        0
ProfileEvent_FailedSelectQuery:                                  0
...
...
CurrentMetric_Revision:                                          54439
CurrentMetric_VersionInteger:                                    20009001
CurrentMetric_RWLockWaitingReaders:                              0
CurrentMetric_RWLockWaitingWriters:                              0
CurrentMetric_RWLockActiveReaders:                               0
CurrentMetric_RWLockActiveWriters:                               0
CurrentMetric_GlobalThread:                                      74
CurrentMetric_GlobalThreadActive:                                26
CurrentMetric_LocalThread:                                       0
CurrentMetric_LocalThreadActive:                                 0
CurrentMetric_DistributedFilesToInsert:                          0
Schema 此表可通过 XML 标签 <schema_type> 配置为不同的 schema 类型。默认 schema 类型为 wide,即每个指标或 profile 事件都存储在单独的列中。对于单列读取,这种 schema 的性能和效率最高。 transposed schema 以类似 system.asynchronous_metric_log 的格式存储数据,其中指标和事件按行存储。该 schema 适用于资源较少的部署,因为它能降低 merge 期间的资源消耗。 直方图 每一行还会在 histograms Nested 列中附带所有已注册直方图指标的快照,该列包含 metriclabelshistogramcountsum 字段。桶计数自服务器启动以来一直是累计的。默认情况下,总 count 为零的直方图不会输出,而已输出直方图中的零计数桶也会从 histogram Map 中省略;将 system_metric_log_show_zero_values_in_histograms = 1 (在 default 用户的 profile 中) 设为启用,即可保留所有直方图和所有桶。 示例查询:
SELECT h.metric, h.labels, h.histogram, h.count, h.sum
FROM system.metric_log
ARRAY JOIN histograms AS h
WHERE h.metric = 'keeper_response_time_ms' AND h.labels['operation_type'] = 'readonly'
ORDER BY event_time DESC
LIMIT 1;

另请参阅

最后修改于 2026年6月11日