ClickHouse Cloud에서 쿼리하기이 시스템 테이블의 데이터는 ClickHouse Cloud의 각 노드에 로컬로 저장됩니다. 따라서 전체 데이터를 모두 확인하려면
clusterAllReplicas 함수를 사용해야 합니다. 자세한 내용은 여기를 참조하십시오.설명
system.metrics 및 system.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 조건을 평가할 때 프라이머리 키(primary key)를 사용하는 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 퍼저가 시도한 퍼징 쿼리 수입니다.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 syscall을 기다리는 데 소요된 총 시간입니다.ProfileEvent_DirectorySyncElapsedMicroseconds(UInt64) — 디렉터리에 대해 F_FULLFSYNC/fsync/fdatasync syscall을 기다리는 데 소요된 총 시간입니다.ProfileEvent_ReadCompressedBytes(UInt64) — 압축된 소스(파일, 네트워크)에서 읽은 바이트 수(압축 해제 전 바이트 수)입니다.ProfileEvent_CompressedReadBufferBlocks(UInt64) — 압축된 소스(파일, 네트워크)에서 읽은 압축 블록 수(서로 독립적으로 압축된 데이터 블록 수)입니다.ProfileEvent_CompressedReadBufferBytes(UInt64) — 압축된 소스(파일, 네트워크)에서 읽은 비압축 바이트 수(압축 해제 후 바이트 수)입니다.ProfileEvent_CompressedReadBufferChecksumDoesntMatch(UInt64) — 압축 블록의 체크섬이 일치하지 않은 횟수입니다.ProfileEvent_CompressedReadBufferChecksumDoesntMatchSingleBitMismatch(UInt64) — 압축 블록 체크섬 불일치가 단일 비트 차이로 인해 발생한 횟수입니다.ProfileEvent_CompressedReadBufferChecksumDoesntMatchMicroseconds(UInt64) — 압축 블록 체크섬 불일치로 인한 비트 뒤집힘(bit-flip)을 감지하는 데 소요된 총 시간입니다.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 인터페이스를 사용한 쓰기 횟수입니다ProfileEvent_AIOWriteBytes(UInt64) — Linux 또는 FreeBSD AIO 인터페이스를 사용해 쓴 바이트 수입니다ProfileEvent_AIORead(UInt64) — Linux 또는 FreeBSD AIO 인터페이스를 사용한 읽기 횟수입니다ProfileEvent_AIOReadBytes(UInt64) — Linux 또는 FreeBSD AIO 인터페이스를 사용해 읽은 바이트 수입니다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 데이터 iterator의 동기 초기화에 소요된 총 시간입니다.ProfileEvent_IcebergMetadataUpdateMicroseconds(UInt64) — Iceberg 데이터 iterator의 동기 초기화에 소요된 총 시간입니다.ProfileEvent_IcebergMetadataReturnedObjectInfos(UInt64) — Iceberg iterator에서 반환된 객체 정보의 총 개수입니다.ProfileEvent_IcebergMinMaxNonPrunedDeleteFiles(UInt64) — 파티셔닝 및 시퀀스 번호 기준으로 적합한 쌍 중 minmax 분석으로 채택된 data files-position delete file 쌍의 총 개수입니다.ProfileEvent_IcebergMinMaxPrunedDeleteFiles(UInt64) — 파티셔닝 및 시퀀스 번호 기준으로 적합한 쌍 중 minmax 분석으로 채택된 data files-position delete file 쌍의 총 개수입니다.ProfileEvent_VectorSimilarityIndexCacheHits(UInt64) — 인덱스 granule이 벡터 인덱스 캐시에서 발견된 횟수입니다.ProfileEvent_VectorSimilarityIndexCacheMisses(UInt64) — 인덱스 granule이 벡터 인덱스 캐시에서 발견되지 않아 디스크에서 읽어야 했던 횟수입니다.ProfileEvent_VectorSimilarityIndexCacheWeightLost(UInt64) — 벡터 인덱스 캐시에서 축출된 대략적인 바이트 수입니다.ProfileEvent_TextIndexReadDictionaryBlocks(UInt64) — 텍스트 인덱스 딕셔너리 block을 디스크에서 읽은 횟수입니다.ProfileEvent_TextIndexTokensCacheHits(UInt64) — 텍스트 인덱스 token info가 캐시에서 발견된 횟수입니다.ProfileEvent_TextIndexTokensCacheMisses(UInt64) — 텍스트 인덱스 token info가 캐시에서 발견되지 않은 횟수입니다.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가 적용된 read buffer를 생성하려고 시도한 횟수입니다(다른 읽기 메서드 중에서 선택하는 과정에서). 하지만 OS가 이를 허용하지 않아(파일 시스템 지원 부족 또는 기타 이유로) 일반 읽기 메서드로 대체된 경우의 횟수입니다.ProfileEvent_CreatedReadBufferMMap(UInt64) — 데이터 읽기용으로 ‘mmap’을 사용하는 read buffer가 생성된 횟수입니다(다른 읽기 메서드 중에서 선택하는 과정에서).ProfileEvent_CreatedReadBufferMMapFailed(UInt64) — 데이터 읽기용으로 ‘mmap’이 적용된 read buffer를 생성하려고 시도한 횟수입니다(다른 읽기 메서드 중에서 선택하는 과정에서). 하지만 OS가 이를 허용하지 않아(파일 시스템 지원 부족 또는 기타 이유로) 일반 읽기 메서드로 대체된 경우의 횟수입니다.ProfileEvent_DiskReadElapsedMicroseconds(UInt64) — read syscall을 기다리는 데 소요된 총 시간입니다. 여기에는 페이지 캐시에서의 읽기도 포함됩니다.ProfileEvent_DiskWriteElapsedMicroseconds(UInt64) — write syscall을 기다리는 데 소요된 총 시간입니다. 여기에는 페이지 캐시에 대한 쓰기도 포함됩니다.ProfileEvent_NetworkReceiveElapsedMicroseconds(UInt64) — 네트워크에서 데이터를 수신하기 위해 대기하거나 실제로 수신하는 데 소요된 총 시간입니다. ClickHouse 관련 네트워크 상호작용만 포함되며, 타사 라이브러리에 의한 것은 포함되지 않습니다.ProfileEvent_NetworkSendElapsedMicroseconds(UInt64) — 네트워크로 데이터를 전송하기 위해 대기하거나 실제로 전송하는 데 소요된 총 시간입니다. ClickHouse 관련 네트워크 상호작용만 포함되며, 타사 라이브러리에 의한 것은 포함되지 않습니다.ProfileEvent_NetworkReceiveBytes(UInt64) — 네트워크에서 수신한 총 바이트 수입니다. ClickHouse 관련 네트워크 상호작용만 포함되며, 타사 라이브러리에 의한 것은 포함되지 않습니다.ProfileEvent_NetworkSendBytes(UInt64) — 네트워크로 전송한 총 바이트 수입니다. ClickHouse 관련 네트워크 상호작용만 포함되며, 타사 라이브러리에 의한 것은 포함되지 않습니다.ProfileEvent_FilterPartsByVirtualColumnsMicroseconds(UInt64) — filterPartsByVirtualColumns 함수에서 소요된 총 시간입니다.ProfileEvent_GlobalThreadPoolExpansions(UInt64) — Global Thread 풀에 새 스레드가 추가된 총 횟수를 집계합니다. 이 메트릭은 처리 수요 증가에 대응하기 위해 Global Thread 풀이 확장된 빈도를 나타냅니다.ProfileEvent_GlobalThreadPoolShrinks(UInt64) — Global Thread 풀에서 스레드를 제거해 축소된 총 횟수를 집계합니다. 이는 idle 상태의 스레드 수가 max_thread_pool_free_size를 초과할 때 발생하며, 스레드 사용량 감소에 따라 Global Thread 풀 크기가 조정되었음을 나타냅니다.ProfileEvent_GlobalThreadPoolThreadCreationMicroseconds(UInt64) — 새 스레드가 시작될 때까지 기다리는 데 소요된 총 시간입니다.ProfileEvent_GlobalThreadPoolLockWaitMicroseconds(UInt64) — 스레드가 Global Thread 풀에서 lock을 기다리는 데 소요한 총 시간입니다.ProfileEvent_GlobalThreadPoolJobs(UInt64) — Global Thread 풀에 추가된 작업 수를 집계합니다.ProfileEvent_GlobalThreadPoolJobWaitTimeMicroseconds(UInt64) — 작업이 스레드 풀에 예약된 시점부터 worker thread가 실행을 위해 가져가는 시점까지의 경과 시간을 측정합니다. 이 메트릭은 작업 처리 지연을 식별하는 데 도움이 되며, 새 작업에 대한 스레드 풀의 응답성을 나타냅니다.ProfileEvent_LocalThreadPoolExpansions(UInt64) — 로컬 스레드 풀을 확장하기 위해 Global Thread 풀에서 스레드를 빌려온 총 횟수를 집계합니다.ProfileEvent_LocalThreadPoolShrinks(UInt64) — 로컬 스레드 풀에서 Global Thread 풀로 스레드를 반환한 총 횟수를 집계합니다.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 request 스로틀링 제한에 맞추기 위해 쿼리가 대기한 총 시간입니다.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) — on-the-fly 뮤테이션이 하나라도 적용된 읽기 작업의 총 개수입니다.ProfileEvent_MutationsAppliedOnFlyInAllReadTasks(UInt64) — 모든 읽기 작업에서 on-the-fly로 적용된 뮤테이션의 총 개수입니다.ProfileEvent_PatchesAcquireLockTries(UInt64) — 경량 업데이트를 실행하기 위해 잠금을 획득하려고 시도한 총 횟수입니다.ProfileEvent_PatchesAcquireLockMicroseconds(UInt64) — 경량 업데이트를 실행하기 위해 잠금을 획득하는 데 소요된 총 마이크로초입니다.ProfileEvent_DiskObjectStorageWaitBlobRemovalMicroseconds(UInt64) — 메타데이터 트랜잭션을 commit한 후 대기 중인 blob 제거를 기다리는 데 소요된 시간입니다.ProfileEvent_SchedulerIOReadRequests(UInt64) — IO 읽기를 위해 scheduler를 통과한 리소스 요청의 총 개수입니다.ProfileEvent_SchedulerIOReadBytes(UInt64) — IO 읽기를 위해 scheduler를 통과한 총 바이트 수입니다.ProfileEvent_SchedulerIOReadWaitMicroseconds(UInt64) — IO 읽기용 리소스 요청을 기다리며 쿼리가 대기한 총 시간입니다.ProfileEvent_SchedulerIOWriteRequests(UInt64) — IO 쓰기를 위해 scheduler를 통과한 리소스 요청의 총 개수입니다.ProfileEvent_SchedulerIOWriteBytes(UInt64) — IO 쓰기를 위해 scheduler를 통과한 총 바이트 수입니다。ProfileEvent_SchedulerIOWriteWaitMicroseconds(UInt64) — 쿼리가 IO 쓰기에 대한 리소스 요청을 기다린 총 시간입니다.ProfileEvent_QueryMaskingRulesMatch(UInt64) — Query masking rules가 성공적으로 일치한 횟수입니다.ProfileEvent_ReplicatedPartFetches(UInt64) — ReplicatedMergeTree 테이블의 레플리카에서 데이터 파트를 다운로드한 횟수입니다.ProfileEvent_ReplicatedPartFailedFetches(UInt64) — ReplicatedMergeTree 테이블의 레플리카에서 데이터 파트 다운로드에 실패한 횟수입니다.ProfileEvent_ObsoleteReplicatedParts(UInt64) — 데이터 파트가 레플리카에서 가져온 다른 데이터 파트에 포함되어 더 이상 필요 없어져 obsolete로 표시된 횟수입니다.ProfileEvent_ReplicatedPartMerges(UInt64) — ReplicatedMergeTree 테이블의 데이터 파트가 성공적으로 머지된 횟수입니다.ProfileEvent_ReplicatedPartFetchesOfMerged(UInt64) — 직접 머지를 수행하는 대신 ReplicatedMergeTree 테이블의 레플리카에서 이미 병합된 파트를 다운로드하도록 선택한 횟수입니다(일반적으로는 네트워크 트래픽을 절약하기 위해 직접 머지하는 편을 선호합니다). 이는 머지에 필요한 모든 소스 파트가 없거나 데이터 파트가 충분히 오래된 경우에 발생합니다.ProfileEvent_ReplicatedPartMutations(UInt64) — ReplicatedMergeTree 테이블의 데이터 파트에 뮤테이션이 성공적으로 적용된 횟수입니다.ProfileEvent_ReplicatedPartChecks(UInt64) — 레플리카에서 데이터 파트에 대한 고급 검색을 수행하거나 기존 데이터 파트가 필요한지 확인해야 했던 횟수입니다.ProfileEvent_ReplicatedPartChecksFailed(UInt64) — 레플리카에서 데이터 파트에 대한 고급 검색에서 결과를 얻지 못했거나, 예상치 못한 파트가 발견되어 다른 곳으로 이동된 횟수입니다.ProfileEvent_ReplicatedDataLoss(UInt64) — 필요한 데이터 파트가 어떤 레플리카에도 존재하지 않은 횟수입니다(현재 오프라인인 레플리카 포함). 이러한 데이터 파트는 확실히 유실된 것입니다. 이는 비동기 복제에서 정상적으로 발생할 수 있습니다(quorum inserts가 활성화되지 않은 경우). 즉, 데이터 파트가 기록된 레플리카에 장애가 발생했고, 장애 복구 후 다시 온라인 상태가 되었을 때 해당 데이터 파트가 없는 경우입니다.ProfileEvent_ReplicatedCoveredPartsInZooKeeperOnStart(UInt64) — 디버깅용입니다. ZooKeeper에 포함 관계의 상위 파트가 있지만 디스크에는 존재하지 않는 파트의 개수입니다. 서버 시작 시 확인합니다.ProfileEvent_QuorumParts(UInt64) — quorum으로 기록된 데이터 파트의 개수입니다. 동기 삽입은 1개 파트로 계산되며, async inserts를 플러시하는 삽입은 async inserts 개수만큼 계산될 수 있습니다.ProfileEvent_QuorumWaitMicroseconds(UInt64) — 삽입 중 quorum을 기다리는 데 소요된 총 시간입니다.ProfileEvent_QuorumFailedInserts(UInt64) — quorum에 도달하지 못해 실패한 삽입 횟수입니다.ProfileEvent_InsertedRows(UInt64) — 모든 테이블에 INSERT된 행 수입니다.ProfileEvent_InsertedBytes(UInt64) — 모든 테이블에 INSERT된 바이트 수입니다(비압축 기준이며, 컬럼이 메모리에 저장된 형태 기준).ProfileEvent_DelayedInserts(UInt64) — 파티션의 활성 데이터 파트 수가 많아 MergeTree 테이블에 대한 블록 INSERT가 제한된 횟수입니다.ProfileEvent_RejectedInserts(UInt64) — 파티션의 활성 데이터 파트 수가 많아 MergeTree 테이블에 대한 블록 INSERT가 ‘Too many parts’ Exception과 함께 거부된 횟수입니다.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) — 대기 중인 바이트 수가 너무 많아 분산 테이블에 블록을 INSERT하는 작업이 스로틀링된 횟수입니다.ProfileEvent_DistributedRejectedInserts(UInt64) — 대기 중인 바이트 수가 너무 많아 분산 테이블에 블록을 INSERT하는 작업이 ‘Too many bytes’ 예외와 함께 거부된 횟수입니다.ProfileEvent_DistributedDelayedInsertsMilliseconds(UInt64) — 대기 중인 바이트 수가 너무 많아 분산 테이블에 블록을 INSERT하는 작업이 스로틀링되는 동안 소요된 총 밀리초 수입니다.ProfileEvent_DuplicatedInsertedBlocks(UInt64) — *MergeTree 테이블에 대한 동기 삽입 중 중복 제거된 횟수입니다.ProfileEvent_SelfDuplicatedAsyncInserts(UInt64) — ReplicatedMergeTree 테이블에 INSERT된 블록에서 async 삽입이 자체적으로 중복 제거된 횟수입니다.ProfileEvent_DuplicatedAsyncInserts(UInt64) — ReplicatedMergeTree 테이블에 INSERT된 블록에서 async 삽입이 중복 제거된 횟수입니다.ProfileEvent_DuplicationElapsedMicroseconds(UInt64) — *MergeTree 테이블에 INSERT된 블록의 중복 여부를 확인하는 데 소요된 총 시간(마이크로초)입니다.ProfileEvent_ZooKeeperInit(UInt64) — ZooKeeper와의 연결이 설정된 횟수입니다.ProfileEvent_ZooKeeperTransactions(UInt64) — 읽기 및 쓰기 작업과 multi 트랜잭션을 모두 포함한 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) — 분산 테이블에 INSERT하는 동안 레플리카가 읽기 전용 상태여서 건너뛴 레플리카 수입니다ProfileEvent_DistributedConnectionFailAtAll(UInt64) — 모든 재시도가 끝난 후에도 분산 연결이 실패한 총횟수입니다.ProfileEvent_Shards(UInt64) — 쿼리에 포함된 세그먼트 수이며, 모든 분산 테이블과 테이블 함수에 걸쳐 합산한 값입니다. 하나의 host가 여러 테이블에 나타나면 여러 번 집계됩니다. 이 수치는skip_unavailable_shards설정으로 건너뛴 세그먼트를 포함한 예상 총 세그먼트 수를 나타냅니다.ProfileEvent_HedgedRequestsChangeReplica(UInt64) — hedged request에서 레플리카 변경을 위한 timeout이 만료된 총횟수입니다.ProfileEvent_SuspendSendingQueryToShard(UInt64) — async_query_sending_for_remote가 활성화되었을 때 세그먼트로의 쿼리 전송이 일시 중단된 총횟수입니다.ProfileEvent_CompileFunction(UInt64) — 생성된 LLVM 코드의 컴파일(복잡한 표현식을 위한 fused function 생성을 목적)을 시작한 횟수입니다.ProfileEvent_CompiledFunctionExecute(UInt64) — 컴파일된 function이 실행된 횟수입니다.ProfileEvent_CompileExpressionsMicroseconds(UInt64) — 표현식을 LLVM 코드로 컴파일하는 데 소요된 총시간입니다.ProfileEvent_CompileExpressionsBytes(UInt64) — 표현식 컴파일에 사용된 바이트 수입니다.ProfileEvent_ExecuteShellCommand(UInt64) — 셸 명령 실행 횟수입니다.ProfileEvent_ExternalProcessingCompressedBytesTotal(UInt64) — 외부 처리(정렬/집계/JOIN)에서 기록한 압축 바이트 수입니다.ProfileEvent_ExternalProcessingUncompressedBytesTotal(UInt64) — 외부 처리(정렬/집계/JOIN)에서 기록한 데이터 양(비압축, 압축 전)입니다.ProfileEvent_ExternalProcessingFilesTotal(UInt64) — 외부 처리(정렬/집계/JOIN)에 사용된 파일 수입니다.ProfileEvent_ExternalSortWritePart(UInt64) — 외부 메모리에서 정렬하기 위해 임시 파일을 디스크에 기록한 횟수입니다.ProfileEvent_ExternalSortMerge(UInt64) — 외부 메모리에서 정렬하기 위해 임시 파일을 머지한 횟수입니다.ProfileEvent_ExternalSortCompressedBytes(UInt64) — 외부 메모리에서 정렬하기 위해 기록한 압축 바이트 수입니다.ProfileEvent_ExternalSortUncompressedBytes(UInt64) — 외부 메모리에서 정렬하기 위해 기록한 데이터 양(비압축, 압축 전)입니다.ProfileEvent_ExternalAggregationWritePart(UInt64) — 외부 메모리에서 집계하기 위해 임시 파일을 디스크에 기록한 횟수입니다.ProfileEvent_ExternalAggregationMerge(UInt64) — 외부 메모리에서 집계하기 위해 임시 파일을 머지한 횟수입니다.ProfileEvent_ExternalAggregationCompressedBytes(UInt64) — 외부 메모리에서 집계하기 위해 디스크에 기록한 바이트 수입니다.ProfileEvent_ExternalAggregationUncompressedBytes(UInt64) — 외부 메모리에서 집계하기 위해 디스크에 기록한 데이터 양(비압축, 압축 전)입니다.ProfileEvent_ExternalJoinWritePart(UInt64) — 외부 메모리에서 JOIN을 위해 임시 파일을 디스크에 기록한 횟수입니다.ProfileEvent_ExternalJoinMerge(UInt64) — 외부 메모리에서 JOIN을 위해 임시 파일을 머지한 횟수입니다.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 인덱스를 사용해 건너뛴 파일 수입니다.ProfileEvent_JoinBuildTableRowCount(UInt64) — JOIN 연산의 빌드 테이블에 있는 전체 행 수입니다.ProfileEvent_JoinProbeTableRowCount(UInt64) — JOIN 연산의 프로브 테이블에 있는 전체 행 수입니다.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 table)이 상태를 해제해야 했던 횟수입니다. 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) — PK 분석 중 처리된 전체 마크 수입니다.ProfileEvent_FilteringMarksWithPrimaryKeyMicroseconds(UInt64) — PK로 파트를 필터링하는 데 소요된 시간.ProfileEvent_FilteringMarksWithSecondaryKeysMicroseconds(UInt64) — 스킵 인덱스로 파트를 필터링하는 데 소요된 시간.ProfileEvent_DistributedIndexAnalysisMicroseconds(UInt64) — 분산 인덱스 분석에 소요된 총 시간ProfileEvent_DistributedIndexAnalysisScheduledReplicas(UInt64) — 분산 인덱스 분석이 할당된 레플리카 수(로컬 레플리카는 1회만 집계됨)ProfileEvent_DistributedIndexAnalysisReplicaUnavailable(UInt64) — 폴백 없이 레플리카 중 하나에서 분산 인덱스 분석이 실패한 횟수(연결 중 실패)ProfileEvent_DistributedIndexAnalysisReplicaFallback(UInt64) — 레플리카 중 하나에서 분산 인덱스 분석이 실패해 로컬 레플리카로 폴백한 횟수ProfileEvent_DistributedIndexAnalysisParts(UInt64) — 분산 인덱스 분석을 위해 전송된 파트 수ProfileEvent_DistributedIndexAnalysisMissingParts(UInt64) — 분산 인덱스 분석 중 누락되어 로컬에서 처리될 파트 수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) — 머지 대상으로 예약된 소스 파트 수.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) — 뮤테이션 적용이 시도된 전체 파트 수ProfileEvent_MutationUntouchedParts(UInt64) — 뮤테이션 적용이 시도되었지만 프레디케이트에 따라 완전히 건너뛴 전체 파트 수ProfileEvent_MutationCreatedEmptyParts(UInt64) — 뮤테이션을 실행하는 대신 빈 파트로 대체된 전체 파트 수ProfileEvent_MutatedRows(UInt64) — 뮤테이션을 위해 읽은 행 수입니다. 뮤테이션 전 기준의 행 수입니다ProfileEvent_MutatedUncompressedBytes(UInt64) — 뮤테이션을 위해 읽은 비압축 바이트 수(컬럼이 메모리에 저장된 형태 기준)입니다. 뮤테이션 전 기준의 수치입니다.ProfileEvent_MutationAffectedRowsUpperBound(UInt64) — 뮤테이션의 영향을 받은 행 수 상한입니다(예: UPDATE 또는 DELETE 뮤테이션의 프레디케이트를 만족하는 행 수). 실제 수는 이보다 약간 적을 수 있습니다ProfileEvent_MutationTotalMilliseconds(UInt64) — 뮤테이션에 소요된 총 시간입니다.ProfileEvent_MutationExecuteMilliseconds(UInt64) — 뮤테이션 실행에 소요된 총 실제 작업 시간입니다.ProfileEvent_MutationCommitMilliseconds(UInt64) — 뮤테이션 결과를 커밋하는 데 소요된 총 시간입니다(파트 이름 변경, checksum 검증, ZooKeeper 업데이트)ProfileEvent_MutationAllPartColumns(UInt64) — 파트의 모든 컬럼에 뮤테이션을 수행하는 작업이 생성된 횟수ProfileEvent_MutationSomePartColumns(UInt64) — 파트의 일부 컬럼에 뮤테이션을 수행하는 작업이 생성된 횟수ProfileEvent_MutateTaskProjectionsCalculationMicroseconds(UInt64) — 뮤테이션에서 프로젝션 계산에 소요된 시간ProfileEvent_MergeTreeDataWriterRows(UInt64) — MergeTree 테이블에 INSERT된 행 수입니다.ProfileEvent_MergeTreeDataWriterUncompressedBytes(UInt64) — MergeTree 테이블에 INSERT된 비압축 바이트 수입니다(컬럼이 메모리에 저장된 형태 기준).ProfileEvent_MergeTreeDataWriterCompressedBytes(UInt64) — MergeTree 테이블에 INSERT된 데이터에 대해 파일 시스템에 기록된 바이트 수입니다.ProfileEvent_MergeTreeDataWriterBlocks(UInt64) — MergeTree 테이블에 INSERT된 블록 수입니다. 각 블록은 레벨 0 데이터 파트를 형성합니다.ProfileEvent_MergeTreeDataWriterBlocksAlreadySorted(UInt64) — 이미 정렬된 상태였던 것으로 확인된 MergeTree 테이블의 INSERT 블록 수입니다.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 executor에서 작업을 재설정하는 데 소요된 시간입니다.ProfileEvent_MoveBackgroundExecutorWaitMicroseconds(UInt64) — Move executor에서 완료를 기다리는 데 소요된 시간입니다.ProfileEvent_FetchBackgroundExecutorTaskExecuteStepMicroseconds(UInt64) — Fetch executor 작업의 executeStep()에 소요된 시간입니다.ProfileEvent_FetchBackgroundExecutorTaskCancelMicroseconds(UInt64) — Fetch executor 작업의 cancel()에 소요된 시간입니다.ProfileEvent_FetchBackgroundExecutorTaskResetMicroseconds(UInt64) — Fetch executor에서 작업을 재설정하는 데 소요된 시간입니다.ProfileEvent_FetchBackgroundExecutorWaitMicroseconds(UInt64) — Fetch executor에서 완료를 기다리는 데 소요된 시간입니다.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) — skip 인덱스를 계산하는 데 소요된 시간ProfileEvent_MergeTreeDataWriterStatisticsCalculationMicroseconds(UInt64) — 통계를 계산하는 데 소요된 시간ProfileEvent_MergeTreeDataWriterSortingBlocksMicroseconds(UInt64) — 블록을 정렬하는 데 소요된 시간ProfileEvent_MergeTreeDataWriterMergingBlocksMicroseconds(UInt64) — 입력 블록을 머지하는 데 소요된 시간(특수 MergeTree 엔진의 경우)ProfileEvent_MergeTreeDataWriterProjectionsCalculationMicroseconds(UInt64) — 프로젝션을 계산하는 데 소요된 시간ProfileEvent_MergeTreeDataProjectionWriterSortingBlocksMicroseconds(UInt64) — 블록을 정렬하는 데 소요된 시간(프로젝션에서는 테이블의 정렬 키와 다른 키를 사용할 수 있음)ProfileEvent_MergeTreeDataProjectionWriterMergingBlocksMicroseconds(UInt64) — 블록을 머지하는 데 소요된 시간ProfileEvent_InsertedWideParts(UInt64) — Wide format으로 삽입된 파트 수입니다.ProfileEvent_InsertedCompactParts(UInt64) — Compact format으로 삽입된 파트 수입니다.ProfileEvent_MergedIntoWideParts(UInt64) — Wide format으로 머지된 파트 수입니다.ProfileEvent_MergedIntoCompactParts(UInt64) — Compact format으로 머지된 파트 수입니다.ProfileEvent_MergeTreeDataProjectionWriterRows(UInt64) — MergeTree 테이블 프로젝션에 INSERT된 행 수입니다.ProfileEvent_MergeTreeDataProjectionWriterUncompressedBytes(UInt64) — MergeTree 테이블 프로젝션에 INSERT된 비압축 바이트 수입니다(메모리에 저장된 컬럼 기준).ProfileEvent_MergeTreeDataProjectionWriterCompressedBytes(UInt64) — MergeTree 테이블 프로젝션에 INSERT된 데이터에 대해 파일 시스템에 기록된 바이트 수입니다.ProfileEvent_MergeTreeDataProjectionWriterBlocks(UInt64) — MergeTree 테이블 프로젝션에 INSERT된 블록 수입니다. 각 블록은 level zero data part를 형성합니다.ProfileEvent_MergeTreeDataProjectionWriterBlocksAlreadySorted(UInt64) — 이미 정렬된 것으로 보이는 MergeTree 테이블 프로젝션에 INSERT된 블록 수입니다.ProfileEvent_CannotRemoveEphemeralNode(UInt64) — ephemeral 노드를 제거하려는 중 오류가 발생한 횟수입니다. ZooKeeper 라이브러리 구현에서 세션이 만료되면 노드가 제거되도록 보장하므로, 이는 문제가 아닙니다.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) — 시간 기준의 백그라운드 전용 flush threshold가 충족되어 ‘Buffer’ 테이블의 버퍼를 플러시한 횟수입니다. 이는 전문가 전용 메트릭입니다. 전문가가 아니라면 더 이상 읽지 마십시오.ProfileEvent_StorageBufferPassedRowsFlushThreshold(UInt64) — 행 수 기준의 백그라운드 전용 flush threshold가 충족되어 ‘Buffer’ 테이블의 버퍼를 플러시한 횟수입니다. 이는 전문가 전용 메트릭입니다. 전문가가 아니라면 더 이상 읽지 마십시오.ProfileEvent_StorageBufferPassedBytesFlushThreshold(UInt64) — 바이트 기준의 백그라운드 전용 flush threshold가 충족되어 ‘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_foreground_insert’ = 1인 경우)ProfileEvent_DistributedAsyncInsertionFailures(UInt64) — 분산 테이블에 비동기 삽입하는 동안 발생한 실패 횟수입니다 (‘distributed_foreground_insert’ = 0인 경우)ProfileEvent_DataAfterMergeDiffersFromReplica(UInt64) — 머지 후 데이터가 다른 레플리카의 데이터와 바이트 수준에서 동일하지 않은 횟수입니다. 그 원인으로는 여러 가지가 있을 수 있습니다:- 서버 업데이트 후 더 최신 버전의 압축 라이브러리를 사용하는 경우.
- 다른 압축 방식을 사용하는 경우.
- 비결정적 압축 알고리즘(가능성은 매우 낮음).
- 코드의 논리 오류로 인해 비결정적 머지 알고리즘이 사용되는 경우.
- 코드 버그로 인한 메모리 내 데이터 손상.
- 하드웨어 문제로 인한 메모리 내 데이터 손상.
- 서버 시작 후 원본 데이터를 수동으로 수정한 경우.
- ZooKeeper에 저장된 체크섬을 수동으로 수정한 경우.
- ‘enable_mixed_granularity_parts’와 같은 파트 포맷 관련 설정이 레플리카마다 다릅니다. 서버가 이 상황을 정상적으로 감지했으며, 바이트 수준까지 동일한 결과를 보장하기 위해 레플리카에서 병합된 파트를 다운로드합니다.
ProfileEvent_DataAfterMutationDiffersFromReplica(UInt64) — mutation 이후 데이터가 다른 레플리카의 데이터와 바이트 단위까지 동일하지 않았던 횟수입니다. ‘DataAfterMergeDiffersFromReplica’에 설명된 이유 외에도, 비결정적 mutation으로 인해 발생할 수 있습니다.ProfileEvent_PolygonsAddedToPool(UInt64) — ‘pointInPolygon’ 함수의 캐시(풀)에 다각형이 추가된 횟수입니다.ProfileEvent_PolygonsInPoolAllocatedBytes(UInt64) — ‘pointInPolygon’ 함수의 캐시(풀)에 추가된 다각형에 할당된 바이트 수입니다.ProfileEvent_NaiveBayesClassifierModelsLoaded(UInt64) — 로드된 Naive Bayes Classifier 모델 수입니다.ProfileEvent_NaiveBayesClassifierModelsAllocatedBytes(UInt64) — Naive Bayes Classifier 모델에 할당된 바이트 수입니다.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) — 처리 스레드(쿼리 및 기타 작업)에서 소요된 총(벽시계) 시간입니다(이 값은 합계임에 유의하십시오).ProfileEvent_UserTimeMicroseconds(UInt64) — 처리 스레드(쿼리 및 기타 작업)가 사용자 모드에서 CPU 명령어를 실행하는 데 소요한 총 시간입니다. 여기에는 주 메모리 접근, cache 미스, 분기 예측 실패, 하이퍼스레딩 등으로 인해 CPU 파이프라인이 멈춘 시간도 포함됩니다.ProfileEvent_SystemTimeMicroseconds(UInt64) — 처리 스레드(쿼리 및 기타 작업)가 OS 커널 모드에서 CPU 명령어를 실행하는 데 소비한 총 시간입니다. 시스템 호출에 소비한 시간이며, 블로킹 시스템 호출 동안의 대기 시간은 제외됩니다.ProfileEvent_MemoryOvercommitWaitTimeMicroseconds(UInt64) — OvercommitTracker에서 메모리가 해제되기를 기다리는 데 소비한 총 시간입니다.ProfileEvent_MemoryAllocatorPurge(UInt64) — 메모리 할당자 purge가 요청된 총 횟수입니다.ProfileEvent_MemoryAllocatorPurgeTimeMicroseconds(UInt64) — 메모리 할당자 purge에 소비한 총 시간입니다.ProfileEvent_SoftPageFaults(UInt64) — 쿼리 실행 스레드에서 발생한 소프트 페이지 폴트 수입니다. 소프트 페이지 폴트는 일반적으로 메모리 할당자 캐시 미스를 의미하며, 이 경우 OS에서 새 메모리 매핑을 수행한 뒤 물리 메모리 페이지를 할당해야 합니다.ProfileEvent_HardPageFaults(UInt64) — 쿼리 실행 스레드에서 발생한 하드 페이지 폴트 수입니다. 값이 높으면 서버에서 swap을 비활성화하지 않았거나, 메모리 압박이 매우 높은 상황에서 ClickHouse 바이너리의 메모리 페이지가 축출(eviction)되었거나, 테이블 데이터에 대해 ‘mmap’ 읽기 메서드가 성공적으로 사용되고 있음을 나타낼 수 있습니다.ProfileEvent_OSIOWaitMicroseconds(UInt64) — OS 관점에서 스레드가 IO 작업 결과를 기다리는 데 소비한 총 시간입니다. 페이지 캐시를 포함하지 않는 실제 IO만 집계합니다.ProfileEvent_OSCPUWaitMicroseconds(UInt64) — OS 관점에서 스레드가 실행 준비 상태였지만 OS가 스케줄링할 때까지 기다린 총 시간입니다.ProfileEvent_OSCPUVirtualTimeMicroseconds(UInt64) — OS가 관측한 CPU 사용 시간입니다. 가상화로 인한 비자발적 대기는 포함되지 않습니다.ProfileEvent_OSReadBytes(UInt64) — 디스크 또는 블록 디바이스에서 읽은 바이트 수입니다. 페이지 캐시에서 읽은 바이트는 포함되지 않습니다. 블록 크기, readahead 등으로 인해 실제보다 많은 데이터가 포함될 수 있습니다.ProfileEvent_OSWriteBytes(UInt64) — 디스크 또는 블록 디바이스에 쓴 바이트 수입니다. 페이지 캐시의 더티 페이지에 있는 바이트는 포함되지 않습니다. OS가 비동기적으로 기록한 데이터는 포함되지 않을 수 있습니다.ProfileEvent_OSReadChars(UInt64) — 페이지 캐시를 포함해 파일 시스템, 네트워크 및 기타 파일에서 읽은 바이트 수입니다.ProfileEvent_OSWriteChars(UInt64) — 페이지 캐시를 포함해 파일 시스템, 네트워크 및 기타 파일에 쓴 바이트 수입니다.ProfileEvent_ParallelReplicasHandleRequestMicroseconds(UInt64) — 레플리카의 마크 요청을 처리하는 데 소비한 시간입니다.ProfileEvent_ParallelReplicasHandleAnnouncementMicroseconds(UInt64) — 레플리카 announcement를 처리하는 데 소비한 시간입니다.ProfileEvent_ParallelReplicasAnnouncementMicroseconds(UInt64) — announcement를 전송하는 데 소비한 시간입니다.ProfileEvent_ParallelReplicasReadRequestMicroseconds(UInt64) — 읽기 요청에 소비한 시간입니다.ProfileEvent_ParallelReplicasReadAssignedMarks(UInt64) — 모든 레플리카에서 consistent hash로 할당된 예정된 마크 수의 합계입니다.ProfileEvent_ParallelReplicasReadUnassignedMarks(UInt64) — 모든 레플리카에서 할당되지 않은 상태로 예약된 마크 수의 합계입니다.ProfileEvent_ParallelReplicasReadAssignedForStealingMarks(UInt64) — 모든 레플리카에서 consistent hash로 스틸링용으로 할당된 예정된 마크 수의 합계입니다.ProfileEvent_ParallelReplicasReadMarks(UInt64) — 해당 레플리카가 읽은 마크 수입니다.ProfileEvent_ParallelReplicasStealingByHashMicroseconds(UInt64) — 해시 기반 스틸링 대상 세그먼트를 수집하는 데 소비한 시간입니다.ProfileEvent_ParallelReplicasProcessingPartsMicroseconds(UInt64) — 데이터 파트를 처리하는 데 소비한 시간입니다.ProfileEvent_ParallelReplicasStealingLeftoversMicroseconds(UInt64) — 고아 세그먼트를 수집하는 데 소요된 시간ProfileEvent_ParallelReplicasCollectingOwnedSegmentsMicroseconds(UInt64) — 해시에 따라 할당된 세그먼트를 수집하는 데 소요된 시간ProfileEvent_ParallelReplicasNumRequests(UInt64) — initiator에 대한 요청 수ProfileEvent_ParallelReplicasDeniedRequests(UInt64) — initiator에 대한 요청이 완전히 거부된 횟수ProfileEvent_CacheWarmerBytesDownloaded(UInt64) — 전용 백그라운드 스레드가 파일 시스템 캐시로 가져온 데이터 양ProfileEvent_CacheWarmerDataPartsDownloaded(UInt64) — CacheWarmer가 데이터 파트를 완전히 fetch한 횟수ProfileEvent_IgnoredColdParts(UInt64) — 설정 ignore_cold_parts_seconds를 참조하십시오. 읽기 쿼리가 CacheWarmer에 의해 아직 캐시로 가져와지지 않은 아주 새로운 파트를 무시한 횟수입니다.ProfileEvent_PreferredWarmedUnmergedParts(UInt64) — 설정 prefer_warmed_unmerged_parts_seconds를 참조하십시오. 읽기 쿼리가 CacheWarmer에 의해 아직 캐시로 가져와지지 않은 병합된 파트 대신, 캐시에 있는 머지 전의 오래된 파트를 사용한 횟수입니다.ProfileEvent_PerfCPUCycles(UInt64) — 총 사이클 수입니다. CPU 주파수 스케일링 중 어떤 일이 발생하는지에 유의하십시오.ProfileEvent_PerfInstructions(UInt64) — Retired 명령어 수입니다. 다양한 문제, 특히 하드웨어 인터럽트 횟수의 영향을 받을 수 있으므로 주의하십시오.ProfileEvent_PerfCacheReferences(UInt64) — 캐시 접근 횟수입니다. 일반적으로는 마지막 수준 캐시(Last Level Cache) 접근을 의미하지만, CPU에 따라 달라질 수 있습니다. 프리페치와 일관성 메시지가 포함될 수도 있으며, 이 역시 CPU 설계에 따라 달라집니다.ProfileEvent_PerfCacheMisses(UInt64) — 캐시 미스 횟수입니다. 일반적으로는 마지막 수준 캐시(Last Level Cache) 미스를 의미합니다. 캐시 미스율을 계산할 때 PERFCOUNTHWCACHEREFERENCES 이벤트와 함께 사용하도록 설계되었습니다.ProfileEvent_PerfBranchInstructions(UInt64) — Retired 분기 명령어 수입니다. Linux 2.6.35 이전에는 AMD 프로세서에서 잘못된 이벤트를 사용했습니다.ProfileEvent_PerfBranchMisses(UInt64) — 분기 예측 실패 횟수입니다.ProfileEvent_PerfBusCycles(UInt64) — 버스 사이클 수이며, 총 사이클 수와 다를 수 있습니다.ProfileEvent_PerfStalledCyclesFrontend(UInt64) — issue 중 정체된 사이클 수ProfileEvent_PerfStalledCyclesBackend(UInt64) — retirement 중 정체된 사이클 수ProfileEvent_PerfRefCPUCycles(UInt64) — 총 사이클 수이며 CPU 주파수 스케일링의 영향을 받지 않습니다.ProfileEvent_PerfCPUClock(UInt64) — CPU 클록으로, CPU별 고해상도 타이머입니다.ProfileEvent_PerfTaskClock(UInt64) — 실행 중인 작업에 특화된 클록 카운트ProfileEvent_PerfContextSwitches(UInt64) — 컨텍스트 스위치 수ProfileEvent_PerfCPUMigrations(UInt64) — 프로세스가 새 CPU로 이동한 횟수ProfileEvent_PerfAlignmentFaults(UInt64) — 정렬 오류 수입니다. 이는 정렬되지 않은 메모리 접근이 발생할 때 일어납니다. 커널이 이를 처리할 수는 있지만 성능이 저하됩니다. 일부 아키텍처에서만 발생하며(x86에서는 발생하지 않음), 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) — 오버런으로 인해 쿼리 프로파일러 시그널 처리를 건너뛴 횟수와, 오버런으로 인해 OS가 전달하지 않은 시그널 수의 합계입니다.ProfileEvent_QueryProfilerConcurrencyOverruns(UInt64) — 다른 스레드에서 동시에 실행 중인 쿼리 프로파일러가 너무 많아 쿼리 프로파일러 시그널 처리를 건너뛴 횟수입니다. 이는 과부하를 나타낼 수 있습니다.ProfileEvent_QueryProfilerRuns(UInt64) — QueryProfiler가 실행된 횟수입니다.ProfileEvent_QueryProfilerErrors(UInt64) — 비동기 스택 언와인딩 중 발생한 잘못된 메모리 접근 횟수입니다.ProfileEvent_CreatedLogEntryForMerge(UInt64) — ReplicatedMergeTree에서 파트를 머지하기 위한 로그 엔트리를 성공적으로 생성한 횟수입니다.ProfileEvent_NotCreatedLogEntryForMerge(UInt64) — 다른 레플리카의 동시 로그 업데이트로 인해 ReplicatedMergeTree에서 파트를 머지하기 위한 로그 엔트리가 생성되지 않은 횟수입니다.ProfileEvent_CreatedLogEntryForMutation(UInt64) — ReplicatedMergeTree에서 파트에 mutation을 적용하기 위한 로그 엔트리를 성공적으로 생성한 횟수입니다.ProfileEvent_NotCreatedLogEntryForMutation(UInt64) — 다른 레플리카의 동시 로그 업데이트로 인해 ReplicatedMergeTree에서 파트에 mutation을 적용하기 위한 로그 엔트리가 생성되지 않은 횟수입니다.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) — 최초 시도와 모든 재시도를 포함하되, S3 재시도 전략 내부에서 수행된 재시도는 제외한 GET 및 HEAD 요청 시도 수입니다.ProfileEvent_S3ReadRequestRetryableErrors(UInt64) — S3 재시도 전략 내부에서 수행된 재시도는 제외한 GET 및 HEAD 요청의 재시도 가능한 오류 수입니다.ProfileEvent_S3WriteMicroseconds(UInt64) — S3 스토리지에 대한 POST, DELETE, PUT 및 PATCH 요청 시간입니다.ProfileEvent_S3WriteRequestsCount(UInt64) — S3 storage에 대한 POST, DELETE, PUT 및 PATCH 요청 수.ProfileEvent_S3WriteRequestsErrors(UInt64) — S3 storage에 대한 POST, DELETE, PUT 및 PATCH 요청에서 발생한 비스로틀링 오류 수.ProfileEvent_S3WriteRequestsThrottling(UInt64) — S3 storage에 대한 POST, DELETE, PUT 및 PATCH 요청에서 발생한 429 및 503 오류 수.ProfileEvent_S3WriteRequestsRedirects(UInt64) — S3 storage에 대한 POST, DELETE, PUT 및 PATCH 요청의 리디렉션 수.ProfileEvent_S3WriteRequestAttempts(UInt64) — S3 storage에 대한 POST, DELETE, PUT 및 PATCH 요청의 시도 횟수로, 최초 시도와 모든 재시도를 포함하지만 재시도 전략 내부에서 수행된 재시도는 제외합니다ProfileEvent_S3WriteRequestRetryableErrors(UInt64) — S3 storage에 대한 POST, DELETE, PUT 및 PATCH 요청의 재시도 가능한 오류 수로, 재시도 전략 내부에서 수행된 재시도는 제외합니다ProfileEvent_DiskS3ReadMicroseconds(UInt64) — DiskS3 storage에 대한 GET 및 HEAD 요청에 걸린 시간.ProfileEvent_DiskS3ReadRequestsCount(UInt64) — DiskS3 storage에 대한 GET 및 HEAD 요청 수.ProfileEvent_DiskS3ReadRequestsErrors(UInt64) — DiskS3 storage에 대한 GET 및 HEAD 요청에서 발생한 비스로틀링 오류 수.ProfileEvent_DiskS3ReadRequestsThrottling(UInt64) — DiskS3 storage에 대한 GET 및 HEAD 요청에서 발생한 429 및 503 오류 수.ProfileEvent_DiskS3ReadRequestsRedirects(UInt64) — DiskS3 storage에 대한 GET 및 HEAD 요청의 리디렉션 수.ProfileEvent_DiskS3ReadRequestAttempts(UInt64) — DiskS3 storage에 대한 GET 및 HEAD 요청의 시도 횟수로, 최초 시도와 모든 재시도를 포함하지만 S3 재시도 전략 내부에서 수행된 재시도는 제외합니다ProfileEvent_DiskS3ReadRequestRetryableErrors(UInt64) — DiskS3 storage에 대한 GET 및 HEAD 요청의 재시도 가능한 오류 수로, S3 재시도 전략 내부에서 수행된 재시도는 제외합니다ProfileEvent_DiskS3WriteMicroseconds(UInt64) — DiskS3 storage에 대한 POST, DELETE, PUT 및 PATCH 요청에 걸린 시간.ProfileEvent_DiskS3WriteRequestsCount(UInt64) — DiskS3 storage에 대한 POST, DELETE, PUT 및 PATCH 요청 수.ProfileEvent_DiskS3WriteRequestsErrors(UInt64) — DiskS3 storage에 대한 POST, DELETE, PUT 및 PATCH 요청에서 발생한 비스로틀링 오류 수.ProfileEvent_DiskS3WriteRequestsThrottling(UInt64) — DiskS3 storage에 대한 POST, DELETE, PUT 및 PATCH 요청에서 발생한 429 및 503 오류 수.ProfileEvent_DiskS3WriteRequestsRedirects(UInt64) — DiskS3 storage에 대한 POST, DELETE, PUT 및 PATCH 요청의 리디렉션 수.ProfileEvent_DiskS3WriteRequestAttempts(UInt64) — DiskS3 storage에 대한 POST, DELETE, PUT 및 PATCH 요청의 시도 횟수로, 최초 시도와 모든 재시도를 포함하지만 재시도 전략 내부에서 수행된 재시도는 제외합니다ProfileEvent_DiskS3WriteRequestRetryableErrors(UInt64) — DiskS3 storage에 대한 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) — S3ObjectStorage용 ‘plain_rewritable’ 메타데이터 저장소에서 생성한 디렉터리 수입니다.ProfileEvent_DiskPlainRewritableS3DirectoryRemoved(UInt64) — S3ObjectStorage용 ‘plain_rewritable’ 메타데이터 저장소에서 제거한 디렉터리 수입니다.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 storage API Upload 호출 수입니다ProfileEvent_AzureStageBlock(UInt64) — Azure blob storage API StageBlock 호출 수입니다ProfileEvent_AzureCommitBlockList(UInt64) — Azure blob storage API CommitBlockList 호출 수입니다ProfileEvent_AzureCopyObject(UInt64) — Azure blob storage API CopyObject 호출 수입니다ProfileEvent_AzureDeleteObjects(UInt64) — Azure blob storage API DeleteObject(s) 호출 수입니다.ProfileEvent_AzureListObjects(UInt64) — Azure blob storage API ListObjects 호출 수입니다.ProfileEvent_AzureGetProperties(UInt64) — Azure blob storage API GetProperties 호출 수입니다.ProfileEvent_AzureCreateContainer(UInt64) — Azure blob storage API CreateContainer 호출 횟수입니다.ProfileEvent_DiskAzureGetObject(UInt64) — Disk Azure API GetObject 호출 횟수입니다.ProfileEvent_DiskAzureUpload(UInt64) — Disk Azure blob storage API Upload 호출 횟수입니다ProfileEvent_DiskAzureStageBlock(UInt64) — Disk Azure blob storage API StageBlock 호출 횟수입니다ProfileEvent_DiskAzureCommitBlockList(UInt64) — Disk Azure blob storage API CommitBlockList 호출 횟수입니다ProfileEvent_DiskAzureCopyObject(UInt64) — Disk Azure blob storage API CopyObject 호출 횟수입니다ProfileEvent_DiskAzureListObjects(UInt64) — Disk Azure blob storage API ListObjects 호출 횟수입니다.ProfileEvent_DiskAzureDeleteObjects(UInt64) — Azure blob storage API DeleteObject(s) 호출 횟수입니다.ProfileEvent_DiskAzureGetProperties(UInt64) — Disk Azure blob storage API GetProperties 호출 횟수입니다.ProfileEvent_DiskAzureCreateContainer(UInt64) — Disk Azure blob storage 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) — 내부 read buffer를 기다리는 데 소요된 시간입니다(캐시 대기 포함)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) — 소스(remote fs 등)에서 파일 시스템 캐시로 기록된 바이트 수ProfileEvent_CachedWriteBufferCacheWriteMicroseconds(UInt64) — 파일 시스템 캐시에 데이터를 쓰는 데 소요된 시간ProfileEvent_FilesystemCacheLoadMetadataMicroseconds(UInt64) — 파일 시스템 캐시 메타데이터를 로드하는 데 소요된 시간ProfileEvent_FilesystemCacheEvictedBytes(UInt64) — 파일 시스템 캐시에서 제거된 바이트 수ProfileEvent_FilesystemCacheCreatedKeyDirectories(UInt64) — 생성된 key 디렉터리 수ProfileEvent_FilesystemCacheEvictedFileSegments(UInt64) — 파일 시스템 캐시에서 제거된 파일 세그먼트 수ProfileEvent_FilesystemCacheEvictedFileSegmentsDuringPriorityIncrease(UInt64) — 파일 세그먼트의 우선순위를 높일 때 파일 시스템 캐시에서 제거된 파일 세그먼트 수(SLRU 캐시 정책에 적용됨)ProfileEvent_FilesystemCacheBackgroundDownloadQueuePush(UInt64) — 파일 시스템 캐시에서 백그라운드 다운로드 대상으로 전송된 파일 세그먼트 수ProfileEvent_FilesystemCacheEvictionSkippedFileSegments(UInt64) — 해제할 수 없는 상태여서 제거를 건너뛴 파일 세그먼트 수ProfileEvent_FilesystemCacheEvictionSkippedEvictingFileSegments(UInt64) — 제거 중 상태여서 제거를 건너뛴 파일 세그먼트 수ProfileEvent_FilesystemCacheEvictionSkippedMovingFileSegments(UInt64) — 이동 중 상태여서 제거를 건너뛴 파일 세그먼트 수ProfileEvent_FilesystemCacheEvictionTries(UInt64) — 파일 시스템 캐시 제거 시도 횟수ProfileEvent_FilesystemCacheEvictionReusedIterator(UInt64) — 파일 시스템 캐시 반복자 재사용 횟수ProfileEvent_FilesystemCacheLockKeyMicroseconds(UInt64) — 캐시 key 잠금 시간ProfileEvent_FilesystemCacheLockMetadataMicroseconds(UInt64) — 파일 시스템 캐시 메타데이터 잠금 시간ProfileEvent_FilesystemCachePriorityWriteLockMicroseconds(UInt64) — priority queue에 쓰기 위한 파일 시스템 캐시 잠금 시간ProfileEvent_FilesystemCachePriorityReadLockMicroseconds(UInt64) — priority queue에서 읽기 위한 파일 시스템 캐시 잠금 시간ProfileEvent_FilesystemCacheStateLockMicroseconds(UInt64) — state 잠금을 위한 파일 시스템 캐시 잠금 시간ProfileEvent_FilesystemCacheReserveMicroseconds(UInt64) — 파일 시스템 캐시 공간 예약 시간ProfileEvent_FilesystemCacheReserveAttempts(UInt64) — 파일 시스템 캐시 공간 예약 시도 횟수ProfileEvent_FilesystemCacheEvictMicroseconds(UInt64) — 파일 시스템 캐시 제거 시간ProfileEvent_FilesystemCacheGetOrSetMicroseconds(UInt64) — 파일 시스템 캐시 getOrSet() 시간ProfileEvent_FilesystemCacheGetMicroseconds(UInt64) — 파일 시스템 캐시 get() 시간ProfileEvent_FilesystemCacheBackgroundEvictedFileSegments(UInt64) — 백그라운드 스레드에 의해 축출된 파일 세그먼트 수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) — 파일 세그먼트 잠금에 소요된 시간ProfileEvent_FileSegmentWriteMicroseconds(UInt64) — 파일 세그먼트 write()에 소요된 시간ProfileEvent_FileSegmentIncreasePriorityMicroseconds(UInt64) — 파일 세그먼트 우선순위 증가에 소요된 시간ProfileEvent_FileSegmentRemoveMicroseconds(UInt64) — 파일 세그먼트 remove()에 소요된 시간ProfileEvent_FileSegmentHolderCompleteMicroseconds(UInt64) — 파일 세그먼트 holder complete()에 소요된 시간ProfileEvent_FileSegmentFailToIncreasePriority(UInt64) — 캐시 잠금 경합이 심해 우선순위를 높이지 못한 횟수ProfileEvent_FilesystemCacheFailToReserveSpaceBecauseOfLockContention(UInt64) — 캐시 잠금 경합이 심해 공간 예약을 건너뛴 횟수ProfileEvent_FilesystemCacheFailToReserveSpaceBecauseOfCacheResize(UInt64) — 캐시 크기 조정 중이어서 공간 예약을 건너뛴 횟수ProfileEvent_FilesystemCacheHoldFileSegments(UInt64) — 유지 중인 파일 시스템 캐시 파일 세그먼트 수ProfileEvent_FilesystemCacheUnusedHoldFileSegments(UInt64) — 유지 중이지만 사용되지 않은 파일 시스템 캐시 파일 세그먼트 수(seek 또는 LIMIT n 등으로 인해)ProfileEvent_FilesystemCacheFreeSpaceKeepingThreadRun(UInt64) — 백그라운드 스레드가 여유 공간 유지 작업을 실행한 횟수ProfileEvent_FilesystemCacheFreeSpaceKeepingThreadWorkMilliseconds(UInt64) — 백그라운드 스레드가 여유 공간 유지 작업을 수행한 시간ProfileEvent_FilesystemCacheFailedEvictionCandidates(UInt64) — 동적 파일 시스템 캐시 축출 중 예기치 않게 축출에 실패한 파일 세그먼트 수ProfileEvent_RemoteFSSeeks(UInt64) — 비동기 버퍼의 총 seek 횟수ProfileEvent_RemoteFSPrefetches(UInt64) — remote filesystem에서 비동기 읽기 중 수행된 프리페치 횟수ProfileEvent_RemoteFSCancelledPrefetches(UInt64) — 취소된 프리페치 횟수(seek으로 인해)ProfileEvent_RemoteFSUnusedPrefetches(UInt64) — 버퍼가 파기될 때 대기 중이던 프리페치 횟수ProfileEvent_RemoteFSPrefetchedReads(UInt64) — 프리페치된 버퍼에서 수행된 읽기 횟수ProfileEvent_RemoteFSPrefetchedBytes(UInt64) — 프리페치된 버퍼에서 읽은 바이트 수ProfileEvent_RemoteFSUnprefetchedReads(UInt64) — 프리페치되지 않은 버퍼에서 읽은 횟수ProfileEvent_RemoteFSUnprefetchedBytes(UInt64) — 프리페치되지 않은 버퍼에서 읽은 바이트 수ProfileEvent_RemoteFSLazySeeks(UInt64) — 지연 seek 횟수ProfileEvent_RemoteFSSeeksWithReset(UInt64) — 새 연결로 이어지는 seek 횟수ProfileEvent_RemoteFSBuffers(UInt64) — 원격 파일 시스템에서 비동기 읽기를 위해 생성된 버퍼 수ProfileEvent_MergeTreePrefetchedReadPoolInit(UInt64) — MergeTreePrefetchedReadPool에서 작업을 준비하는 데 소요된 시간ProfileEvent_WaitPrefetchTaskMicroseconds(UInt64) — 프리페치된 리더를 기다리는 데 소요된 시간ProfileEvent_ThreadpoolReaderTaskMicroseconds(UInt64) — 비동기 읽기에서 데이터를 가져오는 데 소요된 시간ProfileEvent_ThreadpoolReaderPrepareMicroseconds(UInt64) — 준비에 소요된 시간(예: 리더seek()메서드 호출)ProfileEvent_ThreadpoolReaderReadBytes(UInt64) — 비동기 읽기에서 스레드 풀 작업으로 읽은 바이트 수ProfileEvent_ThreadpoolReaderSubmit(UInt64) — 비동기 읽기에서 스레드 풀 작업으로 읽은 바이트 수ProfileEvent_ThreadpoolReaderSubmitReadSynchronously(UInt64) — 스레드 풀에 작업을 예약하지 않고 대신 동기적으로 읽은 횟수ProfileEvent_ThreadpoolReaderSubmitReadSynchronouslyBytes(UInt64) — 동기적으로 읽은 바이트 수ProfileEvent_ThreadpoolReaderSubmitReadSynchronouslyMicroseconds(UInt64) — 동기적으로 읽는 데 소요된 시간ProfileEvent_ThreadpoolReaderSubmitLookupInCacheMicroseconds(UInt64) — 내용이 캐시되었는지 확인하는 데 소요된 시간ProfileEvent_AsynchronousReaderIgnoredBytes(UInt64) — 비동기 읽기 중 무시된 바이트 수ProfileEvent_ReadBufferSeekCancelConnection(UInt64) — 새 연결로 이어지는 seek 횟수(s3, http)ProfileEvent_SleepFunctionCalls(UInt64) — sleep 함수(sleep,sleepEachRow)가 호출된 횟수ProfileEvent_SleepFunctionMicroseconds(UInt64) — sleep 함수(sleep,sleepEachRow)에서 sleep으로 설정된 시간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의 비동기 작업 내부에서 데이터를 읽는 데 소요된 시간입니다. 페이지 캐시에서 읽지 않은 경우를 의미합니다.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) — 집계를 위해 2단계로 초기화된 해시 테이블 수입니다.ProfileEvent_AggregationOptimizedEqualRangesOfKeys(UInt64) — 동일한 키 범위 최적화가 적용된 블록 수입니다.ProfileEvent_HashJoinPreallocatedElementsInHashTables(UInt64) — 해시 조인을 위해 해시 테이블에 미리 할당된 요소 수입니다.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 레이아웃 part를 정리한 횟수ProfileEvent_MetadataFromKeeperBackgroundCleanupErrors(UInt64) — 백그라운드 정리 작업 중 오류가 발생한 횟수ProfileEvent_BlobKillerThreadRuns(UInt64) — BlobKiller thread 실행 횟수ProfileEvent_BlobKillerThreadLockedBlobs(UInt64) — 메타데이터 저장소에서 반환된 blobs 수ProfileEvent_BlobKillerThreadRemoveTasks(UInt64) — BlobKiller가 생성한 제거 작업 수ProfileEvent_BlobKillerThreadRemovedBlobs(UInt64) — BlobKiller가 제거한 blobs 수ProfileEvent_BlobKillerThreadRecordedBlobs(UInt64) — BlobKiller에 의한 제거가 메타데이터 저장소에 기록된 blobs 수ProfileEvent_BlobKillerThreadLockBlobsErrors(UInt64) — BlobKiller 실행 중 blobs 잠금 오류가 발생한 횟수ProfileEvent_BlobKillerThreadRemoveBlobsErrors(UInt64) — BlobKiller 실행 중 blobs 제거 오류가 발생한 횟수ProfileEvent_BlobKillerThreadRecordBlobsErrors(UInt64) — BlobKiller 실행 중 blobs 기록 오류가 발생한 횟수ProfileEvent_BlobCopierThreadRuns(UInt64) — BlobCopier thread 실행 횟수ProfileEvent_BlobCopierThreadLockedBlobs(UInt64) — 메타데이터 저장소에서 반환된 blobs 수ProfileEvent_BlobCopierThreadReplicatedBlobs(UInt64) — BlobCopier가 복제한 blobs 수ProfileEvent_BlobCopierThreadRecordedBlobs(UInt64) — BlobCopier에 의한 복제가 메타데이터 저장소에 기록된 blobs 수ProfileEvent_BlobCopierThreadLockBlobsErrors(UInt64) — BlobCopier 실행 중 blobs 잠금 오류가 발생한 횟수ProfileEvent_BlobCopierThreadReplicateBlobsErrors(UInt64) — BlobCopier 실행 중 blobs 복제 오류가 발생한 횟수ProfileEvent_BlobCopierThreadRecordBlobsErrors(UInt64) — BlobCopier 실행 중 blobs 기록 오류가 발생한 횟수ProfileEvent_SharedMergeTreeMetadataCacheHintLoadedFromCache(UInt64) — Keeper에 접근하지 않고 메타데이터 cache hint를 찾은 횟수ProfileEvent_KafkaRebalanceRevocations(UInt64) — 파티션 회수 횟수 (consumer group 리밸런싱의 첫 번째 단계)ProfileEvent_KafkaRebalanceAssignments(UInt64) — 파티션 할당 횟수 (consumer group 리밸런싱의 마지막 단계)ProfileEvent_KafkaRebalanceErrors(UInt64) — 실패한 consumer group 리밸런싱 횟수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) — 서버 시작 이후 Kafka 테이블에서 직접SELECT한 횟수ProfileEvent_KafkaBackgroundReads(UInt64) — 서버 시작 이후 Kafka에서 구체화된 뷰(Materialized View)를 채우기 위해 수행된 백그라운드 읽기 횟수ProfileEvent_KafkaCommits(UInt64) — 소비한 오프셋을 Kafka에 성공적으로 커밋한 횟수(일반적으로 KafkaBackgroundReads와 같아야 합니다)ProfileEvent_KafkaCommitFailures(UInt64) — 소비한 오프셋을 Kafka에 커밋하지 못한 횟수(보통 일부 데이터 중복의 징후입니다)ProfileEvent_KafkaConsumerErrors(UInt64) — 폴링 중 librdkafka가 보고한 오류 수ProfileEvent_KafkaMVNotReady(UInt64) — 준비되지 않은 구체화된 뷰로 데이터를 스트리밍하려다 실패한 시도 횟수ProfileEvent_KafkaWrites(UInt64) — Kafka 테이블에 대한 쓰기(삽입) 횟수ProfileEvent_KafkaRowsWritten(UInt64) — Kafka 테이블에 삽입된 행 수ProfileEvent_KafkaProducerFlushes(UInt64) — Kafka 프로듀서에 대해 명시적으로 플러시한 횟수ProfileEvent_KafkaMessagesProduced(UInt64) — Kafka로 생성된 메시지 수ProfileEvent_KafkaProducerErrors(UInt64) — Kafka로 메시지를 생성하는 중 발생한 오류 수ProfileEvent_ScalarSubqueriesGlobalCacheHit(UInt64) — 스칼라 서브쿼리 읽기가 전역 캐시를 사용해 수행된 횟수ProfileEvent_ScalarSubqueriesLocalCacheHit(UInt64) — 스칼라 서브쿼리 읽기가 로컬 캐시를 사용해 수행된 횟수ProfileEvent_ScalarSubqueriesCacheMiss(UInt64) — 스칼라 서브쿼리 읽기가 캐시되지 않아 전체를 다시 계산해야 했던 횟수ProfileEvent_SchemaInferenceCacheHits(UInt64) — 요청된 소스를 스키마 캐시에서 찾은 횟수ProfileEvent_SchemaInferenceCacheSchemaHits(UInt64) — 스키마 추론 중 스키마를 스키마 캐시에서 찾은 횟수ProfileEvent_SchemaInferenceCacheNumRowsHits(UInt64) — 파일에서 count를 수행하는 동안 행 수를 스키마 캐시에서 찾은 횟수ProfileEvent_SchemaInferenceCacheMisses(UInt64) — 요청된 소스가 스키마 캐시에 없었던 횟수ProfileEvent_SchemaInferenceCacheSchemaMisses(UInt64) — 스키마 추론 중 요청된 소스는 캐시에 있지만 스키마는 캐시에 없었던 횟수ProfileEvent_SchemaInferenceCacheNumRowsMisses(UInt64) — 파일에서 count를 수행하는 동안 요청된 소스는 캐시에 있지만 행 수는 캐시에 없었던 횟수ProfileEvent_SchemaInferenceCacheEvictions(UInt64) — 오버플로우로 인해 캐시에서 스키마가 제거된 횟수ProfileEvent_SchemaInferenceCacheInvalidations(UInt64) — 데이터 변경으로 인해 캐시의 스키마가 무효화된 횟수ProfileEvent_KeeperPacketsSent(UInt64) — Keeper server가 전송한 패킷 수ProfileEvent_KeeperPacketsReceived(UInt64) — Keeper server가 수신한 패킷 수ProfileEvent_KeeperRequestTotal(UInt64) — Keeper server의 총 요청 수ProfileEvent_KeeperRequestTotalWithSubrequests(UInt64) — 다중 요청 내 각 하위 요청(subrequest)을 포함해 계산한 Keeper server의 총 요청 수ProfileEvent_KeeperLatency(UInt64) — Keeper 지연 시간ProfileEvent_KeeperTotalElapsedMicroseconds(UInt64) — 단일 요청의 Keeper 총 지연 시간ProfileEvent_KeeperProcessElapsedMicroseconds(UInt64) — 단일 요청의 Keeper commit 지연 시간ProfileEvent_KeeperPreprocessElapsedMicroseconds(UInt64) — 단일 요청의 Keeper 전처리 지연 시간ProfileEvent_KeeperStorageLockWaitMicroseconds(UInt64) — Keeper storage lock을 획득할 때까지 대기한 시간ProfileEvent_KeeperStorageSharedLockWaitMicroseconds(UInt64) — Keeper storage shared lock을 획득할 때까지 대기한 시간ProfileEvent_KeeperChangelogLockWaitMicroseconds(UInt64) — Keeper changelog lock을 획득할 때까지 대기한 시간ProfileEvent_KeeperServerWriteLockWaitMicroseconds(UInt64) — Keeper server write lock을 획득할 때까지 대기한 시간ProfileEvent_KeeperSessionCallbackLockWaitMicroseconds(UInt64) — Keeper session callback lock을 획득할 때까지 대기한 시간ProfileEvent_KeeperReadRequestQueueLockWaitMicroseconds(UInt64) — Keeper read request 큐 lock을 획득할 때까지 대기한 시간ProfileEvent_KeeperProcessAndResponsesLockWaitMicroseconds(UInt64) — Keeper process and responses lock을 획득할 때까지 대기한 시간ProfileEvent_KeeperCommitWaitElapsedMicroseconds(UInt64) — 특정 로그가 commit될 때까지 대기한 시간ProfileEvent_KeeperBatchMaxCount(UInt64) — Batch 크기가 항목 수에 의해 제한된 횟수ProfileEvent_KeeperBatchMaxTotalSize(UInt64) — Batch 크기가 총 바이트 수에 의해 제한된 횟수ProfileEvent_KeeperReadBatchCount(UInt64) — Keeper가 처리한 read request batch 수ProfileEvent_KeeperReadBatchTotalRequests(UInt64) — Keeper가 batch로 처리한 read request의 총 수ProfileEvent_KeeperCommits(UInt64) — 성공한 commit 수ProfileEvent_KeeperCommitsFailed(UInt64) — 실패한 commit 수ProfileEvent_KeeperSnapshotCreations(UInt64) — snapshot 생성 수ProfileEvent_KeeperSnapshotCreationsFailed(UInt64) — 실패한 snapshot 생성 수ProfileEvent_KeeperSnapshotApplys(UInt64) — snapshot 적용 수ProfileEvent_KeeperSnapshotApplysFailed(UInt64) — 실패한 snapshot 적용 수ProfileEvent_KeeperReadSnapshot(UInt64) — 완료된 스냅샷 읽기 횟수ProfileEvent_KeeperReadSnapshotObject(UInt64) — 팔로워에게 전송된 스냅샷 객체 수ProfileEvent_KeeperReadSnapshotFailed(UInt64) — 실패한 스냅샷 읽기 횟수ProfileEvent_KeeperSnapshotRemoteLoaderErrors(UInt64) — 팔로워에게 스냅샷을 제공하는 동안 RemoteSnapshotLoader에서 발생한 원격 읽기 오류 수ProfileEvent_KeeperSaveSnapshotObject(UInt64) — 리더로부터 수신한 스냅샷 객체 수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) — 하위 항목 재귀 get 요청 수ProfileEvent_KeeperExistsRequest(UInt64) — exists 요청 수ProfileEvent_KeeperSetWatchesRequest(UInt64) — set watch 요청 수ProfileEvent_KeeperAddWatchRequest(UInt64) — add watch 요청 수ProfileEvent_KeeperRemoveWatchRequest(UInt64) — watch 제거 요청 수ProfileEvent_KeeperCheckWatchRequest(UInt64) — watch 제거 요청 수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) — 파일을 processing 상태로 설정하는 데 소요된 시간ProfileEvent_S3QueueSetFileProcessedMicroseconds(UInt64) — 파일을 processed 상태로 설정하는 데 소요된 시간ProfileEvent_S3QueueSetFileFailedMicroseconds(UInt64) — 파일을 failed 상태로 설정하는 데 소요된 시간ProfileEvent_ObjectStorageQueueFailedFiles(UInt64) — 처리에 실패한 파일 수ProfileEvent_ObjectStorageQueueProcessedFiles(UInt64) — 처리된 파일 수ProfileEvent_ObjectStorageQueueCleanupMaxSetSizeOrTTLMicroseconds(UInt64) — 파일을 failed 상태로 설정하는 데 소요된 시간ProfileEvent_ObjectStorageQueuePullMicroseconds(UInt64) — 파일 데이터를 읽는 데 소요된 시간ProfileEvent_ObjectStorageQueueFailedToBatchSetProcessing(UInt64) — 일괄 Set 처리 요청이 실패한 횟수ProfileEvent_ObjectStorageQueueTrySetProcessingRequests(UInt64) — Set 처리 요청을 시도한 횟수ProfileEvent_ObjectStorageQueueTrySetProcessingSucceeded(UInt64) — 파일을 processing 상태로 성공적으로 설정한 횟수ProfileEvent_ObjectStorageQueueTrySetProcessingFailed(UInt64) — 파일을 processing 상태로 설정하지 못한 횟수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) — 파일을 실패 또는 처리됨 상태로 commit하기 위한 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) — 필터링 전 객체 스토리지 listing API가 반환한 전체 객체 수ProfileEvent_ObjectStorageGlobFilteredObjects(UInt64) — glob 또는 regex pattern과 일치하지 않아 listing 중 건너뛴 객체 수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) — 읽기용으로 연 backups 수ProfileEvent_BackupsOpenedForWrite(UInt64) — 쓰기용으로 연 backups 수ProfileEvent_BackupsOpenedForUnlock(UInt64) — 잠금 해제용으로 연 backups 수ProfileEvent_BackupReadMetadataMicroseconds(UInt64) — .backup 파일에서 backup metadata를 읽는 데 소요된 시간ProfileEvent_BackupWriteMetadataMicroseconds(UInt64) — .backup 파일에 backup metadata를 쓰는 데 소요된 시간ProfileEvent_BackupEntriesCollectorMicroseconds(UInt64) — backup entries를 생성하는 데 소요된 시간ProfileEvent_BackupEntriesCollectorForTablesDataMicroseconds(UInt64) — 테이블 데이터에 대한 backup entries를 생성하는 데 소요된 시간ProfileEvent_BackupEntriesCollectorRunPostTasksMicroseconds(UInt64) — backup entries를 생성한 후 후속 작업을 실행하는 데 소요된 시간ProfileEvent_BackupPreparingFileInfosMicroseconds(UInt64) — backup entries용 파일 정보를 준비하는 데 소요된 시간ProfileEvent_BackupReadLocalFilesToCalculateChecksums(UInt64) — backup entries의 checksums를 계산하기 위해 로컬에서 읽은 파일 수ProfileEvent_BackupReadLocalBytesToCalculateChecksums(UInt64) — 백업 엔트리의 체크섬을 계산하기 위해 로컬에서 읽은 파일의 총 크기ProfileEvent_BackupReadRemoteFilesToCalculateChecksums(UInt64) — 백업 엔트리의 체크섬을 계산하기 위해 원격 디스크에서 읽은 파일 수ProfileEvent_BackupReadRemoteBytesToCalculateChecksums(UInt64) — 백업 엔트리의 체크섬을 계산하기 위해 원격 디스크에서 읽은 파일의 총 크기ProfileEvent_BackupLockFileReads(UInt64) — 백업 생성 중 ‘.lock’ 파일을 읽은 횟수ProfileEvent_RestorePartsSkippedFiles(UInt64) — 파트 복원 중 건너뛴 파일 수ProfileEvent_RestorePartsSkippedBytes(UInt64) — 파트 복원 중 건너뛴 파일의 총 크기ProfileEvent_ReadTaskRequestsReceived(UInt64) — 읽기 작업을 선택하기 위해 원격 서버에서 initiator 서버로 다시 요청한 콜백 수(s3Cluster 테이블 함수 및 유사한 경우). initiator 서버 측에서 측정됩니다.ProfileEvent_MergeTreeReadTaskRequestsReceived(UInt64) — 읽기 작업을 선택하기 위해 원격 서버에서 initiator 서버로 다시 요청한 콜백 수(MergeTree 테이블용). initiator 서버 측에서 측정됩니다.ProfileEvent_ReadTaskRequestsSent(UInt64) — 읽기 작업을 선택하기 위해 원격 서버에서 initiator 서버로 다시 요청한 콜백 수(s3Cluster 테이블 함수 및 유사한 경우). 원격 서버 측에서 측정됩니다.ProfileEvent_MergeTreeReadTaskRequestsSent(UInt64) — 읽기 작업을 선택하기 위해 원격 서버에서 initiator 서버로 다시 요청한 콜백 수(MergeTree 테이블용). 원격 서버 측에서 측정됩니다.ProfileEvent_MergeTreeAllRangesAnnouncementsSent(UInt64) — 데이터 파트 집합에 관해 원격 서버에서 initiator 서버로 전송한 announcement 수(MergeTree 테이블용). 원격 서버 측에서 측정됩니다.ProfileEvent_ReadTaskRequestsSentElapsedMicroseconds(UInt64) — 읽기 작업을 선택하기 위해 원격 서버에서 initiator 서버로 다시 요청한 콜백에 소요된 시간(s3Cluster 테이블 함수 및 유사한 경우). 원격 서버 측에서 측정됩니다.ProfileEvent_MergeTreeReadTaskRequestsSentElapsedMicroseconds(UInt64) — 읽기 작업을 선택하기 위해 원격 서버에서 initiator 서버로 다시 요청한 콜백에 소요된 시간(MergeTree 테이블용). 원격 서버 측에서 측정됩니다.ProfileEvent_MergeTreeAllRangesAnnouncementsSentElapsedMicroseconds(UInt64) — 데이터 파트 집합에 관한 announcement를 원격 서버에서 initiator 서버로 전송하는 데 소요된 시간(MergeTree 테이블용). 원격 서버 측에서 측정됩니다.ProfileEvent_MergerMutatorsGetPartsForMergeElapsedMicroseconds(UInt64) — 데이터 파트 스냅샷을 가져와 그로부터 범위를 구성하는 데 소요된 시간ProfileEvent_MergerMutatorPrepareRangesForMergeElapsedMicroseconds(UInt64) — 머지 프레디케이트에 따라 머지할 수 있는 파트 범위를 준비하는 데 소요된 시간ProfileEvent_MergerMutatorSelectPartsForMergeElapsedMicroseconds(UInt64) — 머지할 수 있는 범위에서 파트를 선택하는 데 소요된 시간ProfileEvent_MergerMutatorRangesForMergeCount(UInt64) — 머지 후보 범위 수ProfileEvent_MergerMutatorPartsInRangesForMergeCount(UInt64) — 머지 후보 파트 수ProfileEvent_MergerMutatorSelectRangePartsCount(UInt64) — 머지를 위해 선택한 범위에 포함된 파트 수ProfileEvent_ConnectionPoolIsFullMicroseconds(UInt64) — 연결 풀에서 슬롯을 기다리는 데 소요된 총 시간ProfileEvent_AsyncLoaderWaitMicroseconds(UInt64) — 쿼리가 비동기 로더 작업을 기다린 총 시간ProfileEvent_DistrCacheServerSwitches(UInt64) — 분산 캐시 읽기 버퍼 이벤트. 읽기/쓰기 스루 캐시에서 Distributed Cache 서버 간 전환이 발생한 횟수ProfileEvent_DistrCacheReadMicroseconds(UInt64) — 분산 캐시 읽기 버퍼 이벤트. Distributed Cache에서 읽는 데 소요된 시간ProfileEvent_DistrCacheFallbackReadMicroseconds(UInt64) — 분산 캐시 읽기 버퍼 이벤트. Distributed Cache 대신 폴백 버퍼에서 읽는 데 소요된 시간ProfileEvent_DistrCachePrecomputeRangesMicroseconds(UInt64) — 분산 캐시 읽기 버퍼 이벤트. 읽기 범위를 미리 계산하는 데 소요된 시간ProfileEvent_DistrCacheNextImplMicroseconds(UInt64) — 분산 캐시 읽기 버퍼 이벤트.ReadBufferFromDistributedCache::nextImpl에서 소요된 시간ProfileEvent_DistrCacheStartRangeMicroseconds(UInt64) — 분산 캐시 읽기 버퍼 이벤트. Distributed Cache로 새 읽기 범위를 시작하는 데 소요된 시간ProfileEvent_DistrCacheRangeChange(UInt64) — 분산 캐시 읽기 버퍼 이벤트.seek/last_position변경으로 인해 읽기 범위를 변경한 횟수ProfileEvent_DistrCacheRangeResetBackward(UInt64) — 분산 캐시 읽기 버퍼 이벤트.seek/last_position변경으로 인해 읽기 범위를 재설정한 횟수ProfileEvent_DistrCacheRangeResetForward(UInt64) — 분산 캐시 읽기 버퍼 이벤트.seek/last_position변경으로 인해 읽기 범위를 재설정한 횟수ProfileEvent_DistrCacheReconnectsAfterTimeout(UInt64) — 분산 캐시 읽기 버퍼 이벤트. timeout 이후 재연결한 횟수ProfileEvent_DistrCacheServerUpdates(UInt64) — Distributed Cache 이벤트. hash로 선택된 서버가 변경되어(예: 서버 등록 해제) 읽기 또는 쓰기 중 서버 전환이 발생한 횟수ProfileEvent_DistrCacheReadErrors(UInt64) — 분산 캐시 읽기 버퍼 이벤트. 읽기 중 발생한 Distributed Cache 오류 수ProfileEvent_DistrCacheWriteErrors(UInt64) — Distributed Cache 쓰기 버퍼 이벤트. 쓰기 중 발생한 Distributed Cache 오류 수ProfileEvent_DistrCacheWriteReconnectsAfterTimeout(UInt64) — Distributed Cache 쓰기 버퍼 이벤트. timeout 이후 재연결한 횟수ProfileEvent_DistrCacheWriteMicroseconds(UInt64) — Distributed Cache 쓰기 버퍼 이벤트.WriteBufferFromDistributedCache::writeToFileSegment에서 소요된 시간ProfileEvent_DistrCacheWriteBytes(UInt64) — Distributed Cache 쓰기 버퍼 이벤트. Distributed Cache에 기록된 바이트 수ProfileEvent_DistrCacheObjectStorageWriteMicroseconds(UInt64) — Distributed Cache 쓰기 버퍼 이벤트. 객체 스토리지에 쓰는 데 소요된 시간ProfileEvent_DistrCacheObjectStorageWriteBytes(UInt64) — Distributed Cache 쓰기 버퍼 이벤트. 객체 스토리지에 기록된 바이트 수ProfileEvent_DistrCacheGetResponseMicroseconds(UInt64) — Distributed Cache 클라이언트 이벤트. Distributed Cache의 응답을 기다리는 데 소요된 시간ProfileEvent_DistrCacheMakeRequestErrors(UInt64) — Distributed Cache 클라이언트 이벤트. 요청 생성 중 발생한 Distributed Cache 오류 수ProfileEvent_DistrCacheReceiveResponseErrors(UInt64) — Distributed Cache 클라이언트 이벤트. 요청에 대한 응답을 수신하는 중 발생한 Distributed Cache 오류 수ProfileEvent_DistrCacheReceivedDataPackets(UInt64) — Distributed Cache 클라이언트 이벤트. Distributed Cache에서 수신한 데이터 패킷의 총개수ProfileEvent_DistrCacheReceivedDataPacketsBytes(UInt64) — Distributed Cache 클라이언트 이벤트. Distributed Cache에서 수신한 데이터 패킷의 바이트 수ProfileEvent_DistrCacheReceivedOkPackets(UInt64) — Distributed Cache 클라이언트 이벤트. Distributed Cache에서 수신한 Ok 패킷의 총개수ProfileEvent_DistrCacheReceivedErrorPackets(UInt64) — Distributed Cache 클라이언트 이벤트. Distributed Cache에서 수신한 Error 패킷의 총개수ProfileEvent_DistrCacheReceivedCredentialsRefreshPackets(UInt64) — Distributed Cache 클라이언트 이벤트. Distributed Cache에서 수신한 RefreshCredentials 패킷의 총개수ProfileEvent_DistrCacheReceivedStopPackets(UInt64) — Distributed Cache 클라이언트 이벤트. Distributed Cache에서 수신한 Stop 패킷의 총개수ProfileEvent_DistrCacheSentDataPackets(UInt64) — Distributed Cache 클라이언트 이벤트. Distributed Cache로 전송한 데이터 패킷의 총개수ProfileEvent_DistrCacheSentDataPacketsBytes(UInt64) — Distributed Cache 클라이언트 이벤트. Distributed Cache로 전송한 데이터 패킷의 바이트 수ProfileEvent_DistrCacheUnusedPackets(UInt64) — Distributed Cache 클라이언트 이벤트. Distributed Cache에서 건너뛴 미사용 패킷 수ProfileEvent_DistrCacheUnusedDataPacketsBytes(UInt64) — Distributed Cache 클라이언트 이벤트. 무시된 데이터 패킷의 바이트 수ProfileEvent_DistrCacheUnusedPacketsBufferAllocations(UInt64) — Distributed Cache 클라이언트 이벤트. 기존 버퍼를 재사용할 수 없을 때 발생한 추가 버퍼 할당 횟수ProfileEvent_DistrCacheLockRegistryMicroseconds(UInt64) — Distributed Cache 레지스트리 이벤트. DistributedCacheRegistry 잠금을 획득하는 데 소요된 시간ProfileEvent_DistrCacheRegistryUpdateMicroseconds(UInt64) — Distributed Cache 레지스트리 이벤트. Distributed Cache 레지스트리를 갱신하는 데 소요된 시간ProfileEvent_DistrCacheRegistryUpdates(UInt64) — Distributed Cache 레지스트리 이벤트. Distributed Cache 레지스트리 갱신 횟수ProfileEvent_DistrCacheHashRingRebuilds(UInt64) — Distributed Cache 레지스트리 이벤트. Distributed Cache hash ring 재구성 횟수ProfileEvent_DistrCacheSuccessfulRegistryUpdates(UInt64) — Distributed Cache 레지스트리 이벤트. 성공한 서버 레지스트리 갱신 횟수ProfileEvent_DistrCacheUnsuccessfulRegistryUpdates(UInt64) — Distributed Cache 레지스트리 이벤트. 실패한 서버 레지스트리 갱신 횟수ProfileEvent_DistrCacheReadBytesFromFallbackBuffer(UInt64) — 분산 캐시 읽기 버퍼 이벤트. fallback buffer에서 읽은 바이트 수ProfileEvent_DistrCacheOpenedConnections(UInt64) — Distributed Cache 연결 이벤트. Distributed Cache에 열린 연결 수ProfileEvent_DistrCacheReusedConnections(UInt64) — Distributed Cache 연결 이벤트. Distributed Cache에 대해 재사용된 연결 수ProfileEvent_DistrCacheStaleReconnections(UInt64) — Distributed Cache 연결 이벤트. 오래된(피어가 닫은) 풀 연결로 인해 다시 연결한 횟수ProfileEvent_DistrCacheRemoveOutdatedMicroseconds(UInt64) — Distributed Cache 연결 이벤트. 풀에서 오래된 연결을 제거하는 데 소요된 시간ProfileEvent_DistrCacheOpenedConnectionsBypassingPool(UInt64) — Distributed Cache 연결 이벤트. 풀을 우회하여 Distributed Cache에 연 연결 수ProfileEvent_DistrCacheConnectMicroseconds(UInt64) — Distributed Cache 연결 이벤트. Distributed Cache에 연결하는 데 소요된 시간ProfileEvent_DistrCacheConnectAttempts(UInt64) — Distributed Cache 연결 이벤트. Distributed Cache 연결 시도 횟수ProfileEvent_DistrCacheSuccessfulConnectAttempts(UInt64) — Distributed Cache 연결 이벤트. 성공한 Distributed Cache 연결 시도 횟수ProfileEvent_DistrCacheUnsuccessfulConnectAttempts(UInt64) — Distributed Cache 연결 이벤트. 실패한 Distributed Cache 연결 시도 횟수ProfileEvent_DistrCacheGetClientMicroseconds(UInt64) — Distributed Cache 연결 이벤트. Distributed Cache용 클라이언트를 가져오는 데 소요된 시간ProfileEvent_DistrCacheTemporaryFilesCreated(UInt64) — Distributed Cache 연결 이벤트. Distributed Cache에서 생성된 임시 파일 수ProfileEvent_DistrCacheTemporaryFilesBytesWritten(UInt64) — Distributed Cache 연결 이벤트. Distributed Cache에서 생성된 임시 파일에 기록된 바이트 수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 클라이언트 패킷 수ProfileEvent_DistrCacheServerAckRequestPackets(UInt64) — Distributed Cache 서버 이벤트. DistributedCacheServer의 AckRequest 패킷 수ProfileEvent_DistrCacheServerNewS3CachedClients(UInt64) — Distributed Cache 서버 이벤트. 새로 캐시된 S3 클라이언트 수ProfileEvent_DistrCacheServerReusedS3CachedClients(UInt64) — Distributed Cache 서버 이벤트. 재사용된 캐시된 S3 클라이언트 수ProfileEvent_DistrCacheServerCredentialsRefresh(UInt64) — Distributed Cache 서버 이벤트. 만료된 자격 증명이 갱신된 횟수ProfileEvent_DistrCacheServerCachedReadBufferCacheHits(UInt64) — Distributed Cache 서버 이벤트. 파일 시스템 캐시에서 읽는 동안 Distributed Cache에서 캐시 적중이 발생한 횟수ProfileEvent_DistrCacheServerCachedReadBufferCacheMisses(UInt64) — Distributed Cache 서버 이벤트. 파일 시스템 캐시에서 읽는 동안 Distributed Cache에서 캐시 미스가 발생한 횟수ProfileEvent_DistrCacheServerCachedReadBufferCacheWrittenBytes(UInt64) — Distributed Cache 서버 이벤트. 파일 시스템 캐시에서 읽는 동안 Distributed Cache에서 캐시에 기록된 바이트 수ProfileEvent_DistrCacheServerCachedReadBufferCacheReadBytes(UInt64) — Distributed Cache 서버 이벤트. 파일 시스템 캐시에서 읽는 동안 Distributed Cache에서 캐시에서 읽은 바이트 수ProfileEvent_DistrCacheServerCachedReadBufferObjectStorageReadBytes(UInt64) — Distributed Cache 서버 이벤트. 파일 시스템 캐시에서 읽는 동안 Distributed Cache에서 객체 스토리지에서 읽은 바이트 수ProfileEvent_DistrCacheServerCachedReadBufferCachePredownloadBytes(UInt64) — Distributed Cache 서버 이벤트. 파일 시스템 캐시에서 읽는 동안 Distributed Cache에서 사전 다운로드를 위해 객체 스토리지에서 읽은 바이트 수ProfileEvent_DistrCacheServerSkipped(UInt64) — Distributed Cache 서버 이벤트. 이전 연결 시도가 실패하여 Distributed Cache server를 건너뛴 횟수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) — virtual parts 업데이트 수ProfileEvent_SharedMergeTreeVirtualPartsUpdatesByLeader(UInt64) — 리더가 수행한 virtual parts 업데이트 수ProfileEvent_SharedMergeTreeVirtualPartsUpdateMicroseconds(UInt64) — virtual parts 업데이트에 소요된 마이크로초ProfileEvent_SharedMergeTreeVirtualPartsUpdatesFromZooKeeper(UInt64) — ZooKeeper에서 가져온 virtual parts 업데이트 수ProfileEvent_SharedMergeTreeVirtualPartsUpdatesFromZooKeeperMicroseconds(UInt64) — ZooKeeper에서 가져온 virtual parts 업데이트에 소요된 마이크로초ProfileEvent_SharedMergeTreeVirtualPartsUpdatesPeerNotFound(UInt64) — peer를 찾지 못해 virtual updates가 실패한 횟수ProfileEvent_SharedMergeTreeVirtualPartsUpdatesFromPeer(UInt64) — peer에서 가져온 virtual parts 업데이트 수ProfileEvent_SharedMergeTreeVirtualPartsUpdatesFromPeerMicroseconds(UInt64) — peer에서 가져온 virtual parts 업데이트에 소요된 마이크로초ProfileEvent_SharedMergeTreeVirtualPartsUpdatesForMergesOrStatus(UInt64) — 기본값이 아닌 백그라운드 작업의 virtual parts 업데이트 수ProfileEvent_SharedMergeTreeVirtualPartsUpdatesLeaderFailedElection(UInt64) — 가상 파트 업데이트 리더 선출에 실패한 횟수ProfileEvent_SharedMergeTreeVirtualPartsUpdatesLeaderSuccessfulElection(UInt64) — 가상 파트 업데이트 리더 선출에 성공한 횟수ProfileEvent_SharedMergeTreeMergeMutationAssignmentAttempt(UInt64) — 머지 또는 mutation 할당을 시도한 횟수ProfileEvent_SharedMergeTreeMergeMutationAssignmentFailedWithNothingToDo(UInt64) — 머지 또는 mutation 할당을 시도했지만 머지할 항목이 없어 실패한 횟수ProfileEvent_SharedMergeTreeMergeMutationAssignmentFailedWithConflict(UInt64) — 머지 또는 mutation 할당을 시도했지만 Keeper 충돌로 실패한 횟수ProfileEvent_SharedMergeTreeMergeMutationAssignmentSuccessful(UInt64) — 머지 또는 mutation 할당에 성공한 횟수ProfileEvent_SharedMergeTreeMergePartsMovedToOudated(UInt64) — 오래된 디렉터리로 이동된 파트 수ProfileEvent_SharedMergeTreeMergePartsMovedToCondemned(UInt64) — 폐기 대상으로 지정된 디렉터리로 이동된 파트 수ProfileEvent_SharedMergeTreeOutdatedPartsConfirmationRequest(UInt64) — 오래된 파트를 확인하는 데 사용된 ZooKeeper 요청 수ProfileEvent_SharedMergeTreeOutdatedPartsConfirmationInvocations(UInt64) — 오래된 파트를 확인하기 위해 호출된 횟수ProfileEvent_SharedMergeTreeOutdatedPartsHTTPRequest(UInt64) — 오래된 파트를 확인하기 위해 전송된 HTTP 요청 수ProfileEvent_SharedMergeTreeOutdatedPartsHTTPResponse(UInt64) — 오래된 파트를 확인하기 위해 전송된 HTTP 응답 수ProfileEvent_SharedMergeTreeCondemnedPartsKillRequest(UInt64) — 폐기 대상으로 지정된 파트를 제거하는 데 사용된 ZooKeeper 요청 수ProfileEvent_SharedMergeTreeCondemnedPartsLockConflict(UInt64) — 충돌로 인해 잠금 획득에 실패한 횟수ProfileEvent_SharedMergeTreeCondemnedPartsRemoved(UInt64) — 제거된 폐기 대상으로 지정된 파트 수ProfileEvent_SharedMergeTreePartsKillerRuns(UInt64) — parts killer가 실행된 횟수ProfileEvent_SharedMergeTreePartsKillerMicroseconds(UInt64) — parts killer 메인 스레드에 소요된 시간(마이크로초)ProfileEvent_SharedMergeTreePartsKillerParts(UInt64) — killer에 의해 예약된 파트 수ProfileEvent_SharedMergeTreePartsKillerPartsMicroseconds(UInt64) — 파트 제거에 소요된 시간(마이크로초, 여러 스레드에서 실행)ProfileEvent_SharedMergeTreeMergeSelectingTaskMicroseconds(UInt64) — SMT의 머지 선택 작업에 소요된 시간(마이크로초)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에서 처리할 차단 파트 수ProfileEvent_SharedMergeTreeHandleBlockingPartsMicroseconds(UInt64) — scheduleDataProcessingJob에서 차단 파트를 처리하는 데 걸린 시간ProfileEvent_SharedMergeTreeHandleFetchPartsMicroseconds(UInt64) — scheduleDataProcessingJob에서 가져온 파트를 처리하는 데 걸린 시간ProfileEvent_SharedMergeTreeHandleOutdatedParts(UInt64) — scheduleDataProcessingJob에서 처리할 오래된 파트 수ProfileEvent_SharedMergeTreeHandleOutdatedPartsMicroseconds(UInt64) — scheduleDataProcessingJob에서 오래된 파트를 처리하는 데 걸린 시간ProfileEvent_SharedMergeTreeSelectPartsForRendezvousFetchMicroseconds(UInt64) — selectPartsForRendezvousFetch에 걸린 시간ProfileEvent_SharedMergeTreeSelectPartsForRendezvousFetchParts(UInt64) — selectPartsForRendezvousFetch에서 선택된 파트 수ProfileEvent_SharedMergeTreeSelectPartsForCoordinatedFetchMicroseconds(UInt64) — selectPartsForCoordinatedFetch에 걸린 시간ProfileEvent_SharedMergeTreeSelectPartsForCoordinatedFetchParts(UInt64) — selectPartsForCoordinatedFetch에서 선택된 파트 수ProfileEvent_SharedMergeTreeSelectPartsForFullFetchMicroseconds(UInt64) — selectPartsForFullFetch에 걸린 시간ProfileEvent_SharedMergeTreeSelectPartsForFullFetchParts(UInt64) — selectPartsForFullFetch에서 선택된 파트 수ProfileEvent_SharedMergeTreeTryUpdateDiskMetadataCacheForPartMicroseconds(UInt64) — scheduleDataProcessingJob에서 tryUpdateDiskMetadataCacheForPart에 걸린 시간ProfileEvent_SharedMergeTreeLoadChecksumAndIndexesMicroseconds(UInt64) — SharedMergeTree에서만 사용하는 loadColumnsChecksumsIndexes에 걸린 시간ProfileEvent_SharedMergeTreeSnapshotPartsCleanRequest(UInt64) — SnapshotCleanerThread가 파트 정리를 결정한 횟수ProfileEvent_SharedMergeTreeSnapshotPartsCleanerParts(UInt64) — SnapshotCleanerThread가 파트 정리를 시도한 시간ProfileEvent_SharedMergeTreeSnapshotPartsRemoved(UInt64) — SnapshotCleanerThread가 파트를 성공적으로 정리한 횟수ProfileEvent_SharedMergeTreeSnapshotPartsCleanerRuns(UInt64) — SnapshotCleanerThread 실행 횟수ProfileEvent_SharedMergeTreeSnapshotPartsCleanerMicroseconds(UInt64) — SnapshotCleanerThread의 실행 시간ProfileEvent_SharedMergeTreeSnapshotPartsCleanerPartsMicroseconds(UInt64) — SnapshotCleanerThread가 파트를 정리하는 데 걸린 시간ProfileEvent_SharedMergeTreeDataPartsFetchAttempt(UInt64) — 데이터 파트를 fetch하려고 시도한 횟수ProfileEvent_SharedMergeTreeDataPartsFetchFromPeer(UInt64) — peer에서 데이터 파트를 fetch한 횟수ProfileEvent_SharedMergeTreeDataPartsFetchFromPeerMicroseconds(UInt64) — peer에서 데이터 파트를 fetch하는 데 걸린 시간(마이크로초)ProfileEvent_SharedMergeTreeDataPartsFetchFromS3(UInt64) — S3에서 데이터 파트를 fetch한 횟수ProfileEvent_SharedMergeTreeReplicaSetUpdatesFromZooKeeper(UInt64) — ZooKeeper에서 레플리카 세트를 업데이트한 횟수ProfileEvent_SharedMergeTreeReplicaSetUpdatesFromZooKeeperRequests(UInt64) — 레플리카 세트를 업데이트하기 위해 수행한 ZooKeeper 요청의 총수ProfileEvent_SharedMergeTreeReplicaSetUpdatesFromZooKeeperMicroseconds(UInt64) — 레플리카 세트를 업데이트하는 데 소요된 시간ProfileEvent_KeeperLogsEntryReadFromLatestCache(UInt64) — 최신 로그 캐시에서 읽은 Keeper의 로그 항목 수ProfileEvent_KeeperLogsEntryReadFromCommitCache(UInt64) — 커밋 로그 캐시에서 읽은 Keeper의 로그 항목 수ProfileEvent_KeeperLogsEntryReadFromFile(UInt64) — changelog file에서 직접 읽은 Keeper의 로그 항목 수ProfileEvent_KeeperLogsPrefetchedEntries(UInt64) — changelog file에서 프리페치한 Keeper의 로그 항목 수ProfileEvent_KeeperChangelogWrittenBytes(UInt64) — Keeper의 changelog에 기록된 바이트 수ProfileEvent_KeeperChangelogFileSyncMicroseconds(UInt64) — Keeper changelog에 대해 fsync에 소요된 시간(비압축 로그만 해당)ProfileEvent_KeeperSnapshotWrittenBytes(UInt64) — Keeper의 snapshot 파일에 기록된 바이트 수ProfileEvent_KeeperSnapshotFileSyncMicroseconds(UInt64) — Keeper snapshot 파일에 대해 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개 thread 보장 및 setting ‘use_concurrency_control’ = 0인 쿼리에 따라 부여된 CPU 슬롯 수ProfileEvent_ConcurrencyControlSlotsDelayed(UInt64) — 초기에 부여되지 않아 사용 가능한 CPU 슬롯이 생길 때까지 대기해야 했던 CPU 슬롯 수ProfileEvent_ConcurrencyControlSlotsAcquired(UInt64) — 획득한 CPU 슬롯의 총수ProfileEvent_ConcurrencyControlSlotsAcquiredNonCompeting(UInt64) — 경쟁 없이 획득한 CPU 슬롯의 총수ProfileEvent_ConcurrencyControlQueriesDelayed(UInt64) — 슬롯 수를 늘리기 위해 대기해야 했던 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 데이터에서 읽은 row group의 총 개수ProfileEvent_ParquetPrunedRowGroups(UInt64) — Parquet 데이터에서 가지치기된 row group의 총 개수ProfileEvent_ParquetDecodingTasks(UInt64) — Parquet 리더가 생성한 작업 수ProfileEvent_ParquetDecodingTaskBatches(UInt64) — Parquet 리더가 스레드 풀로 전송한 작업 그룹 수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) — 갱신 가능 구체화 뷰가 갱신된 횟수ProfileEvent_RefreshableViewRefreshFailed(UInt64) — 갱신 가능 구체화 뷰의 갱신이 실패한 횟수ProfileEvent_RefreshableViewSyncReplicaSuccess(UInt64) — 갱신 가능 구체화 뷰에 대한 SELECT가 암시적으로 SYNC REPLICA를 수행한 횟수ProfileEvent_RefreshableViewSyncReplicaRetry(UInt64) — 갱신 가능 구체화 뷰에 대한 SELECT가 실패하여 암시적으로 SYNC REPLICA를 재시도한 횟수ProfileEvent_RefreshableViewLockTableRetry(UInt64) — 이전 테이블이 삭제되어 갱신 가능 구체화 뷰에 대한 SELECT가 새 테이블로 전환해야 했던 횟수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 allocation sample 추적에 실패한 총 횟수ProfileEvent_JemallocFailedDeallocationSampleTracking(UInt64) — jemalloc deallocation sample 추적에 실패한 총 횟수ProfileEvent_LoadedStatisticsMicroseconds(UInt64) — 파트에서 통계를 로드하는 데 걸린 시간ProfileEvent_RuntimeDataflowStatisticsInputBytes(UInt64) — 쿼리가 병렬 레플리카로 실행되었을 경우 레플리카가 읽게 될 바이트 수에 대해 수집된 통계ProfileEvent_RuntimeDataflowStatisticsOutputBytes(UInt64) — 쿼리가 병렬 레플리카로 실행되었을 경우 레플리카가 initiator에 전송하게 될 바이트 수에 대해 수집된 통계ProfileEvent_S3CachedCredentialsProvidersReused(UInt64) — 캐시에서 재사용된 자격 증명 제공자의 총 수ProfileEvent_S3CachedCredentialsProvidersAdded(UInt64) — 캐시에 새로 추가된 자격 증명 제공자의 총 수ProfileEvent_RuntimeFiltersCreated(UInt64) — 하나의 쿼리 내에서 생성된 고유한 JOIN Runtime Filters 수ProfileEvent_RuntimeFilterBlocksProcessed(UInt64) — JOIN Runtime Filters가 처리한 블록 수ProfileEvent_RuntimeFilterBlocksSkipped(UInt64) — 필터링 비율이 낮아 필터가 동적으로 비활성화되어, JOIN Runtime Filters가 처리하지 않고 건너뛴 블록 수ProfileEvent_RuntimeFilterRowsChecked(UInt64) — JOIN Runtime Filters가 검사한 행 수ProfileEvent_RuntimeFilterRowsPassed(UInt64) — JOIN Runtime Filters를 통과한 행 수(즉, 필터링되지 않은 행 수)ProfileEvent_RuntimeFilterRowsSkipped(UInt64) — JOIN Runtime Filters에 의해 건너뛴 블록 내 행 수ProfileEvent_JoinBuildPostProcessingMicroseconds(UInt64) — 오른쪽 JOIN 측을 빌드한 후 수행되는 후처리 단계의 경과 시간ProfileEvent_AIInputTokens(UInt64) — 쿼리의 모든 AI 함수 호출에서 소비된 전체 프롬프트 토큰 수ProfileEvent_AIOutputTokens(UInt64) — 쿼리의 모든 AI 함수 호출에서 소비된 전체 completion 토큰 수ProfileEvent_AIAPICalls(UInt64) — AI 프로바이더로 전송된 HTTP 요청 수ProfileEvent_AIRowsProcessed(UInt64) — AI 결과를 받은 행 수ProfileEvent_AIRowsSkipped(UInt64) — 할당량 또는 오류로 인해 기본값을 받은 행 수CurrentMetric_Query(Int64) — 실행 중인 쿼리 수CurrentMetric_ASTFuzzerAccumulatedFragments(Int64) — 향후 뮤테이션에 사용하기 위해 서버 측 AST 퍼저가 누적한 AST 프래그먼트 수CurrentMetric_QueryNonInternal(Int64) — 실행 중인 비내부 쿼리 수(사용자가 시작한 쿼리이며 ClickHouse의 내부 쿼리는 제외)CurrentMetric_Merge(Int64) — 실행 중인 백그라운드 머지 수CurrentMetric_MergeParts(Int64) — 현재 백그라운드 머지에 참여하는 소스 파트 수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) — 해당 백그라운드 풀에서 활성 상태인 fetch 작업 수CurrentMetric_BackgroundFetchesPoolSize(Int64) — 해당 백그라운드 풀에서 동시에 실행될 수 있는 fetch 작업 수의 한도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) — 현재 실행 중인 백그라운드 머지를 위해 예약된 디스크 공간. 현재 머지 중인 파트의 총 크기보다 약간 큽니다.CurrentMetric_DistributedSend(Int64) — 분산 테이블에 INSERT된 데이터를 전송하는 원격 서버와의 연결 수. 동기 및 비동기 모드를 모두 포함합니다.CurrentMetric_QueryPreempted(Int64) — ‘priority’ 설정으로 인해 일시 중지되어 대기 중인 실행 작업 수CurrentMetric_TCPConnection(Int64) — TCP 서버(네이티브 인터페이스를 사용하는 클라이언트) 연결 수이며, 서버 간 분산 쿼리 연결도 포함됩니다.CurrentMetric_MySQLConnection(Int64) — MySQL 프로토콜을 사용하는 클라이언트 연결 수CurrentMetric_HTTPConnection(Int64) — HTTP 서버 연결 수CurrentMetric_InterserverConnection(Int64) — 파트를 fetch하기 위한 다른 레플리카의 연결 수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) — 생성된 임시 파일 수CurrentMetric_TemporaryFilesForSort(Int64) — 외부 정렬을 위해 생성된 임시 파일 수CurrentMetric_TemporaryFilesForAggregation(Int64) — 외부 집계를 위해 생성된 임시 파일 수CurrentMetric_TemporaryFilesForJoin(Int64) — JOIN을 위해 생성된 임시 파일 수CurrentMetric_TemporaryFilesForMerge(Int64) — 수직 병합을 위한 임시 파일 수CurrentMetric_TemporaryFilesUnknown(Int64) — 용도를 알 수 없는 상태로 생성된 임시 파일 수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 구성 없이 시작되어 현재 readonly 상태인 복제된 테이블 수CurrentMetric_ReplicaReady(Int64) — 레플리카가 쿼리를 처리할 준비가 되었는지를 나타냅니다: 0 = 아니요, 1 = 예CurrentMetric_MemoryTracking(Int64) — server가 할당한 총 메모리 양(바이트)CurrentMetric_MemoryTrackingUncorrected(Int64) — RSS로 보정되지 않은 server의 총 메모리 할당량(바이트)CurrentMetric_MergesMutationsMemoryTracking(Int64) — 백그라운드 작업(머지 및 뮤테이션)에 할당된 총 메모리 양(바이트)CurrentMetric_EphemeralNode(Int64) — ZooKeeper에 유지되고 있는 ephemeral 노드 수CurrentMetric_MaxAllocatedEphemeralLockSequentialNumber(Int64) — ZooKeeper의 ephemeral lock znode에 할당된 최대 sequential 번호입니다. 주로 block 번호의 영향을 받습니다.CurrentMetric_ZooKeeperSession(Int64) — ZooKeeper에 대한 세션(연결) 수입니다. 1개를 초과해서는 안 됩니다. ZooKeeper에 둘 이상의 연결을 사용하면 ZooKeeper 일관성 모델에서 허용하는 선형화 가능성(linearizability)의 부재(오래된 읽기)로 인해 버그가 발생할 수 있기 때문입니다.CurrentMetric_ZooKeeperSessionExpired(Int64) — 만료된 전역 ZooKeeper 세션 수CurrentMetric_ZooKeeperConnectionLossStartedTimestampSeconds(Int64) — ZooKeeper 연결이 끊어진 시점의 초 단위 Unix timestamp이며, 정상적으로 연결된 경우 0입니다.CurrentMetric_ZooKeeperWatch(Int64) — ZooKeeper의 watch(이벤트 구독) 수입니다.CurrentMetric_ZooKeeperRequest(Int64) — 현재 처리 중인 ZooKeeper 요청 수입니다.CurrentMetric_DelayedInserts(Int64) — MergeTree 테이블의 파티션에 활성 데이터 파트 수가 많아 스로틀링되는 INSERT 쿼리 수입니다.CurrentMetric_ContextLockWait(Int64) — Context에서 잠금을 기다리는 스레드 수입니다. 이는 전역 잠금입니다.CurrentMetric_StorageBufferRows(Int64) — Buffer 테이블의 버퍼에 있는 행 수입니다CurrentMetric_StorageBufferBytes(Int64) — Buffer 테이블의 버퍼에 있는 바이트 수입니다CurrentMetric_DictCacheRequests(Int64) — cache 유형 사전의 데이터 소스에 대해 현재 처리 중인 요청 수입니다.CurrentMetric_Revision(Int64) — 서버의 리비전입니다. 패치 릴리스를 제외하고 각 릴리스 또는 릴리스 후보마다 증가하는 숫자입니다.CurrentMetric_VersionInteger(Int64) — base-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) — 전역 스레드 풀에서 큐에 있거나 활성 상태인 job 수입니다.CurrentMetric_LocalThread(Int64) — 사용 중단됨. 로컬 스레드 풀의 스레드 수입니다. 로컬 스레드 풀의 스레드는 전역 스레드 풀에서 가져옵니다.CurrentMetric_LocalThreadActive(Int64) — 사용 중단됨. 작업을 실행 중인 로컬 스레드 풀의 스레드 수입니다.CurrentMetric_LocalThreadScheduled(Int64) — 사용 중단됨. 로컬 스레드 풀에서 큐에 있거나 활성 상태인 job 수입니다.CurrentMetric_MergeTreeDataSelectExecutorThreads(Int64) — MergeTreeDataSelectExecutor 스레드 풀의 스레드 수입니다.CurrentMetric_MergeTreeDataSelectExecutorThreadsActive(Int64) — 작업을 실행 중인 MergeTreeDataSelectExecutor 스레드 풀의 스레드 수입니다.CurrentMetric_MergeTreeDataSelectExecutorThreadsScheduled(Int64) — MergeTreeDataSelectExecutor 스레드 풀에서 큐에 있거나 활성 상태인 job 수입니다.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 writer 스레드 풀의 스레드 수입니다.CurrentMetric_IOWriterThreadsActive(Int64) — 작업을 실행 중인 IO writer 스레드 풀의 스레드 수입니다.CurrentMetric_IOWriterThreadsScheduled(Int64) — IO writer 스레드 풀에서 대기 중이거나 실행 중인 작업 수입니다.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) — 객체 스토리지 큐 종료 스레드 풀의 스레드 수입니다.CurrentMetric_ObjectStorageQueueShutdownThreadsActive(Int64) — 객체 스토리지 큐 종료 스레드 풀에서 작업을 실행 중인 스레드 수입니다.CurrentMetric_ObjectStorageQueueShutdownThreadsScheduled(Int64) — 객체 스토리지 큐 종료 스레드 풀에서 큐에 대기 중이거나 활성 상태인 job 수입니다.CurrentMetric_ObjectStorageQueueMetadataCacheSizeBytes(Int64) — ObjectStorageQueue 메타데이터 캐시의 바이트 단위 크기입니다.CurrentMetric_ObjectStorageQueueMetadataCacheSizeElements(Int64) — ObjectStorageQueue 메타데이터 캐시의 요소 수입니다.CurrentMetric_DeltaLakeSnapshotCacheSizeElements(Int64) — DeltaLake 스냅샷 캐시의 요소 수입니다.CurrentMetric_BackupsIOThreads(Int64) — BackupsIO 스레드 풀의 스레드 수입니다.CurrentMetric_BackupsIOThreadsActive(Int64) — BackupsIO 스레드 풀에서 작업을 실행 중인 스레드 수입니다.CurrentMetric_BackupsIOThreadsScheduled(Int64) — BackupsIO 스레드 풀에서 큐에 대기 중이거나 활성 상태인 job 수입니다.CurrentMetric_DiskObjectStorageAsyncThreads(Int64) — 더 이상 사용되지 않는 메트릭이며, 아무것도 표시하지 않습니다.CurrentMetric_DiskObjectStorageAsyncThreadsActive(Int64) — 더 이상 사용되지 않는 메트릭이며, 아무것도 표시하지 않습니다.CurrentMetric_StorageHiveThreads(Int64) — StorageHive 스레드 풀의 스레드 수입니다.CurrentMetric_StorageHiveThreadsActive(Int64) — StorageHive 스레드 풀에서 작업을 실행 중인 스레드 수입니다.CurrentMetric_StorageHiveThreadsScheduled(Int64) — StorageHive 스레드 풀에서 큐에 대기 중이거나 활성 상태인 job 수입니다.CurrentMetric_TablesLoaderBackgroundThreads(Int64) — tables loader 백그라운드 스레드 풀의 스레드 수입니다.CurrentMetric_TablesLoaderBackgroundThreadsActive(Int64) — tables loader 백그라운드 스레드 풀에서 작업을 실행 중인 스레드 수입니다.CurrentMetric_TablesLoaderBackgroundThreadsScheduled(Int64) — tables loader 백그라운드 스레드 풀에서 큐에 대기 중이거나 활성 상태인 job 수입니다.CurrentMetric_TablesLoaderForegroundThreads(Int64) — tables loader 포그라운드 스레드 풀의 스레드 수입니다.CurrentMetric_TablesLoaderForegroundThreadsActive(Int64) — tables loader 포그라운드 스레드 풀에서 작업을 실행 중인 스레드 수입니다.CurrentMetric_TablesLoaderForegroundThreadsScheduled(Int64) — tables loader 포그라운드 스레드 풀에서 큐에 대기 중이거나 활성 상태인 job 수입니다.CurrentMetric_DatabaseOnDiskThreads(Int64) — DatabaseOnDisk 스레드 풀의 스레드 수입니다.CurrentMetric_DatabaseOnDiskThreadsActive(Int64) — DatabaseOnDisk 스레드 풀에서 작업을 실행 중인 스레드 수입니다.CurrentMetric_DatabaseOnDiskThreadsScheduled(Int64) — DatabaseOnDisk 스레드 풀에서 큐에 대기 중이거나 활성 상태인 job 수입니다.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) — aggregate state 삭제용 스레드 풀의 스레드 수입니다.CurrentMetric_DestroyAggregatesThreadsActive(Int64) — aggregate state 삭제용 스레드 풀에서 작업을 실행 중인 스레드 수입니다.CurrentMetric_DestroyAggregatesThreadsScheduled(Int64) — aggregate state 삭제용 스레드 풀에서 큐에 대기 중이거나 현재 활성 상태인 작업 수입니다.CurrentMetric_ConcurrentHashJoinPoolThreads(Int64) — concurrent hash join용 스레드 풀의 스레드 수입니다.CurrentMetric_ConcurrentHashJoinPoolThreadsActive(Int64) — concurrent hash join용 스레드 풀에서 작업을 실행 중인 스레드 수입니다.CurrentMetric_ConcurrentHashJoinPoolThreadsScheduled(Int64) — concurrent hash join용 스레드 풀에서 큐에 대기 중이거나 현재 활성 상태인 작업 수입니다.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에서 파트를 fetch하는 스레드 수입니다.CurrentMetric_MergeTreeFetchPartitionThreadsScheduled(Int64) — ALTER TABLE FETCH PARTITION에서 큐에 있거나 활성 상태인 파트 fetch 수입니다.CurrentMetric_MergeTreePartsLoaderThreads(Int64) — MergeTree 파트 로더 스레드 풀의 스레드 수입니다.CurrentMetric_MergeTreePartsLoaderThreadsActive(Int64) — 작업을 실행 중인 MergeTree 파트 로더 스레드 풀의 스레드 수입니다.CurrentMetric_MergeTreePartsLoaderThreadsScheduled(Int64) — MergeTree 파트 로더 스레드 풀에서 큐에 있거나 활성 상태인 작업 수입니다.CurrentMetric_MergeTreeOutdatedPartsLoaderThreads(Int64) — Outdated 데이터 파트를 로드하는 스레드 풀의 스레드 수입니다.CurrentMetric_MergeTreeOutdatedPartsLoaderThreadsActive(Int64) — Outdated 데이터 파트를 로드하는 스레드 풀의 활성 스레드 수입니다.CurrentMetric_MergeTreeOutdatedPartsLoaderThreadsScheduled(Int64) — Outdated 데이터 파트를 로드하는 스레드 풀에서 큐에 있거나 활성 상태인 작업 수입니다.CurrentMetric_MergeTreeUnexpectedPartsLoaderThreads(Int64) — Unexpected 데이터 파트를 로드하는 스레드 풀의 스레드 수입니다.CurrentMetric_MergeTreeUnexpectedPartsLoaderThreadsActive(Int64) — Unexpected 데이터 파트를 로드하는 스레드 풀의 활성 스레드 수입니다.CurrentMetric_MergeTreeUnexpectedPartsLoaderThreadsScheduled(Int64) — Unexpected 데이터 파트를 로드하는 스레드 풀에서 큐에 있거나 활성 상태인 작업 수입니다.CurrentMetric_MergeTreePartsCleanerThreads(Int64) — MergeTree 파트 정리 스레드 풀의 스레드 수입니다.CurrentMetric_MergeTreePartsCleanerThreadsActive(Int64) — 작업을 실행 중인 MergeTree 파트 정리 스레드 풀의 스레드 수입니다.CurrentMetric_MergeTreePartsCleanerThreadsScheduled(Int64) — MergeTree 파트 정리 스레드 풀에서 큐에 있거나 활성 상태인 작업 수입니다.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) — 폴리곤 딕셔너리용 스레드 풀의 스레드 수입니다.CurrentMetric_PolygonDictionaryThreadsActive(Int64) — 폴리곤 딕셔너리용 스레드 풀에서 활성 상태인 스레드 수입니다.CurrentMetric_PolygonDictionaryThreadsScheduled(Int64) — 폴리곤 딕셔너리용 스레드 풀에서 큐에 있거나 활성 상태인 작업 수입니다.CurrentMetric_KeeperReadThreads(Int64) — Keeper server 읽기용 스레드 풀의 스레드 수입니다.CurrentMetric_KeeperReadThreadsActive(Int64) — Keeper server 읽기용 스레드 풀에서 활성 상태인 스레드 수입니다.CurrentMetric_KeeperReadThreadsScheduled(Int64) — Keeper server 읽기용 스레드 풀에서 큐에 있거나 활성 상태인 작업 수입니다. 의미 없는 메트릭이며, 이 스레드 풀의 실제 읽기 작업은 다른 메커니즘으로 스케줄링됩니다.CurrentMetric_DistributedBytesToInsert(Int64) — 분산 테이블에 대한 비동기 삽입을 위해 처리 대기 중인 바이트 수입니다. 모든 세그먼트의 바이트 수를 합산합니다.CurrentMetric_BrokenDistributedBytesToInsert(Int64) — 분산 테이블에 대한 비동기 삽입에서 손상된 것으로 표시된 바이트 수입니다. 모든 세그먼트의 바이트 수를 합산합니다.CurrentMetric_DistributedFilesToInsert(Int64) — 분산 테이블에 대한 비동기 삽입을 위해 처리 대기 중인 파일 수입니다. 모든 세그먼트의 파일 수를 합산합니다.CurrentMetric_BrokenDistributedFilesToInsert(Int64) — 분산 테이블에 대한 비동기 삽입에서 손상된 것으로 표시된 파일 수입니다. 모든 세그먼트의 파일 수를 합산합니다.CurrentMetric_TablesToDropQueueSize(Int64) — 삭제되었으며 백그라운드 데이터 제거를 기다리는 테이블 수입니다.CurrentMetric_MaxDDLEntryID(Int64) — DDLWorker가 처리한 최대 DDL 엔트리입니다.CurrentMetric_MaxPushedDDLEntryID(Int64) — DDLWorker가 ZooKeeper에 푸시한 최대 DDL 엔트리입니다.CurrentMetric_PartsTemporary(Int64) — 현재 생성 중인 파트로, data_parts 목록에는 없습니다.CurrentMetric_PartsPreCommitted(Int64) — Deprecated. PartsPreActive를 참조하십시오.CurrentMetric_PartsCommitted(Int64) — Deprecated. PartsActive를 참조하십시오.CurrentMetric_PartsPreActive(Int64) — 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) — 아이덴티티 참조 카운터가 있는 비활성 데이터 파트로, 현재 cleaner에 의해 삭제되고 있습니다.CurrentMetric_PartsDeleteOnDestroy(Int64) — 다른 디스크로 이동된 파트이며, 자체 destructor에서 삭제되어야 합니다.CurrentMetric_PartsWide(Int64) — 와이드 파트.CurrentMetric_PartsCompact(Int64) — 컴팩트 파트.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 view를 채움).CurrentMetric_KafkaConsumersInUse(Int64) — 현재 직접 읽기 또는 백그라운드 읽기에 사용 중인 컨슈머 수입니다.CurrentMetric_KafkaWrites(Int64) — 현재 실행 중인 Kafka로의 삽입 수입니다.CurrentMetric_KafkaAssignedPartitions(Int64) — 현재 Kafka 테이블에 할당된 파티션 수입니다.CurrentMetric_FilesystemCacheReadBuffers(Int64) — 활성 캐시 버퍼 수입니다.CurrentMetric_CacheFileSegments(Int64) — 현재 존재하는 캐시 파일 세그먼트 수입니다.CurrentMetric_CacheDetachedFileSegments(Int64) — 현재 존재하는 분리된 캐시 파일 세그먼트 수입니다.CurrentMetric_FilesystemCacheSize(Int64) — 바이트 단위의 파일 시스템 캐시 크기입니다.CurrentMetric_FilesystemCacheSizeLimit(Int64) — 바이트 단위의 파일 시스템 캐시 크기 제한입니다.CurrentMetric_FilesystemCacheElements(Int64) — 파일 시스템 캐시 요소(파일 세그먼트) 수입니다.CurrentMetric_FilesystemCacheDownloadQueueElements(Int64) — 다운로드 큐에 있는 파일 시스템 캐시 요소 수입니다.CurrentMetric_FilesystemCacheDelayedCleanupElements(Int64) — 백그라운드 정리 큐에 있는 파일 시스템 캐시 요소 수입니다.CurrentMetric_FilesystemCacheHoldFileSegments(Int64) — 현재 해제할 수 없는 상태로 유지되는 파일 시스템 캐시 파일 세그먼트 수입니다.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 스키마 캐시 크기(바이트)CurrentMetric_AvroSchemaCacheCells(Int64) — 캐시된 Avro 스키마 수CurrentMetric_AvroSchemaRegistryCacheBytes(Int64) — Avro 스키마 레지스트리 캐시 크기(바이트)CurrentMetric_AvroSchemaRegistryCacheCells(Int64) — Avro 스키마 레지스트리 캐시의 항목 수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) — 읽기 작업을 선택하기 위해 원격 서버에서 initiator 서버로 다시 보내는 진행 중인 콜백 요청의 현재 수입니다(s3Cluster테이블 함수 및 유사한 경우). 원격 서버 측에서 측정됩니다.CurrentMetric_MergeTreeReadTaskRequestsSent(Int64) — 읽기 작업을 선택하기 위해 원격 서버에서 initiator 서버로 다시 보내는 진행 중인 콜백 요청의 현재 수입니다(MergeTree 테이블의 경우). 원격 서버 측에서 측정됩니다.CurrentMetric_MergeTreeAllRangesAnnouncementsSent(Int64) — 데이터 파트 집합에 대해 원격 서버에서 initiator 서버로 전송 중인 announcement의 현재 수입니다(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) — 진행 중인 fetch 수CurrentMetric_SharedMergeTreeAssignedCurrentParts(Int64) — 머지 또는 mutation에 의해 잠긴 파트 수CurrentMetric_SharedMergeTreeOutdatedPartsInKeeper(Int64) — Keeper에 저장된 outdated part record 수CurrentMetric_SharedMergeTreeCondemnedPartsInKeeper(Int64) — Keeper에 저장된 폐기 대상으로 지정된 파트 레코드 수CurrentMetric_SharedMergeTreeBrokenCondemnedPartsInKeeper(Int64) — Keeper에 저장된 손상된 폐기 대상 파트 레코드 수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) — 모든 SharedMergeTree 테이블에서 Keeper에 등록된 파티션의 최소 수CurrentMetric_SharedMergeTreeMaxPartitions(Int64) — 모든 SharedMergeTree 테이블에서 Keeper에 등록된 파티션의 최대 수CurrentMetric_CacheWarmerBytesInProgress(Int64) — 파일 시스템 캐시에 비동기적으로 로드되기를 기다리는 원격 파일 세그먼트의 총 크기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에 대해 실행된 Read 요청 수CurrentMetric_DistrCacheWriteRequests(Int64) — Distributed Cache에 대해 실행된 Write 요청 수CurrentMetric_DistrCacheWriteBuffers(Int64) — Distributed Cache 쓰기 버퍼 수CurrentMetric_DistrCacheReadBuffers(Int64) — Distributed Cache 읽기 버퍼 수CurrentMetric_DistrCacheServerConnections(Int64) — Distributed Cache에서 ClickHouse 서버로 열린 연결 수CurrentMetric_DistrCacheRegisteredServers(Int64) — Distributed Cache에 등록된 서버 수CurrentMetric_DistrCacheRegisteredServersCurrentAZ(Int64) — 현재 AZ의 Distributed Cache 등록 서버 수CurrentMetric_DistrCacheServerS3CachedClients(Int64) — Distributed Cache의 S3 cached 클라이언트 수CurrentMetric_DistrCacheServerRegistryConnections(Int64) — Distributed Cache에서 ClickHouse 서버로의 활성 연결 수(제한 때문에 취소됨으로 표시되지 않은 연결)CurrentMetric_SchedulerIOReadScheduled(Int64) — 현재 스케줄링 중인 IO 읽기 수CurrentMetric_SchedulerIOWriteScheduled(Int64) — 현재 스케줄링 중인 IO 쓰기 수CurrentMetric_StorageConnectionsStored(Int64) — 스토리지용 세션 풀에 저장된 세션의 총수CurrentMetric_StorageConnectionsTotal(Int64) — 스토리지용 세션 전체의 총수(풀에 저장된 세션과 현재 활발히 사용 중인 세션 포함)CurrentMetric_DiskConnectionsStored(Int64) — 디스크용 세션 풀에 저장된 세션의 총수CurrentMetric_DiskConnectionsTotal(Int64) — 디스크용 세션 전체의 총수(풀에 저장된 세션과 현재 활발히 사용 중인 세션 포함)CurrentMetric_BlobKillerThreads(Int64) — 객체 스토리지 디스크 백그라운드 삭제 프로세스의 스레드 풀에 있는 스레드 수CurrentMetric_BlobKillerThreadsActive(Int64) — 객체 스토리지 디스크 백그라운드 삭제 프로세스의 스레드 풀에서 작업을 실행 중인 스레드 수CurrentMetric_BlobKillerThreadsScheduled(Int64) — 객체 스토리지 디스크 백그라운드 삭제 프로세스의 스레드 풀에서 큐에 있거나 실행 중인 작업 수CurrentMetric_BlobCopierThreads(Int64) — 객체 스토리지 디스크 백그라운드 복제 프로세스의 스레드 풀에 있는 스레드 수CurrentMetric_BlobCopierThreadsActive(Int64) — 객체 스토리지 디스크 백그라운드 복제 프로세스의 스레드 풀에서 작업을 실행 중인 스레드 수CurrentMetric_BlobCopierThreadsScheduled(Int64) — 객체 스토리지 디스크 백그라운드 복제 프로세스의 스레드 풀에서 큐에 있거나 실행 중인 작업 수CurrentMetric_HTTPConnectionsStored(Int64) — HTTP 호스트용 세션 풀에 저장된 세션의 총수CurrentMetric_HTTPConnectionsTotal(Int64) — HTTP 호스트용 세션 전체의 총수(풀에 저장된 세션과 현재 활발히 사용 중인 세션 포함)CurrentMetric_AddressesActive(Int64) — 연결 풀에서 연결 생성에 사용되는 주소의 총수CurrentMetric_AddressesBanned(Int64) — 연결 풀에서 연결 생성 시 오류가 있는 것으로 판단되어 차단된 주소의 총수CurrentMetric_FilteringMarksWithPrimaryKey(Int64) — 현재 프라이머리 키(primary key)로 마크 범위를 필터링 중인 스레드 수CurrentMetric_FilteringMarksWithSecondaryKeys(Int64) — 현재 보조 키로 마크 범위를 필터링 중인 스레드 수CurrentMetric_ConcurrencyControlScheduled(Int64) — 현재 스케줄링 중인 CPU 슬롯 요청의 총수CurrentMetric_ConcurrencyControlAcquired(Int64) — 획득한 CPU 슬롯의 총수CurrentMetric_ConcurrencyControlAcquiredNonCompeting(Int64) — 경쟁 상태로 간주되지 않는 획득 CPU 슬롯의 총수(fair_round_robin 스케줄러 사용 시 첫 번째 스레드)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에서 로컬 삭제 또는 detach를 위한 큐에 있는 테이블 수입니다.CurrentMetric_SharedCatalogDropDetachLocalTablesErrors(Int64) — Shared Catalog에서 로컬 테이블을 삭제하거나 detach하는 과정에서 발생한 오류 수입니다.CurrentMetric_SharedCatalogNumberOfObjectsInState(Int64) — Shared Catalog의 현재 상태에 포함된 객체 수입니다.CurrentMetric_MetadataFromKeeperCacheObjects(Int64) — 디스크 메타데이터 캐시에 있는 객체 수입니다.CurrentMetric_LicenseRemainingSeconds(Int64) — 라이선스 유효 기간의 남은 초 수입니다.CurrentMetric_StartupScriptsExecutionState(Int64) — 시작 스크립트의 실행 상태입니다: 0 = 완료되지 않음, 1 = 성공, 2 = 실패.CurrentMetric_IsServerShuttingDown(Int64) — server가 종료 중인지 여부를 나타냅니다: 0 = 아니요, 1 = 예CurrentMetric_StatelessWorkerThreads(Int64) — stateless worker 스레드 풀의 스레드 수입니다.CurrentMetric_StatelessWorkerThreadsActive(Int64) — 작업을 실행 중인 stateless worker 스레드 풀의 스레드 수입니다.CurrentMetric_StatelessWorkerThreadsScheduled(Int64) — stateless worker 스레드 풀의 큐 대기 중이거나 활성 상태인 작업 수입니다.CurrentMetric_ReadonlyDisks(Int64) — 디스크 검사 중 readonly로 표시된 디스크 수입니다.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) — 스냅샷 커밋에 사용되도록 예약된 스레드 수입니다.
예시
<schema_type>를 사용해 여러 스키마 유형으로 구성할 수 있습니다. 기본 스키마 유형은 wide이며, 각 메트릭 또는 프로파일 이벤트가 별도의 컬럼으로 저장됩니다. 이 스키마는 단일 컬럼 읽기에서 가장 높은 성능과 효율을 제공합니다.
transposed 스키마는 메트릭과 이벤트를 행으로 저장하는 system.asynchronous_metric_log와 유사한 포맷으로 데이터를 저장합니다. 이 스키마는 머지 중 리소스 사용량을 줄여 주므로 리소스가 제한된 환경에서 유용합니다.
히스토그램
각 행에는 metric, labels, histogram, count, sum 필드를 갖는 histograms Nested 컬럼에 등록된 모든 히스토그램 메트릭의 스냅샷도 함께 포함됩니다. 버킷 카운트는 서버 시작 이후 누적됩니다. 기본적으로 전체 count가 0인 히스토그램은 내보내지지 않으며, 내보내진 히스토그램에서 카운트가 0인 버킷은 histogram 맵에서 생략됩니다. 모든 히스토그램과 모든 버킷을 유지하려면 system_metric_log_show_zero_values_in_histograms = 1을 설정하십시오(default 사용자 프로필에서).
예시 쿼리:
관련 항목
- metric_log 설정 — 설정을 활성화 및 비활성화합니다.
- system.asynchronous_metrics — 주기적으로 계산되는 메트릭을 포함합니다.
- system.events — 발생한 이벤트들을 포함합니다.
- system.metrics — 즉시 계산되는 메트릭을 포함합니다.
- 모니터링 — ClickHouse 모니터링의 기본 개념을 설명합니다.