system.metric_log
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 조건을 평가할 때 기본 키를 사용하는 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 시스템 호출이 완료되기를 기다리는 데 소요된 총 시간입니다.ProfileEvent_DirectorySyncElapsedMicroseconds(UInt64) — 디렉터리에 대한 F_FULLFSYNC/fsync/fdatasync 시스템 호출 대기 시간의 총합입니다.ProfileEvent_ReadCompressedBytes(UInt64) — 압축된 소스(파일, 네트워크)에서 읽은 바이트 수(압축 해제 전 기준)입니다.ProfileEvent_CompressedReadBufferBlocks(UInt64) — 압축된 소스(파일, 네트워크)에서 읽은 압축 블록 수(서로 독립적으로 압축되는 데이터 블록)입니다.ProfileEvent_CompressedReadBufferBytes(UInt64) — 압축된 소스(파일, 네트워크)에서 읽은 비압축 바이트 수(즉, 압축 해제 후의 바이트 수)입니다.ProfileEvent_CompressedReadBufferChecksumDoesntMatch(UInt64) — 압축된 블록의 체크섬이 일치하지 않은 횟수입니다.ProfileEvent_CompressedReadBufferChecksumDoesntMatchSingleBitMismatch(UInt64) — 압축된 블록의 체크섬 불일치가 단일 비트 차이로 인해 발생한 횟수입니다.ProfileEvent_CompressedReadBufferChecksumDoesntMatchMicroseconds(UInt64) — 압축 블록의 체크섬 불일치로 인해 발생한 비트 반전을 감지하는 데 소요된 총 시간입니다.ProfileEvent_UncompressedCacheHits(UInt64) — 데이터 블록이 비압축 캐시에서 발견되어 압축 해제를 피한 횟수입니다.ProfileEvent_UncompressedCacheMisses(UInt64) — 비압축 캐시에서 데이터 블록을 찾지 못해 압축 해제가 필요했던 횟수입니다.ProfileEvent_UncompressedCacheWeightLost(UInt64) — 비압축 캐시에서 축출된 바이트 수입니다.ProfileEvent_PageCacheHits(UInt64) — 데이터 블록이 사용자 공간 페이지 캐시에서 발견된 횟수입니다.ProfileEvent_PageCacheMisses(UInt64) — 데이터 block을 사용자 공간 페이지 캐시에서 찾지 못한 횟수입니다.ProfileEvent_PageCacheWeightLost(UInt64) — 사용자 공간 페이지 캐시에서 축출된 바이트 수ProfileEvent_PageCacheResized(UInt64) — 사용자 공간 페이지 캐시의 크기가 자동으로 조정된 횟수입니다(보통 초당 몇 차례 발생하며,memory_worker_period_ms로 제어됩니다).ProfileEvent_PageCacheOvercommitResize(UInt64) — 메모리 할당 중 메모리를 확보하기 위해 사용자 공간 페이지 캐시가 자동으로 크기 조정된 횟수입니다.ProfileEvent_PageCacheReadBytes(UInt64) — 사용자 공간 페이지 캐시에서 읽어온 바이트 수입니다.ProfileEvent_MMappedFileCacheHits(UInt64) — 파일이 MMap 캐시에서 발견되어(mmapread_method의 경우) 다시 mmap할 필요가 없었던 횟수입니다.ProfileEvent_MMappedFileCacheMisses(UInt64) — MMap 캐시에서 파일을 찾지 못해 ('mmap' read_method의 경우) 다시 mmap해야 했던 횟수입니다.ProfileEvent_OpenedFileCacheHits(UInt64) — 파일이 opened file cache에서 발견되어 다시 열지 않아도 되었던 횟수입니다.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 함수는 블록(block) 단위로 호출되므로, 이 수치는 블록의 개수를 나타냅니다).ProfileEvent_TableFunctionExecute(UInt64) — 테이블 함수 호출 수입니다.ProfileEvent_DefaultImplementationForNullsRows(UInt64) — 함수 실행 시 null 값에 대한 기본 구현으로 처리된 행 수ProfileEvent_DefaultImplementationForNullsRowsWithNulls(UInt64) — 함수 실행 시 null에 대한 기본 구현으로 처리된 null 값을 포함하는 행 수ProfileEvent_MarkCacheHits(UInt64) — 엔트리를 마크 캐시에서 찾아 마크 파일을 로드하지 않아도 되었던 횟수입니다.ProfileEvent_MarkCacheMisses(UInt64) — 마크 캐시에서 항목을 찾지 못해 메모리에 마크 파일을 로드해야 했던 횟수입니다. 이는 비용이 많이 드는 작업으로, 쿼리 지연 시간을 늘립니다.ProfileEvent_PrimaryIndexCacheHits(UInt64) — 프라이머리 인덱스 캐시에서 항목을 찾은 횟수입니다. 따라서 인덱스 파일을 로드할 필요가 없었습니다.ProfileEvent_PrimaryIndexCacheMisses(UInt64) — 프라이머리 인덱스 캐시에서 항목을 찾지 못해 메모리에 인덱스 파일을 로드해야 했던 횟수입니다. 이는 비용이 많이 드는 작업으로, 쿼리 지연 시간을 증가시킵니다.ProfileEvent_IcebergMetadataFilesCacheHits(UInt64) — 캐시에서 Iceberg 메타데이터 파일을 찾은 횟수입니다.ProfileEvent_IcebergMetadataFilesCacheMisses(UInt64) — Iceberg 메타데이터 파일을 Iceberg 메타데이터 캐시에서 찾지 못해 (원격) 디스크에서 읽어야 했던 횟수입니다.ProfileEvent_IcebergMetadataFilesCacheStaleMisses(UInt64) — Iceberg 메타데이터 파일이 캐시에 있었지만 오래된 것으로 간주되어 (원격) 디스크에서 다시 읽어야 했던 횟수입니다.ProfileEvent_IcebergMetadataFilesCacheWeightLost(UInt64) — Iceberg 메타데이터 캐시에서 제거된 바이트 수의 대략값입니다.ProfileEvent_IcebergMetadataReadWaitTimeMicroseconds(UInt64) — 모든 읽기 스레드에서 합산한, 데이터 리더가 Iceberg 메타데이터 파일을 읽고 파싱할 때까지 대기한 총 시간입니다.ProfileEvent_ParquetMetadataCacheHits(UInt64) — 캐시에서 Parquet 메타데이터를 찾은 횟수입니다.ProfileEvent_ParquetMetadataCacheMisses(UInt64) — 캐시에서 Parquet 메타데이터를 찾지 못해 디스크에서 읽어야 한 횟수.ProfileEvent_ParquetMetadataCacheWeightLost(UInt64) — Parquet 메타데이터 캐시에서 제거된 바이트의 대략적인 양입니다.ProfileEvent_IcebergIteratorInitializationMicroseconds(UInt64) — Iceberg 데이터 이터레이터의 동기 초기화에 소요된 총 시간입니다.ProfileEvent_IcebergMetadataUpdateMicroseconds(UInt64) — Iceberg 데이터 이터레이터를 동기식으로 초기화하는 데 소요된 총 시간입니다.ProfileEvent_IcebergMetadataReturnedObjectInfos(UInt64) — Iceberg iterator가 반환한 객체 정보의 총개수입니다.ProfileEvent_IcebergMinMaxNonPrunedDeleteFiles(UInt64) — 파티셔닝과 시퀀스 번호 기준에 적합한 쌍 중, minmax 분석을 통해 최종적으로 채택된 데이터 파일-포지션 삭제 파일 쌍의 총개수입니다.ProfileEvent_IcebergMinMaxPrunedDeleteFiles(UInt64) — 파티셔닝 및 시퀀스 번호 기준으로 적합한 쌍 가운데 minmax 분석을 통해 허용된 데이터 파일-포지션 삭제 파일 쌍의 총 개수.ProfileEvent_VectorSimilarityIndexCacheHits(UInt64) — 벡터 인덱스 캐시에서 인덱스 그래뉼을 찾은 횟수.ProfileEvent_VectorSimilarityIndexCacheMisses(UInt64) — 벡터 인덱스 cache에서 인덱스 그래뉼을 찾지 못해 디스크에서 읽어야 했던 횟수입니다.ProfileEvent_VectorSimilarityIndexCacheWeightLost(UInt64) — 벡터 인덱스 캐시에서 제거된 바이트 수의 대략값입니다.ProfileEvent_TextIndexReadDictionaryBlocks(UInt64) — 디스크에서 텍스트 인덱스 딕셔너리 블록을 읽은 횟수입니다.ProfileEvent_TextIndexTokensCacheHits(UInt64) — 텍스트 인덱스 토큰 정보가 캐시에서 조회된 횟수입니다.ProfileEvent_TextIndexTokensCacheMisses(UInt64) — 텍스트 인덱스 토큰 정보를 캐시에서 찾지 못한 횟수입니다.ProfileEvent_TextIndexHeaderCacheHits(UInt64) — 캐시에서 헤더를 찾은 횟수입니다.ProfileEvent_TextIndexHeaderCacheMisses(UInt64) — 캐시에서 헤더 정보를 찾지 못한 횟수입니다.ProfileEvent_TextIndexPostingsCacheHits(UInt64) — 캐시에서 텍스트 인덱스 포스팅 리스트를 찾은 횟수입니다.ProfileEvent_TextIndexPostingsCacheMisses(UInt64) — 텍스트 인덱스 포스팅 리스트를 캐시에서 찾지 못한 횟수.ProfileEvent_TextIndexReadSparseIndexBlocks(UInt64) — 텍스트 인덱스에서 희소 인덱스 블록을 읽은 횟수입니다.ProfileEvent_TextIndexReaderTotalMicroseconds(UInt64) — 텍스트 인덱스를 읽는 데 걸린 총 시간입니다.ProfileEvent_TextIndexReadGranulesMicroseconds(UInt64) — 텍스트 인덱스 그래뉼을 읽고 분석하는 데 소요된 총 시간입니다.ProfileEvent_TextIndexReadPostings(UInt64) — 텍스트 인덱스에서 포스팅 리스트를 읽은 횟수입니다.ProfileEvent_TextIndexUsedEmbeddedPostings(UInt64) — 딕셔너리에 포함된 포스팅 리스트가 사용된 횟수입니다.ProfileEvent_TextIndexUseHint(UInt64) — 텍스트 인덱스의 직접 읽기가 힌트로 추가되어 실제로 사용된 인덱스 그래뉼 수입니다.ProfileEvent_TextIndexDiscardHint(UInt64) — 텍스트 인덱스에서 직접 읽기가 힌트로 추가되었지만 선택도가 낮아 폐기된 인덱스 그래뉼 수입니다.ProfileEvent_TextIndexDiscardPatternScan(UInt64) — 텍스트 인덱스에서 읽어야 할 포스팅 리스트 수가 임계값을 초과해 패턴 기반 딕셔너리 스캔이 중단된 횟수입니다.ProfileEvent_QueryConditionCacheHits(UInt64) — 항목이 쿼리 조건 캐시에서 발견된 횟수입니다(이 경우 마크 읽기를 건너뛸 수 있습니다). SETTING use_query_condition_cache = 1이 설정된 SELECT 쿼리에서만 업데이트됩니다.ProfileEvent_QueryConditionCacheMisses(UInt64) — 쿼리 조건 캐시에서 항목을 찾지 못해(따라서 마크 읽기를 건너뛸 수 없어) 발생한 횟수입니다. SETTING use_query_condition_cache = 1이 설정된 SELECT 쿼리에서만 업데이트됩니다.ProfileEvent_QueryCacheHits(UInt64) — 쿼리 결과가 쿼리 캐시에서 찾아진 횟수입니다(즉, 쿼리 계산을 수행하지 않은 경우). SETTING use_query_cache = 1이 지정된 SELECT 쿼리에 대해서만 업데이트됩니다.ProfileEvent_QueryCacheMisses(UInt64) — 쿼리 결과를 쿼리 캐시에서 찾지 못해(따라서 쿼리 계산이 필요했던) 발생한 횟수입니다. SETTING use_query_cache = 1이 설정된 SELECT 쿼리에 대해서만 업데이트됩니다.ProfileEvent_QueryCacheAgeSeconds(UInt64) — 조회된 쿼리 캐시 항목의 경과 시간 합계를 초 단위로 나타냅니다. 이 값은 적중과 미스 모두에 대해 설정됩니다.ProfileEvent_QueryCacheReadRows(UInt64) — 쿼리 캐시에서 읽은 행의 수입니다.ProfileEvent_QueryCacheReadBytes(UInt64) — 쿼리 캐시에서 읽은 (압축되지 않은) 바이트 수입니다.ProfileEvent_QueryCacheWrittenRows(UInt64) — 쿼리 캐시에 저장된 행의 수입니다.ProfileEvent_QueryCacheWrittenBytes(UInt64) — 쿼리 캐시에 저장된 (비압축) 바이트의 수ProfileEvent_CreatedReadBufferOrdinary(UInt64) — 다른 읽기 메서드 중에서 선택하는 과정에서 데이터 읽기용 일반 read buffer가 생성된 횟수입니다.ProfileEvent_CreatedReadBufferDirectIO(UInt64) — 데이터 읽기 시 다른 읽기 메서드 중에서 선택하는 과정에서 O_DIRECT가 적용된 읽기 버퍼가 생성된 횟수입니다.ProfileEvent_CreatedReadBufferDirectIOFailed(UInt64) — 데이터 읽기 시(다른 읽기 메서드 중에서 선택하는 과정에서) O_DIRECT가 적용된 읽기 버퍼를 생성하려고 했지만, OS가 이를 허용하지 않아(파일시스템 지원 부족 또는 기타 이유로) 일반 읽기 메서드로 대체된 횟수입니다.ProfileEvent_CreatedReadBufferMMap(UInt64) — 다른 읽기 메서드와 비교해 선택하는 과정에서, 데이터 읽기를 위해 'mmap'을 사용하는 읽기 버퍼가 생성된 횟수입니다.ProfileEvent_CreatedReadBufferMMapFailed(UInt64) — 데이터 읽기 시(다른 읽기 메서드 중에서 선택하는 과정에서) 'mmap'을 사용하는 읽기 버퍼를 생성하려고 시도했지만, 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) — 전역 스레드 풀에 새 스레드가 추가된 총 횟수를 집계합니다. 이 메트릭은 증가한 처리 수요를 수용하기 위해 전역 스레드 풀이 얼마나 자주 확장되었는지를 나타냅니다.ProfileEvent_GlobalThreadPoolShrinks(UInt64) — 전역 스레드 풀이 스레드를 제거해 축소된 총 횟수를 나타냅니다. 이는 idle 스레드 수가 max_thread_pool_free_size를 초과할 때 발생하며, 스레드 사용량 감소에 대응해 전역 스레드 풀 크기가 조정되고 있음을 의미합니다.ProfileEvent_GlobalThreadPoolThreadCreationMicroseconds(UInt64) — 새 스레드 시작을 기다리는 데 소요된 총 시간입니다.ProfileEvent_GlobalThreadPoolLockWaitMicroseconds(UInt64) — 전역 스레드 풀에서 스레드가 잠금을 기다리며 소요한 총 시간입니다.ProfileEvent_GlobalThreadPoolJobs(UInt64) — 전역 스레드 풀에 추가된 작업 수를 나타냅니다.ProfileEvent_GlobalThreadPoolJobWaitTimeMicroseconds(UInt64) — 작업이 스레드 풀에 예약된 시점부터 작업자 스레드가 이를 가져와 실행할 때까지 경과한 시간을 측정합니다. 이 메트릭은 작업 처리 지연을 파악하는 데 도움이 되며, 새 작업에 대한 스레드 풀의 응답성을 보여줍니다.ProfileEvent_LocalThreadPoolExpansions(UInt64) — 로컬 스레드 풀을 확장하기 위해 전역 스레드 풀에서 스레드를 가져온 총 횟수를 나타냅니다.ProfileEvent_LocalThreadPoolShrinks(UInt64) — 로컬 스레드 풀에서 글로벌 스레드 풀로 스레드가 반환된 총 횟수를 나타냅니다.ProfileEvent_LocalThreadPoolThreadCreationMicroseconds(UInt64) — 로컬 스레드 풀이 글로벌 풀에서 스레드를 빌리기 위해 대기한 총 시간입니다.ProfileEvent_LocalThreadPoolLockWaitMicroseconds(UInt64) — 로컬 스레드 풀에서 잠금을 기다리며 스레드가 소요한 총 시간입니다.ProfileEvent_LocalThreadPoolJobs(UInt64) — 로컬 스레드 풀에 추가된 작업 수를 셉니다.ProfileEvent_LocalThreadPoolBusyMicroseconds(UInt64) — 스레드가 실제 작업을 수행하는 데 소요한 총 시간입니다.ProfileEvent_LocalThreadPoolJobWaitTimeMicroseconds(UInt64) — 스레드 풀에 job이 예약된 시점부터 워커 스레드가 이를 실행하기 위해 가져가는 시점까지의 경과 시간을 측정합니다. 이 메트릭은 job 처리 지연을 식별하는 데 도움이 되며, 스레드 풀이 새 작업에 얼마나 신속하게 반응하는지를 나타냅니다.ProfileEvent_DiskS3GetRequestThrottlerCount(UInt64) — 스로틀러를 거친 DiskS3 GET 및 SELECT 요청 수입니다. 차단된 요청과 차단되지 않은 요청을 모두 포함합니다.ProfileEvent_DiskS3GetRequestThrottlerBlocked(UInt64) — 스로틀러로 인해 차단된 DiskS3 GET 및 SELECT 요청 수.ProfileEvent_DiskS3GetRequestThrottlerSleepMicroseconds(UInt64) — DiskS3 GET 및 SELECT 요청 스로틀링에 맞추기 위해 쿼리가 대기한 총 시간입니다.ProfileEvent_DiskS3PutRequestThrottlerCount(UInt64) — 스로틀러를 거친 DiskS3 PUT, COPY, POST 및 LIST 요청 수: 차단된 요청과 차단되지 않은 요청을 모두 포함합니다.ProfileEvent_DiskS3PutRequestThrottlerBlocked(UInt64) — 스로틀러에 의해 차단된 DiskS3의 PUT, COPY, POST 및 LIST 요청 수.ProfileEvent_DiskS3PutRequestThrottlerSleepMicroseconds(UInt64) — 쿼리가 DiskS3의 PUT, COPY, POST 및 LIST 요청 스로틀링에 맞추기 위해 대기한 총 시간입니다.ProfileEvent_S3GetRequestThrottlerCount(UInt64) — 스로틀러를 거친 S3 GET 및 SELECT 요청 수입니다. 차단된 요청과 차단되지 않은 요청이 모두 포함됩니다.ProfileEvent_S3GetRequestThrottlerBlocked(UInt64) — 스로틀러에 의해 차단된 S3 GET 및 SELECT 요청의 수.ProfileEvent_S3GetRequestThrottlerSleepMicroseconds(UInt64) — S3 GET 및 SELECT 요청 스로틀링에 맞추기 위해 쿼리가 대기한 총 시간입니다.ProfileEvent_S3PutRequestThrottlerCount(UInt64) — 스로틀러를 거친 S3 PUT, COPY, POST 및 LIST 요청 수: 차단된 요청과 차단되지 않은 요청을 모두 포함합니다.ProfileEvent_S3PutRequestThrottlerBlocked(UInt64) — 스로틀러로 인해 차단된 S3 PUT, COPY, POST 및 LIST 요청 수입니다.ProfileEvent_S3PutRequestThrottlerSleepMicroseconds(UInt64) — S3 PUT, COPY, POST 및 LIST 요청 스로틀링에 맞추기 위해 쿼리가 대기한 총 시간입니다.ProfileEvent_ACMEAPIRequests(UInt64) — 발생한 ACME API 요청 수입니다.ProfileEvent_ACMECertificateOrders(UInt64) — 발급된 ACME 인증서 주문 건수.ProfileEvent_DiskAzureReadMicroseconds(UInt64) — Azure 디스크 읽기 요청을 대기하는 데 소요된 총 시간입니다.ProfileEvent_DiskAzureReadRequestsCount(UInt64) — Azure 디스크 읽기 요청 수.ProfileEvent_DiskAzureReadRequestsErrors(UInt64) — Azure 디스크 읽기 요청 오류의 수입니다.ProfileEvent_DiskAzureReadRequestsThrottling(UInt64) — 스로틀링된 Azure 디스크 읽기 요청의 수입니다.ProfileEvent_DiskAzureReadRequestsRedirects(UInt64) — Azure 디스크 읽기 요청이 리디렉션된 횟수입니다.ProfileEvent_DiskAzureWriteMicroseconds(UInt64) — Azure 디스크 쓰기 요청을 기다리는 데 소요된 총 시간입니다.ProfileEvent_DiskAzureWriteRequestsCount(UInt64) — Azure 디스크에 대한 쓰기 요청 수입니다.ProfileEvent_DiskAzureWriteRequestsErrors(UInt64) — Azure 디스크 쓰기 요청 오류의 수입니다.ProfileEvent_DiskAzureWriteRequestsThrottling(UInt64) — 스로틀링된 Azure 디스크 쓰기 요청의 수입니다.ProfileEvent_DiskAzureWriteRequestsRedirects(UInt64) — Azure 디스크 쓰기 요청 리디렉션 횟수입니다.ProfileEvent_AzureReadMicroseconds(UInt64) — Azure 읽기 요청을 대기하는 데 소요된 총 시간입니다.ProfileEvent_AzureReadRequestsCount(UInt64) — Azure 읽기 요청의 수입니다.ProfileEvent_AzureReadRequestsErrors(UInt64) — Azure 읽기 요청 오류 수.ProfileEvent_AzureReadRequestsThrottling(UInt64) — 스로틀링된 Azure 읽기 요청의 수.ProfileEvent_AzureReadRequestsRedirects(UInt64) — Azure 읽기 요청이 리디렉션된 횟수.ProfileEvent_AzureWriteMicroseconds(UInt64) — Azure 쓰기 요청을 기다리는 데 걸린 총 시간입니다.ProfileEvent_AzureWriteRequestsCount(UInt64) — Azure 쓰기 요청 수입니다.ProfileEvent_AzureWriteRequestsErrors(UInt64) — Azure 쓰기 요청 오류의 수입니다.ProfileEvent_AzureWriteRequestsThrottling(UInt64) — 스로틀링된 Azure 쓰기 요청 수.ProfileEvent_AzureWriteRequestsRedirects(UInt64) — Azure 쓰기 요청 리디렉션 횟수.ProfileEvent_AzureGetRequestThrottlerCount(UInt64) — 스로틀러를 통과한 Azure GET 요청 수입니다. 차단된 요청과 차단되지 않은 요청을 모두 포함합니다.ProfileEvent_AzureGetRequestThrottlerBlocked(UInt64) — 스로틀러에 의해 차단된 Azure GET 요청 수.ProfileEvent_AzureGetRequestThrottlerSleepMicroseconds(UInt64) — Azure GET 요청 스로틀링을 준수하기 위해 쿼리가 대기한 총 시간입니다.ProfileEvent_DiskAzureGetRequestThrottlerCount(UInt64) — 스로틀러를 통과한 Azure 디스크 GET 요청 수입니다. 차단된 요청과 차단되지 않은 요청이 모두 포함됩니다.ProfileEvent_DiskAzureGetRequestThrottlerBlocked(UInt64) — 스로틀러로 인해 차단된 Azure 디스크 GET 요청 수.ProfileEvent_DiskAzureGetRequestThrottlerSleepMicroseconds(UInt64) — Azure 디스크 GET 요청 스로틀링에 맞추기 위해 쿼리가 대기한 총 시간입니다.ProfileEvent_AzurePutRequestThrottlerCount(UInt64) — 스로틀러를 통과한 Azure PUT 요청 수: 차단된 요청과 차단되지 않은 요청 모두 포함.ProfileEvent_AzurePutRequestThrottlerBlocked(UInt64) — 스로틀러에 의해 차단된 Azure PUT 요청 수.ProfileEvent_AzurePutRequestThrottlerSleepMicroseconds(UInt64) — Azure PUT 요청 스로틀링에 맞추기 위해 쿼리가 대기한 총 시간입니다.ProfileEvent_DiskAzurePutRequestThrottlerCount(UInt64) — 스로틀러를 거친 Azure 디스크 PUT 요청 수입니다. 차단된 요청과 차단되지 않은 요청이 모두 포함됩니다.ProfileEvent_DiskAzurePutRequestThrottlerBlocked(UInt64) — 스로틀러에 의해 차단된 Azure 디스크 PUT 요청의 수입니다.ProfileEvent_DiskAzurePutRequestThrottlerSleepMicroseconds(UInt64) — Azure 디스크 PUT 요청 스로틀링에 맞추기 위해 쿼리가 대기한 총 시간입니다.ProfileEvent_RemoteReadThrottlerBytes(UInt64) — 'max_remote_read_network_bandwidth_for_server'/'max_remote_read_network_bandwidth' 스로틀러를 통과한 바이트 수입니다.ProfileEvent_RemoteReadThrottlerSleepMicroseconds(UInt64) — 'max_remote_read_network_bandwidth_for_server'/'max_remote_read_network_bandwidth' 스로틀링에 맞추기 위해 쿼리가 대기한 총 시간입니다.ProfileEvent_RemoteWriteThrottlerBytes(UInt64) — 'max_remote_write_network_bandwidth_for_server'/'max_remote_write_network_bandwidth' 스로틀러를 통해 전달된 바이트 수입니다.ProfileEvent_RemoteWriteThrottlerSleepMicroseconds(UInt64) — 쿼리가 'max_remote_write_network_bandwidth_for_server'/'max_remote_write_network_bandwidth' 스로틀링에 맞추기 위해 대기 상태로 있던 총 시간입니다.ProfileEvent_LocalReadThrottlerBytes(UInt64) — 'max_local_read_bandwidth_for_server'/'max_local_read_bandwidth' 스로틀러를 통해 전달된 바이트 수입니다.ProfileEvent_LocalReadThrottlerSleepMicroseconds(UInt64) — 쿼리가 'max_local_read_bandwidth_for_server'/'max_local_read_bandwidth' 스로틀링에 맞추기 위해 대기한 총 시간입니다.ProfileEvent_LocalWriteThrottlerBytes(UInt64) — 'max_local_write_bandwidth_for_server'/'max_local_write_bandwidth' 스로틀러를 거쳐 전달된 바이트 수.ProfileEvent_LocalWriteThrottlerSleepMicroseconds(UInt64) —max_local_write_bandwidth_for_server/max_local_write_bandwidth스로틀링에 맞추기 위해 쿼리가 대기한 총 시간입니다.ProfileEvent_BackupThrottlerBytes(UInt64) — 'max_backup_bandwidth_for_server' 스로틀러를 통과한 바이트 수입니다.ProfileEvent_BackupThrottlerSleepMicroseconds(UInt64) — 쿼리가 'max_backup_bandwidth_for_server' 스로틀링을 충족하기 위해 대기 상태로 있었던 총 시간입니다.ProfileEvent_MergesThrottlerBytes(UInt64) — 'max_merges_bandwidth_for_server' 스로틀러를 거친 바이트 수입니다.ProfileEvent_MergesThrottlerSleepMicroseconds(UInt64) — 'max_merges_bandwidth_for_server' 스로틀링에 맞추기 위해 쿼리가 대기한 총 시간입니다.ProfileEvent_MutationsThrottlerBytes(UInt64) — 'max_mutations_bandwidth_for_server' 스로틀러를 통과한 바이트 수.ProfileEvent_MutationsThrottlerSleepMicroseconds(UInt64) — 쿼리가 'max_mutations_bandwidth_for_server' 스로틀링 제한에 맞추기 위해 대기한 총 시간입니다.ProfileEvent_UserThrottlerBytes(UInt64) — 'max_network_bandwidth_for_user' 스로틀러를 통해 전달된 바이트 수.ProfileEvent_UserThrottlerSleepMicroseconds(UInt64) — 쿼리가 'max_network_bandwidth_for_user' 스로틀링 기준을 맞추기 위해 대기한 총 시간입니다.ProfileEvent_AllUsersThrottlerBytes(UInt64) — 'max_network_bandwidth_for_all_users' 스로틀러를 통해 전달된 바이트 수입니다.ProfileEvent_AllUsersThrottlerSleepMicroseconds(UInt64) — 쿼리가 'max_network_bandwidth_for_all_users' 스로틀링을 준수하기 위해 대기 상태로 있었던 총 시간입니다.ProfileEvent_QueryRemoteReadThrottlerBytes(UInt64) — 'max_remote_read_network_bandwidth' 스로틀러를 통해 전달된 바이트 수.ProfileEvent_QueryRemoteReadThrottlerSleepMicroseconds(UInt64) — 쿼리가 'max_remote_read_network_bandwidth' 스로틀링 제한에 맞추기 위해 대기한 총 시간입니다.ProfileEvent_QueryRemoteWriteThrottlerBytes(UInt64) — 'max_remote_write_network_bandwidth' 스로틀러를 통해 전달된 바이트 수.ProfileEvent_QueryRemoteWriteThrottlerSleepMicroseconds(UInt64) — 쿼리가 'max_remote_write_network_bandwidth' 스로틀링을 따르기 위해 절전 상태로 대기한 총 시간입니다.ProfileEvent_QueryLocalReadThrottlerBytes(UInt64) — 'max_local_read_bandwidth' 스로틀러를 통해 전달된 바이트 수입니다.ProfileEvent_QueryLocalReadThrottlerSleepMicroseconds(UInt64) — 쿼리가 'max_local_read_bandwidth' 스로틀링을 맞추기 위해 절전 상태로 대기한 총 시간입니다.ProfileEvent_QueryLocalWriteThrottlerBytes(UInt64) — 'max_local_write_bandwidth' 스로틀러를 통해 전달된 바이트 수.ProfileEvent_QueryLocalWriteThrottlerSleepMicroseconds(UInt64) — 쿼리가 'max_local_write_bandwidth' 스로틀링에 맞추기 위해 대기 상태로 있었던 총 시간입니다.ProfileEvent_QueryBackupThrottlerBytes(UInt64) — 'max_backup_bandwidth' 스로틀러를 통해 전달된 바이트 수.ProfileEvent_QueryBackupThrottlerSleepMicroseconds(UInt64) — 쿼리가 'max_backup_bandwidth' 스로틀링에 맞추기 위해 대기한 총 시간입니다.ProfileEvent_DistrCacheReadThrottlerBytes(UInt64) — 'max_distributed_cache_read_bandwidth_for_server' 스로틀러를 거친 바이트 수.ProfileEvent_DistrCacheReadThrottlerSleepMicroseconds(UInt64) — 쿼리가 'max_distributed_cache_read_bandwidth_for_server' 스로틀링에 맞추기 위해 대기한 총 시간입니다.ProfileEvent_DistrCacheWriteThrottlerBytes(UInt64) — 'max_distributed_cache_write_bandwidth_for_server' 스로틀러를 거친 바이트 수.ProfileEvent_DistrCacheWriteThrottlerSleepMicroseconds(UInt64) — 'max_distributed_cache_write_bandwidth_for_server' 스로틀링에 맞추기 위해 쿼리가 대기 상태에 있었던 총 시간입니다.ProfileEvent_ThrottlerSleepMicroseconds(UInt64) — 쿼리가 모든 스로틀링 설정을 준수하기 위해 대기한 총 시간입니다.ProfileEvent_ReadTasksWithAppliedPatches(UInt64) — 하나 이상의 patch part가 적용된 읽기 작업의 총 개수ProfileEvent_PatchesAppliedInAllReadTasks(UInt64) — 모든 읽기 작업에 걸쳐 적용된 패치 파트의 총 개수ProfileEvent_PatchesMergeAppliedInAllReadTasks(UInt64) — 모든 읽기 작업에 걸쳐 Merge 모드로 적용된 패치 파트의 총 개수ProfileEvent_PatchesJoinAppliedInAllReadTasks(UInt64) — 모든 읽기 작업에서 Join 모드로 적용된 패치 파트의 총 개수ProfileEvent_PatchesReadRows(UInt64) — 패치 파트에서 읽은 총 행 수ProfileEvent_PatchesReadUncompressedBytes(UInt64) — patch part에서 읽은 비압축 바이트의 총합ProfileEvent_PatchesJoinRowsAddedToHashTable(UInt64) — patch 파트를 Join 모드로 적용할 때 해시 테이블에 추가된 총 행 수ProfileEvent_ApplyPatchesMicroseconds(UInt64) — 블록에 patch part를 적용하는 데 소요된 총 시간ProfileEvent_ReadPatchesMicroseconds(UInt64) — 패치 파트 읽기에 소요된 총 시간ProfileEvent_BuildPatchesMergeMicroseconds(UInt64) — Merge 모드에서 patch parts 적용용 인덱스를 구축하는 데 소요된 총 시간ProfileEvent_BuildPatchesJoinMicroseconds(UInt64) — 패치 파트를 Join 모드로 적용하기 위해 인덱스와 해시 테이블을 구축하는 데 소요된 총 시간ProfileEvent_AnalyzePatchRangesMicroseconds(UInt64) — 패치 파트 인덱스 분석에 소요된 총 시간ProfileEvent_ReadTasksWithAppliedMutationsOnFly(UInt64) — 읽는 중에 뮤테이션이 적용된 읽기 작업의 총수ProfileEvent_MutationsAppliedOnFlyInAllReadTasks(UInt64) — 모든 읽기 작업에서 실시간으로 적용된 뮤테이션의 총개수ProfileEvent_PatchesAcquireLockTries(UInt64) — 경량 업데이트 실행을 위해 잠금 획득을 시도한 총 횟수ProfileEvent_PatchesAcquireLockMicroseconds(UInt64) — 경량 업데이트를 실행하기 위한 잠금 획득에 소요된 총 마이크로초 수ProfileEvent_DiskObjectStorageWaitBlobRemovalMicroseconds(UInt64) — 메타데이터 트랜잭션 커밋 후 보류 중인 blob 제거를 기다리는 데 소요된 시간ProfileEvent_SchedulerIOReadRequests(UInt64) — IO 읽기를 위해 스케줄러를 거친 리소스 요청 수입니다.ProfileEvent_SchedulerIOReadBytes(UInt64) — IO 읽기를 위해 스케줄러를 거쳐 전달된 바이트 수입니다.ProfileEvent_SchedulerIOReadWaitMicroseconds(UInt64) — 쿼리가 IO 읽기를 위한 리소스 요청을 기다리며 소요한 총 시간입니다.ProfileEvent_SchedulerIOWriteRequests(UInt64) — IO 쓰기 작업을 위해 스케줄러를 거쳐 전달된 리소스 요청 수입니다.ProfileEvent_SchedulerIOWriteBytes(UInt64) — IO 쓰기를 위해 스케줄러를 거쳐 전달된 바이트 수입니다.ProfileEvent_SchedulerIOWriteWaitMicroseconds(UInt64) — 쿼리가 IO 쓰기 리소스 요청을 대기한 총 시간입니다.ProfileEvent_QueryMaskingRulesMatch(UInt64) — 쿼리가 마스킹 규칙과 성공적으로 일치한 횟수입니다.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삽입이 활성화되지 않은 경우). 즉, 데이터 파트가 기록된 레플리카에 장애가 발생했고, 장애 후 다시 온라인 상태가 되었을 때 해당 데이터 파트를 갖고 있지 않은 경우입니다.ProfileEvent_ReplicatedCoveredPartsInZooKeeperOnStart(UInt64) — 디버깅용입니다. ZooKeeper에 있으며 이를 덮는 파트가 있지만 디스크에는 존재하지 않는 파트의 수입니다. 서버 시작 시 확인합니다.ProfileEvent_QuorumParts(UInt64) — 쿼럼으로 기록된 데이터 파트 수입니다. 동기 삽입에서는 1개의 파트로 계산되며, 비동기 삽입을 플러시하는 삽입에서는 비동기 삽입 수만큼 계산될 수 있습니다.ProfileEvent_QuorumWaitMicroseconds(UInt64) — 삽입 중 쿼럼을 기다리는 데 걸린 총 시간입니다.ProfileEvent_QuorumFailedInserts(UInt64) — 仲裁 수를 충족하지 못해 실패한 삽입 횟수입니다.ProfileEvent_InsertedRows(UInt64) — 모든 테이블에 INSERT된 행의 수입니다.ProfileEvent_InsertedBytes(UInt64) — 모든 테이블에 INSERT된 바이트 수(비압축, 컬럼이 메모리에 저장된 형식 기준).ProfileEvent_DelayedInserts(UInt64) — 파티션에 활성 데이터 파트가 너무 많아 MergeTree 테이블에 블록을INSERT하는 작업이 스로틀링된 횟수입니다.ProfileEvent_RejectedInserts(UInt64) — 해당 파티션의 활성 데이터 파트 수가 너무 많아 블록을 MergeTree 테이블에 INSERT하는 작업이 "너무 많은 파트" 예외로 거부된 횟수입니다.ProfileEvent_DelayedInsertsMilliseconds(UInt64) — 파티션의 활성 데이터 파트 수가 많아 MergeTree 테이블에 블록을 INSERT할 때 스로틀링되어 소요된 총 시간(밀리초)입니다.ProfileEvent_DelayedMutations(UInt64) — 테이블에서 완료되지 않은 mutation 수가 많아 MergeTree 테이블의 mutation이 스로틀링된 횟수.ProfileEvent_RejectedMutations(UInt64) — 테이블에 완료되지 않은 mutation이 너무 많아 MergeTree 테이블의 mutation이 'Too many mutations' 예외로 거부된 횟수입니다.ProfileEvent_DelayedMutationsMilliseconds(UInt64) — 해당 테이블에 완료되지 않은 mutation이 많아 MergeTree 테이블의 mutation이 스로틀링된 동안 소요된 총 밀리초 수입니다.ProfileEvent_RejectedLightweightUpdates(UInt64) — 패치의 비압축 바이트 수가 너무 많아 경량 업데이트가 거부된 횟수입니다.ProfileEvent_DistributedDelayedInserts(UInt64) — 대기 중인 바이트 수가 많아 분산 테이블에 블록을 INSERT할 때 스로틀링된 횟수입니다.ProfileEvent_DistributedRejectedInserts(UInt64) — 대기 중인 바이트 수가 많아 'Too many bytes' exception이 발생하여 분산 테이블에 블록을 INSERT하는 작업이 거부된 횟수입니다.ProfileEvent_DistributedDelayedInsertsMilliseconds(UInt64) — 대기 중인 바이트 수가 많아 블록을 Distributed 테이블에 INSERT할 때 스로틀링되는 동안 소요된 총 밀리초 수입니다.ProfileEvent_DuplicatedInsertedBlocks(UInt64) — *MergeTree 테이블에 대한 동기 삽입이 중복 제거된 횟수.ProfileEvent_SelfDuplicatedAsyncInserts(UInt64) — ReplicatedMergeTree 테이블에INSERT된 블록에서 자체적으로 중복 제거된 비동기 삽입 수입니다.ProfileEvent_DuplicatedAsyncInserts(UInt64) — ReplicatedMergeTree 테이블에 INSERT된 블록에서 중복 제거된 비동기 삽입 횟수입니다.ProfileEvent_DuplicationElapsedMicroseconds(UInt64) — *MergeTree 테이블에 INSERT된 블록의 중복 여부를 확인하는 데 소요된 총 시간입니다.ProfileEvent_ZooKeeperInit(UInt64) — ZooKeeper와 연결이 설정된 횟수입니다.ProfileEvent_ZooKeeperTransactions(UInt64) — 읽기 및 쓰기 작업은 물론 다중 트랜잭션까지 포함한 ZooKeeper 작업 수입니다.ProfileEvent_ZooKeeperList(UInt64) — ZooKeeper에 대한 'list' (getChildren) 요청의 수입니다.ProfileEvent_ZooKeeperListRecursive(UInt64) — ZooKeeper로 전송된 'listRecursive' 요청 수입니다.ProfileEvent_ZooKeeperCreate(UInt64) — ZooKeeper로 전송된 'create' 요청 수입니다.ProfileEvent_ZooKeeperRemove(UInt64) — ZooKeeper에 대한 'remove' 요청의 수입니다.ProfileEvent_ZooKeeperExists(UInt64) — ZooKeeper에 대한 'exists' 요청의 수입니다.ProfileEvent_ZooKeeperGet(UInt64) — ZooKeeper에 대한 'get' 요청 횟수입니다.ProfileEvent_ZooKeeperSet(UInt64) — ZooKeeper로 전송된 'set' 요청 수.ProfileEvent_ZooKeeperMulti(UInt64) — ZooKeeper에 대한 'multi' 요청 수(트랜잭션).ProfileEvent_ZooKeeperMultiRead(UInt64) — ZooKeeper에 대한 'multi' 읽기 요청 수(트랜잭션).ProfileEvent_ZooKeeperMultiWrite(UInt64) — ZooKeeper에 대한 쓰기 'multi' 요청 수(여러 작업을 하나로 묶은 트랜잭션).ProfileEvent_ZooKeeperCheck(UInt64) — ZooKeeper에 대한 'check' 요청 수입니다. 일반적으로 단독으로는 큰 의미가 없으며, 복잡한 트랜잭션의 일부일 때만 의미가 있습니다.ProfileEvent_ZooKeeperSync(UInt64) — ZooKeeper에 대한 'sync' 요청 수입니다. 이러한 요청은 거의 필요하지 않으며, 실제로 사용할 일도 드뭅니다.ProfileEvent_ZooKeeperReconfig(UInt64) — ZooKeeper로 전송된 'reconfig' 요청 수입니다.ProfileEvent_ZooKeeperClose(UInt64) — ZooKeeper와의 연결이 자발적으로 종료된 횟수입니다.ProfileEvent_ZooKeeperGetACL(UInt64) — ZooKeeper에 대한 'getACL' 요청 횟수입니다.ProfileEvent_ZooKeeperWatchResponse(UInt64) — ZooKeeper로부터 watch 알림을 받은 횟수입니다.ProfileEvent_ZooKeeperUserExceptions(UInt64) — 데이터와 관련된 ZooKeeper 작업 중 발생한 예외 수입니다(노드가 없거나 버전이 잘못된 경우 등).ProfileEvent_ZooKeeperHardwareExceptions(UInt64) — ZooKeeper 사용 중 네트워크(연결 손실 등)와 관련해 발생한 예외 수입니다.ProfileEvent_ZooKeeperOtherExceptions(UInt64) — ZooKeeperUserExceptions 및 ZooKeeperHardwareExceptions를 제외한, ZooKeeper 작업 중 발생한 예외 수입니다.ProfileEvent_ZooKeeperWaitMicroseconds(UInt64) — 요청 생성 후 ZooKeeper의 응답을 기다리는 데 소요된 시간(마이크로초)으로, 모든 요청 스레드에 걸쳐 합산한 값입니다.ProfileEvent_ZooKeeperBytesSent(UInt64) — ZooKeeper와 통신하는 동안 네트워크를 통해 전송된 바이트 수입니다.ProfileEvent_ZooKeeperBytesReceived(UInt64) — ZooKeeper와 통신하는 동안 네트워크를 통해 수신된 바이트 수입니다.ProfileEvent_DistributedConnectionTries(UInt64) — 분산 연결을 시도한 총 횟수입니다.ProfileEvent_DistributedConnectionUsable(UInt64) — 사용 가능한 서버(필요한 테이블이 있지만 오래되었을 수 있음)로의 성공적인 분산 연결 총 개수입니다.ProfileEvent_DistributedConnectionFailTry(UInt64) — 재시도 중 분산 연결이 실패한 총 횟수입니다.ProfileEvent_DistributedConnectionMissingTable(UInt64) — 쿼리에 필요한 테이블이 없어 분산 쿼리에서 레플리카를 제외한 횟수입니다.ProfileEvent_DistributedConnectionStaleReplica(UInt64) — 쿼리에 필요한 일부 테이블의 복제 지연이 구성된 임계값을 초과하여 분산 쿼리에서 레플리카를 거부한 횟수입니다.ProfileEvent_DistributedConnectionSkipReadOnlyReplica(UInt64) — 레플리카가 읽기 전용 상태이어서 Distributed 테이블에 INSERT하는 동안 건너뛴 레플리카 수ProfileEvent_DistributedConnectionFailAtAll(UInt64) — 모든 재시도가 끝난 후 분산 연결이 실패한 총 횟수입니다.ProfileEvent_Shards(UInt64) — 쿼리에 포함된 세그먼트 수로, 모든 분산 테이블과 테이블 함수에 걸쳐 합산한 값입니다. 단일 호스트가 여러 테이블에 나타나면 여러 번 집계됩니다. 이 수는 예상되는 전체 세그먼트 수를 나타내며,skip_unavailable_shards설정으로 건너뛴 세그먼트도 포함됩니다.ProfileEvent_HedgedRequestsChangeReplica(UInt64) — 헤지드 요청에서 레플리카 변경 타임아웃이 만료된 총 횟수입니다.ProfileEvent_SuspendSendingQueryToShard(UInt64) — async_query_sending_for_remote가 활성화된 경우 세그먼트로 쿼리 전송이 일시 중단된 총 횟수입니다.ProfileEvent_CompileFunction(UInt64) — 생성된 LLVM 코드를 컴파일하여 복잡한 표현식을 위한 융합 함수를 만들기 시작한 횟수입니다.ProfileEvent_CompiledFunctionExecute(UInt64) — 컴파일된 함수가 실행된 총 횟수입니다.ProfileEvent_CompileExpressionsMicroseconds(UInt64) — 표현식을 LLVM 코드로 컴파일하는 데 걸린 총 시간입니다.ProfileEvent_CompileExpressionsBytes(UInt64) — 표현식 컴파일에 사용되는 바이트 수입니다.ProfileEvent_ExecuteShellCommand(UInt64) — 셸 명령어가 실행된 횟수입니다.ProfileEvent_ExternalProcessingCompressedBytesTotal(UInt64) — 외부 처리(정렬/집계/조인)에서 기록한 압축 바이트 수ProfileEvent_ExternalProcessingUncompressedBytesTotal(UInt64) — 외부 처리(정렬/집계/조인)에 의해 기록된 데이터 양(비압축 상태, 압축 전)ProfileEvent_ExternalProcessingFilesTotal(UInt64) — 외부 처리(정렬/집계/조인)에 사용된 파일 수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 연산의 build 테이블에 있는 총 행 수입니다.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) — mutation 적용이 시도된 총 파트 수ProfileEvent_MutationUntouchedParts(UInt64) — 프레디케이트에 따라 완전히 건너뛰어져 뮤테이션 적용이 시도된 전체 파트 수ProfileEvent_MutationCreatedEmptyParts(UInt64) — mutation을 실행하지 않고 빈 파트로 대체된 전체 파트 수ProfileEvent_MutatedRows(UInt64) — 뮤테이션을 위해 읽은 행 수입니다. 이는 뮤테이션 전의 행 수입니다ProfileEvent_MutatedUncompressedBytes(UInt64) — 뮤테이션을 위해 읽은 비압축 바이트 수(컬럼이 메모리에 저장된 상태 기준)입니다. 이 값은 뮤테이션 전의 수치입니다.ProfileEvent_MutationAffectedRowsUpperBound(UInt64) — mutation의 영향을 받은 행 수의 상한값입니다(예: UPDATE 또는 DELETE mutation의 프레디케이트를 만족하는 행 수). 실제 수는 이보다 약간 적을 수 있습니다ProfileEvent_MutationTotalMilliseconds(UInt64) — 뮤테이션에 소요된 총 시간입니다.ProfileEvent_MutationExecuteMilliseconds(UInt64) — 뮤테이션 실행에 소요된 총 활성 시간입니다.ProfileEvent_MutationCommitMilliseconds(UInt64) — mutation 결과 커밋에 소요된 총 시간(part 이름 변경, 체크섬 검증, ZooKeeper 업데이트)ProfileEvent_MutationAllPartColumns(UInt64) — part의 모든 컬럼에 대한 mutation 작업이 생성된 횟수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 executor 작업에서 cancel()에 소요된 시간입니다.ProfileEvent_MergeMutateBackgroundExecutorTaskResetMicroseconds(UInt64) — MergeMutate executor에서 작업을 재설정하는 데 소요된 시간입니다.ProfileEvent_MergeMutateBackgroundExecutorWaitMicroseconds(UInt64) — MergeMutate executor에서 완료될 때까지 대기하는 데 소요된 시간입니다.ProfileEvent_MoveBackgroundExecutorTaskExecuteStepMicroseconds(UInt64) — Move executor 작업에서 executeStep()에 소요된 시간입니다.ProfileEvent_MoveBackgroundExecutorTaskCancelMicroseconds(UInt64) — Move executor 작업에서 cancel() 호출에 소요된 시간입니다.ProfileEvent_MoveBackgroundExecutorTaskResetMicroseconds(UInt64) — Move executor의 작업 재설정에 소요된 시간입니다.ProfileEvent_MoveBackgroundExecutorWaitMicroseconds(UInt64) — Move executor의 완료를 기다리는 데 걸린 시간입니다.ProfileEvent_FetchBackgroundExecutorTaskExecuteStepMicroseconds(UInt64) — Fetch executor 작업에서 executeStep()을 수행하는 데 소요된 시간입니다.ProfileEvent_FetchBackgroundExecutorTaskCancelMicroseconds(UInt64) — Fetch 실행기 작업에서 cancel()에 소요된 시간입니다.ProfileEvent_FetchBackgroundExecutorTaskResetMicroseconds(UInt64) — Fetch 실행기의 작업 재설정에 소요된 시간입니다.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) — 스킵 인덱스 계산에 소요된 시간ProfileEvent_MergeTreeDataWriterStatisticsCalculationMicroseconds(UInt64) — 통계 계산에 걸린 시간ProfileEvent_MergeTreeDataWriterSortingBlocksMicroseconds(UInt64) — 블록을 정렬하는 데 소요된 시간ProfileEvent_MergeTreeDataWriterMergingBlocksMicroseconds(UInt64) — 특수 MergeTree 엔진에서 입력 블록 병합에 소요된 시간ProfileEvent_MergeTreeDataWriterProjectionsCalculationMicroseconds(UInt64) — 프로젝션 계산에 걸린 시간ProfileEvent_MergeTreeDataProjectionWriterSortingBlocksMicroseconds(UInt64) — 블록을 정렬하는 데 소요된 시간(프로젝션의 경우 테이블의 정렬 키(sorting key)와 다른 키일 수 있습니다)ProfileEvent_MergeTreeDataProjectionWriterMergingBlocksMicroseconds(UInt64) — 블록을 병합하는 데 소요된 시간ProfileEvent_InsertedWideParts(UInt64) — Wide format으로 삽입된 파트의 수입니다.ProfileEvent_InsertedCompactParts(UInt64) — Compact 포맷으로 삽입된 파트의 수입니다.ProfileEvent_MergedIntoWideParts(UInt64) — Wide format으로 병합된 파트 수.ProfileEvent_MergedIntoCompactParts(UInt64) — Compact 형식으로 병합된 파트 수입니다.ProfileEvent_MergeTreeDataProjectionWriterRows(UInt64) — MergeTree 테이블의 프로젝션에 삽입된 행 수입니다.ProfileEvent_MergeTreeDataProjectionWriterUncompressedBytes(UInt64) — 컬럼이 메모리에 저장되는 형식 기준의 비압축 바이트 수로, MergeTree 테이블 프로젝션에 INSERT된 값입니다.ProfileEvent_MergeTreeDataProjectionWriterCompressedBytes(UInt64) — MergeTree 테이블 프로젝션에 삽입된 데이터를 파일 시스템에 기록한 바이트 수입니다.ProfileEvent_MergeTreeDataProjectionWriterBlocks(UInt64) — MergeTree 테이블의 프로젝션에 INSERT된 블록 수입니다. 각 블록은 레벨 0 데이터 파트를 형성합니다.ProfileEvent_MergeTreeDataProjectionWriterBlocksAlreadySorted(UInt64) — 이미 정렬된 상태로 판단된 MergeTree 테이블의 프로젝션에 INSERT된 블록 수입니다.ProfileEvent_CannotRemoveEphemeralNode(UInt64) — 임시 노드를 제거하려는 동안 오류가 발생한 횟수입니다. ZooKeeper 라이브러리 구현상 세션이 만료되면 노드가 제거되도록 보장되므로, 이는 문제가 되지 않습니다.ProfileEvent_RegexpWithMultipleNeedlesCreated(UInt64) — 여러 needle을 포함하는 정규 표현식(VectorScan 라이브러리)이 컴파일되었습니다.ProfileEvent_RegexpWithMultipleNeedlesGlobalCacheHit(UInt64) — 컴파일된 multiple needles 정규 표현식(VectorScan 라이브러리)을 전역 캐시에서 가져온 횟수입니다.ProfileEvent_RegexpWithMultipleNeedlesGlobalCacheMiss(UInt64) — 전역 캐시에서 multiple needles를 포함한 컴파일된 정규 표현식(VectorScan 라이브러리)을 가져오는 데 실패한 횟수입니다.ProfileEvent_RegexpLocalCacheHit(UInt64) — 로컬 캐시에서 컴파일된 정규 표현식을 가져온 횟수입니다.ProfileEvent_RegexpLocalCacheMiss(UInt64) — 로컬 캐시에서 컴파일된 정규 표현식을 가져오는 데 실패한 횟수입니다.ProfileEvent_ContextLock(UInt64) — Context 잠금을 획득했거나 획득을 시도한 횟수입니다. 이는 전역 잠금입니다.ProfileEvent_ContextLockWaitMicroseconds(UInt64) — Context 잠금 대기 시간(마이크로초 단위)ProfileEvent_StorageBufferFlush(UInt64) — 'Buffer' 테이블의 버퍼가 플러시된 횟수입니다.ProfileEvent_StorageBufferErrorOnFlush(UInt64) — 'Buffer' 테이블의 버퍼가 대상 테이블에 쓰는 과정에서 오류가 발생해 플러시하지 못한 횟수입니다.ProfileEvent_StorageBufferPassedAllMinThresholds(UInt64) — 'Buffer' 테이블에서 버퍼를 플러시하기 위한 최소 임계값 기준을 모두 충족한 횟수입니다.ProfileEvent_StorageBufferPassedTimeMaxThreshold(UInt64) — 'Buffer' 테이블에서 버퍼를 플러시하기 위해 최대 시간 임계값 기준에 도달한 횟수입니다.ProfileEvent_StorageBufferPassedRowsMaxThreshold(UInt64) — 'Buffer' 테이블에서 버퍼를 플러시하기 위한 최대 행 임계값 조건에 도달한 횟수입니다.ProfileEvent_StorageBufferPassedBytesMaxThreshold(UInt64) — 'Buffer' 테이블에서 버퍼를 플러시해야 하는 최대 바이트 임계값 기준에 도달한 횟수입니다.ProfileEvent_StorageBufferPassedTimeFlushThreshold(UInt64) — 'Buffer' 테이블에서 버퍼를 플러시하기 위해 시간 기준의 백그라운드 전용 임계값에 도달한 횟수입니다. 이는 전문가 전용 메트릭입니다. 이 내용을 읽고 있는데 전문가가 아니라면, 여기서 읽기를 멈추십시오.ProfileEvent_StorageBufferPassedRowsFlushThreshold(UInt64) — 'Buffer' 테이블에서 버퍼를 플러시하기 위해 행 수 기준의 백그라운드 전용 플러시 임계값에 도달한 횟수입니다. 이 메트릭은 전문가 전용입니다. 전문가가 아니라면 여기서 읽기를 중단하십시오.ProfileEvent_StorageBufferPassedBytesFlushThreshold(UInt64) — 'Buffer' 테이블에서 버퍼를 플러시하기 위해 바이트 기준의 백그라운드 전용 플러시 임계값에 도달한 횟수입니다. 이는 전문가 전용 메트릭입니다. 이 내용을 읽고 있는데 전문가가 아니라면, 더 이상 읽지 마십시오.ProfileEvent_StorageBufferLayerLockReadersWaitMilliseconds(UInt64) — 읽는 동안 Buffer 레이어를 대기한 시간입니다.ProfileEvent_StorageBufferLayerLockWritersWaitMilliseconds(UInt64) — 쓰기에 사용할 수 있는 빈 Buffer 레이어를 기다린 시간입니다(Buffer 레이어를 튜닝하는 데 사용할 수 있습니다).ProfileEvent_SystemLogErrorOnFlush(UInt64) — 시스템 로그 중 하나라도 해당 시스템 테이블로 플러시하는 데 실패한 횟수입니다. 플러시 시도는 반복됩니다.ProfileEvent_DictCacheKeysRequested(UInt64) —cache타입 딕셔너리에 대해 데이터 소스에서 요청한 키 수입니다.ProfileEvent_DictCacheKeysRequestedMiss(UInt64) — 'cache' 타입 딕셔너리에 대해 데이터 소스에 요청했지만 데이터 소스에서 찾지 못한 키 수.ProfileEvent_DictCacheKeysRequestedFound(UInt64) — 'cache' 타입 딕셔너리에 대해 데이터 소스에 요청되었고 실제로 데이터 소스에서 발견된 키 수입니다.ProfileEvent_DictCacheKeysExpired(UInt64) — 'cache' 타입 딕셔너리에서 조회한 키 중 캐시에서 찾았지만 더 이상 유효하지 않은 키의 수입니다.ProfileEvent_DictCacheKeysNotFound(UInt64) — 'cache' 타입의 딕셔너리에서 조회했으나 찾지 못한 키의 수입니다.ProfileEvent_DictCacheKeysHit(UInt64) — 'cache' 타입의 딕셔너리에서 조회한 키 중 캐시에서 찾은 개수입니다.ProfileEvent_DictCacheRequestTimeNs(UInt64) — 'cache' 타입 딕셔너리를 위해 외부 데이터 소스를 쿼리하는 데 소요된 나노초 수입니다.ProfileEvent_DictCacheRequests(UInt64) — 'cache' 타입 딕셔너리에 대해 외부 데이터 소스로 대량 요청을 보낸 횟수입니다.ProfileEvent_DictCacheLockWriteNs(UInt64) — 'cache' 타입 딕셔너리의 데이터를 업데이트하기 위해 쓰기 잠금을 대기하는 데 소요된 나노초 수입니다.ProfileEvent_DictCacheLockReadNs(UInt64) — 'cache' 타입의 딕셔너리 데이터를 조회하기 위해 읽기 잠금 획득을 기다리는 데 소요된 나노초 수입니다.ProfileEvent_DistributedSyncInsertionTimeoutExceeded(UInt64) — Distributed 테이블에 동기식으로 삽입하는 동안 세그먼트를 기다리다가 타임아웃이 발생했습니다 ('distributed_foreground_insert' = 1인 경우)ProfileEvent_DistributedAsyncInsertionFailures(UInt64) — Distributed 테이블로의 非同期 INSERT 실패 횟수('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 명령을 실행하는 처리 스레드(쿼리 및 기타 작업)에 소요된 총 시간입니다. 여기에는 메인 메모리 접근, 캐시 미스, 분기 예측 실패, 하이퍼스레딩 등으로 인해 CPU 파이프라인이 지연된 시간이 포함됩니다.ProfileEvent_SystemTimeMicroseconds(UInt64) — 쿼리 및 기타 작업을 처리하는 스레드가 OS 커널 모드에서 CPU 명령을 실행하는 데 사용한 총 시간입니다. 즉, 시스템 호출에 소요된 시간이며, 블로킹 시스템 호출 중 대기한 시간은 제외됩니다.ProfileEvent_MemoryOvercommitWaitTimeMicroseconds(UInt64) — OvercommitTracker에서 메모리가 해제될 때까지 대기한 총 시간입니다.ProfileEvent_MemoryAllocatorPurge(UInt64) — 메모리 할당자 purge 요청의 총 횟수ProfileEvent_MemoryAllocatorPurgeTimeMicroseconds(UInt64) — 메모리 할당자 퍼지 작업에 소요된 총 시간ProfileEvent_SoftPageFaults(UInt64) — 쿼리 실행 스레드에서 발생한 소프트 페이지 폴트의 수입니다. 소프트 페이지 폴트는 일반적으로 메모리 할당자 캐시에서 미스가 발생한 것을 의미하며, 이로 인해 OS에서 새로운 메모리 매핑이 필요해지고 이어서 물리 메모리 페이지가 할당됩니다.ProfileEvent_HardPageFaults(UInt64) — 쿼리 실행 스레드에서 발생한 하드 페이지 폴트의 수입니다. 값이 높다면 서버에서 swap을 비활성화하는 것을 잊었거나, 매우 높은 메모리 압박으로 인해 ClickHouse 바이너리의 메모리 페이지가 축출되었거나, 테이블 데이터에 대해 'mmap' 읽기 메서드가 성공적으로 사용되고 있음을 나타냅니다.ProfileEvent_OSIOWaitMicroseconds(UInt64) — 스레드가 IO 작업 결과를 기다린 총 시간으로, OS 관점에서 측정한 값입니다. 이는 페이지 캐시를 포함하지 않는 실제 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) — 레플리카 간 알림 처리에 소요된 시간ProfileEvent_ParallelReplicasAnnouncementMicroseconds(UInt64) — 알림 전송에 소요된 시간ProfileEvent_ParallelReplicasReadRequestMicroseconds(UInt64) — 읽기 요청에 소요된 시간ProfileEvent_ParallelReplicasReadAssignedMarks(UInt64) — 모든 레플리카에서 일관된 해시로 할당된 예정된 마크 수의 합계ProfileEvent_ParallelReplicasReadUnassignedMarks(UInt64) — 예약된 미할당 마크 수를 모든 레플리카에 걸쳐 합산한 값ProfileEvent_ParallelReplicasReadAssignedForStealingMarks(UInt64) — 일관 해시에 따라 스틸링용으로 할당된 예정된 마크 수를 모든 레플리카에서 합산한 값ProfileEvent_ParallelReplicasReadMarks(UInt64) — 해당 레플리카가 읽은 마크 수ProfileEvent_ParallelReplicasStealingByHashMicroseconds(UInt64) — hash 기반 스틸링 대상으로 할당된 세그먼트를 수집하는 데 소요된 시간ProfileEvent_ParallelReplicasProcessingPartsMicroseconds(UInt64) — 데이터 파트 처리에 소요된 시간ProfileEvent_ParallelReplicasStealingLeftoversMicroseconds(UInt64) — 고아로 남은 세그먼트를 수집하는 데 소요된 시간ProfileEvent_ParallelReplicasCollectingOwnedSegmentsMicroseconds(UInt64) — hash로 결정된 세그먼트를 수집하는 데 걸린 시간ProfileEvent_ParallelReplicasNumRequests(UInt64) — 쿼리를 시작한 노드로의 요청 수입니다.ProfileEvent_ParallelReplicasDeniedRequests(UInt64) — initiator에 대한 요청 중 완전히 거부된 요청 수ProfileEvent_CacheWarmerBytesDownloaded(UInt64) — 전용 백그라운드 스레드가 파일 시스템 캐시에 가져온 데이터 양입니다.ProfileEvent_CacheWarmerDataPartsDownloaded(UInt64) — CacheWarmer가 완전히 페치한 데이터 파트 수입니다.ProfileEvent_IgnoredColdParts(UInt64) — 설정 ignore_cold_parts_seconds를 참조하십시오. Read 쿼리가 CacheWarmer에 의해 아직 캐시로 적재되지 않은 아주 최근의 파트를 무시한 횟수입니다.ProfileEvent_PreferredWarmedUnmergedParts(UInt64) — 설정prefer_warmed_unmerged_parts_seconds를 참조하십시오. 읽기 쿼리가 CacheWarmer가 아직 캐시로 가져오지 않은 병합된 파트 대신, 캐시에 있는 오래된 병합 전 파트를 사용한 횟수입니다.ProfileEvent_PerfCPUCycles(UInt64) — 총 사이클 수입니다. CPU 주파수 스케일링 시 발생하는 현상에 유의하십시오.ProfileEvent_PerfInstructions(UInt64) — 실행이 완료된 명령어 수입니다. 주의하십시오. 이 값은 여러 요인의 영향을 받을 수 있으며, 특히 하드웨어 인터럽트 횟수의 영향을 크게 받습니다.ProfileEvent_PerfCacheReferences(UInt64) — 캐시 접근입니다. 일반적으로는 Last Level Cache 접근을 의미하지만, CPU에 따라 달라질 수 있습니다. 여기에 프리패치와 캐시 일관성 메시지가 포함될 수도 있으며, 이 역시 CPU 설계에 따라 달라집니다.ProfileEvent_PerfCacheMisses(UInt64) — 캐시 미스입니다. 일반적으로 마지막 수준 캐시(Last Level Cache) 미스를 의미합니다. 보통 캐시 미스율을 계산하기 위해 PERFCOUNTHWCACHEREFERENCES 이벤트와 함께 사용됩니다.ProfileEvent_PerfBranchInstructions(UInt64) — 리타이어된 분기 명령어 수입니다. Linux 2.6.35 이전 버전에서는 AMD 프로세서에 대해 잘못된 이벤트를 사용했습니다.ProfileEvent_PerfBranchMisses(UInt64) — 예측이 빗나간 분기 명령어 수.ProfileEvent_PerfBusCycles(UInt64) — 버스 사이클 수로, 총 사이클 수와 다를 수 있습니다.ProfileEvent_PerfStalledCyclesFrontend(UInt64) — 명령어 발행 중 지연된 사이클 수입니다.ProfileEvent_PerfStalledCyclesBackend(UInt64) — 명령어 retire 중 발생한 정지 사이클 수.ProfileEvent_PerfRefCPUCycles(UInt64) — 총 CPU 사이클 수이며, CPU 주파수 스케일링의 영향을 받지 않습니다.ProfileEvent_PerfCPUClock(UInt64) — CPU 클록, CPU별 고해상도 타이머입니다.ProfileEvent_PerfTaskClock(UInt64) — 현재 실행 중인 작업에 해당하는 클록 카운트ProfileEvent_PerfContextSwitches(UInt64) — 컨텍스트 전환 횟수ProfileEvent_PerfCPUMigrations(UInt64) — 프로세스가 새 CPU로 이동한 횟수ProfileEvent_PerfAlignmentFaults(UInt64) — 메모리 정렬 불일치 오류의 수입니다. 정렬되지 않은 메모리에 접근할 때 발생하며, 커널이 처리할 수는 있지만 성능이 저하됩니다. 이는 일부 아키텍처에서만 발생합니다(x86에서는 발생하지 않습니다).ProfileEvent_PerfEmulationFaults(UInt64) — 에뮬레이션 폴트 수입니다. 커널은 때때로 구현되지 않은 명령어를 만나면 트랩을 발생시켜 사용자 공간에서 이를 에뮬레이션합니다. 이로 인해 성능에 부정적인 영향을 줄 수 있습니다.ProfileEvent_PerfMinEnabledTime(UInt64) — 모든 이벤트에서 이벤트가 활성화된 최소 시간입니다. 이벤트 다중화의 영향을 추적하는 데 사용됩니다ProfileEvent_PerfMinEnabledRunningTime(UInt64) — 활성화된 시간이 가장 짧은 이벤트의 실행 시간입니다. 이벤트 멀티플렉싱의 양을 추적하는 데 사용됩니다ProfileEvent_PerfDataTLBReferences(UInt64) — 데이터 TLB 참조 횟수ProfileEvent_PerfDataTLBMisses(UInt64) — 데이터 TLB 미스 횟수ProfileEvent_PerfInstructionTLBReferences(UInt64) — 명령어 TLB 참조 횟수ProfileEvent_PerfInstructionTLBMisses(UInt64) — 명령어 TLB 미스 수ProfileEvent_PerfLocalMemoryReferences(UInt64) — 로컬 NUMA 노드 메모리 읽기 횟수ProfileEvent_PerfLocalMemoryMisses(UInt64) — 로컬 NUMA 노드 메모리 읽기 실패 횟수ProfileEvent_CannotWriteToWriteBufferDiscard(UInt64) — 파이프가 가득 찼거나 파이프에 쓸 수 없어서 쿼리 프로파일러 또는 signal handler가 버린 스택 트레이스 수입니다.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 storage에 대한 GET 및 HEAD 요청에 걸린 시간.ProfileEvent_S3ReadRequestsCount(UInt64) — S3 storage에 대한 GET 및 HEAD 요청 수입니다.ProfileEvent_S3ReadRequestsErrors(UInt64) — S3 storage에 대한 GET 및 HEAD 요청에서 발생한 스로틀링이 아닌 오류 수입니다.ProfileEvent_S3ReadRequestsThrottling(UInt64) — S3 storage에 대한 GET 및 HEAD 요청에서 발생한 429 및 503 오류의 수입니다.ProfileEvent_S3ReadRequestsRedirects(UInt64) — S3 storage에 대한 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) — POST, DELETE, PUT 및 PATCH 요청의 시도 횟수입니다. 초기 시도와 모든 재시도를 포함하지만, 재시도 전략에 의해 내부적으로 수행되는 재시도는 제외합니다ProfileEvent_S3WriteRequestRetryableErrors(UInt64) — 재시도 전략에서 내부적으로 수행하는 재시도를 제외한 POST, DELETE, PUT 및 PATCH 요청의 재시도 가능 오류 수ProfileEvent_DiskS3ReadMicroseconds(UInt64) — DiskS3 스토리지에 대한 GET 및 HEAD 요청에 걸린 시간.ProfileEvent_DiskS3ReadRequestsCount(UInt64) — DiskS3 스토리지로 전송된 GET 및 HEAD 요청 수.ProfileEvent_DiskS3ReadRequestsErrors(UInt64) — DiskS3 스토리지에 대한 GET 및 HEAD 요청에서 발생한 스로틀링 이외의 오류 수입니다.ProfileEvent_DiskS3ReadRequestsThrottling(UInt64) — DiskS3 스토리지에 대한 GET 및 HEAD 요청에서 발생한 429 및 503 오류의 수입니다.ProfileEvent_DiskS3ReadRequestsRedirects(UInt64) — DiskS3 저장소에 대한 GET 및 HEAD 요청에서 발생한 리디렉션 수입니다.ProfileEvent_DiskS3ReadRequestAttempts(UInt64) — 초기 시도와 모든 재시도를 포함하되, S3 재시도 전략에서 내부적으로 수행되는 재시도는 제외한 DiskS3 스토리지에 대한 GET 및 HEAD 요청 시도 횟수ProfileEvent_DiskS3ReadRequestRetryableErrors(UInt64) — S3 재시도 전략에서 내부적으로 수행한 재시도를 제외한, DiskS3 스토리지의 GET 및 HEAD 요청에 대한 재시도 가능 오류 수ProfileEvent_DiskS3WriteMicroseconds(UInt64) — DiskS3 스토리지에 대한 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 스토리지로의 POST, DELETE, PUT 및 PATCH 요청에서 발생한 리디렉션 수입니다.ProfileEvent_DiskS3WriteRequestAttempts(UInt64) — 초기 시도와 이후의 모든 재시도는 포함하지만, 재시도 전략이 내부적으로 수행한 재시도는 제외한 DiskS3 스토리지에 대한 POST, DELETE, PUT 및 PATCH 요청 시도 횟수ProfileEvent_DiskS3WriteRequestRetryableErrors(UInt64) — 재시도 전략에 의해 내부적으로 수행된 재시도를 제외한, DiskS3 스토리지에 대한 POST, DELETE, PUT 및 PATCH 요청의 재시도 가능한 오류 수ProfileEvent_S3DeleteObjects(UInt64) — S3 API DeleteObject(s) 호출 횟수.ProfileEvent_S3CopyObject(UInt64) — S3 API CopyObject 호출 수.ProfileEvent_S3ListObjects(UInt64) — S3 API ListObjects 호출 횟수입니다.ProfileEvent_S3HeadObject(UInt64) — S3 API HeadObject 호출 횟수입니다.ProfileEvent_S3GetObjectTagging(UInt64) — S3 API GetObjectTagging 호출 횟수.ProfileEvent_S3CreateMultipartUpload(UInt64) — S3 API CreateMultipartUpload 호출 수입니다.ProfileEvent_S3UploadPartCopy(UInt64) — S3 API UploadPartCopy 호출 횟수입니다.ProfileEvent_S3UploadPart(UInt64) — S3 API UploadPart 호출 횟수입니다.ProfileEvent_S3AbortMultipartUpload(UInt64) — S3 API AbortMultipartUpload 호출 수입니다.ProfileEvent_S3CompleteMultipartUpload(UInt64) — S3 API의 CompleteMultipartUpload 호출 횟수입니다.ProfileEvent_S3PutObject(UInt64) — S3 API PutObject 호출 횟수.ProfileEvent_S3GetObject(UInt64) — S3 API GetObject 호출 횟수.ProfileEvent_DiskS3DeleteObjects(UInt64) — DiskS3 API DeleteObject(s) 호출 수입니다.ProfileEvent_DiskS3CopyObject(UInt64) — DiskS3 API의 CopyObject 호출 횟수입니다.ProfileEvent_DiskS3ListObjects(UInt64) — DiskS3 API ListObjects 호출 수입니다.ProfileEvent_DiskS3HeadObject(UInt64) — DiskS3 API의 HeadObject 호출 횟수입니다.ProfileEvent_DiskS3GetObjectTagging(UInt64) — DiskS3 API의 GetObjectTagging 호출 횟수.ProfileEvent_DiskS3CreateMultipartUpload(UInt64) — DiskS3 API의 CreateMultipartUpload 호출 횟수입니다.ProfileEvent_DiskS3UploadPartCopy(UInt64) — DiskS3 APIUploadPartCopy호출 수입니다.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) — 디스크 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 APIListObjects호출 수.ProfileEvent_DiskAzureDeleteObjects(UInt64) — Azure Blob Storage API DeleteObject(s) 호출 횟수입니다.ProfileEvent_DiskAzureGetProperties(UInt64) — Disk Azure Blob Storage API GetProperties 호출 횟수입니다.ProfileEvent_DiskAzureCreateContainer(UInt64) — 디스크 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) — 내부 읽기 버퍼를 대기하는 데 소요된 시간(캐시 대기 포함)ProfileEvent_CachedReadBufferPredownloadedFromSourceMicroseconds(UInt64) — 사전 다운로드를 위해 파일 시스템 캐시 소스(원격 파일 시스템 등)에서 읽는 데 걸린 시간ProfileEvent_CachedReadBufferReadFromCacheMicroseconds(UInt64) — 파일 시스템 캐시에서 읽는 시간ProfileEvent_CachedReadBufferReadFromSourceBytes(UInt64) — 파일 시스템 캐시 소스(원격 파일 시스템 등)에서 읽은 바이트 수ProfileEvent_CachedReadBufferPredownloadedFromSourceBytes(UInt64) — 사전 다운로드를 위해 파일 시스템 캐시 소스(원격 fs 등)에서 읽은 바이트 수ProfileEvent_CachedReadBufferReadFromCacheBytes(UInt64) — 파일 시스템 캐시에서 읽어온 바이트 수ProfileEvent_CachedReadBufferPredownloadedBytes(UInt64) — 파일 시스템 캐시 소스에서 읽은 바이트 수입니다. 캐시 세그먼트는 전체가 왼쪽에서 오른쪽으로 읽히므로, 필요한 데이터에 도달하기 위해 현재 작업과 무관한 세그먼트의 일부를 미리 다운로드해야 할 수 있습니다.ProfileEvent_CachedReadBufferCacheWriteBytes(UInt64) — 소스(원격 fs 등)에서 파일 시스템 캐시로 쓰인 바이트 수ProfileEvent_CachedReadBufferCacheWriteMicroseconds(UInt64) — 파일 시스템 캐시에 데이터를 기록하는 데 소요된 시간ProfileEvent_CachedReadBufferCreateBufferMicroseconds(UInt64) — 버퍼 준비 시간ProfileEvent_CachedWriteBufferCacheWriteBytes(UInt64) — 소스(원격 파일 시스템 등)에서 파일 시스템 캐시로 기록된 바이트 수ProfileEvent_CachedWriteBufferCacheWriteMicroseconds(UInt64) — 파일 시스템 캐시에 데이터를 기록하는 데 소요된 시간ProfileEvent_FilesystemCacheLoadMetadataMicroseconds(UInt64) — 파일 시스템 캐시 메타데이터를 로드하는 데 걸린 시간ProfileEvent_FilesystemCacheEvictedBytes(UInt64) — 파일 시스템 캐시에서 제거된 바이트 수ProfileEvent_FilesystemCacheCreatedKeyDirectories(UInt64) — 생성된 키 디렉터리의 수ProfileEvent_FilesystemCacheEvictedFileSegments(UInt64) — 파일 시스템 캐시에서 제거된 파일 세그먼트의 수ProfileEvent_FilesystemCacheEvictedFileSegmentsDuringPriorityIncrease(UInt64) — 파일 세그먼트의 우선순위를 높일 때 파일 시스템 캐시에서 축출된 파일 세그먼트 수(SLRU 캐시 정책에 적용됨)ProfileEvent_FilesystemCacheBackgroundDownloadQueuePush(UInt64) — 파일 시스템 캐시에서 백그라운드 다운로드 대상으로 전송된 파일 세그먼트 수ProfileEvent_FilesystemCacheEvictionSkippedFileSegments(UInt64) — 해제할 수 없는 상태여서 제거(eviction) 대상에서 제외된 파일 세그먼트 수ProfileEvent_FilesystemCacheEvictionSkippedEvictingFileSegments(UInt64) — 축출 진행 중 상태여서 축출을 건너뛴 파일 세그먼트 수ProfileEvent_FilesystemCacheEvictionSkippedMovingFileSegments(UInt64) — moving 상태여서 축출에서 제외된 파일 세그먼트 수ProfileEvent_FilesystemCacheEvictionTries(UInt64) — 파일 시스템 캐시 축출 시도 횟수ProfileEvent_FilesystemCacheEvictionReusedIterator(UInt64) — 파일 시스템 캐시 반복자의 재사용 횟수ProfileEvent_FilesystemCacheLockKeyMicroseconds(UInt64) — 캐시 키를 잠그는 데 걸린 시간ProfileEvent_FilesystemCacheLockMetadataMicroseconds(UInt64) — 파일 시스템 캐시 메타데이터 잠금에 걸린 시간ProfileEvent_FilesystemCachePriorityWriteLockMicroseconds(UInt64) — 우선순위 큐에 쓰기 위해 파일 시스템 캐시를 잠그는 데 걸린 시간ProfileEvent_FilesystemCachePriorityReadLockMicroseconds(UInt64) — 우선순위 큐에서 읽기 시 파일 시스템 캐시를 잠그는 데 걸린 시간ProfileEvent_FilesystemCacheStateLockMicroseconds(UInt64) — 상태 잠금을 위한 파일 시스템 캐시 잠금 시간ProfileEvent_FilesystemCacheReserveMicroseconds(UInt64) — 파일 시스템 캐시 공간 예약에 걸린 시간ProfileEvent_FilesystemCacheReserveAttempts(UInt64) — 파일 시스템 캐시 공간 예약 시도 횟수ProfileEvent_FilesystemCacheEvictMicroseconds(UInt64) — 파일 시스템 캐시 축출 시간ProfileEvent_FilesystemCacheGetOrSetMicroseconds(UInt64) — 파일 시스템 캐시 getOrSet() 소요 시간ProfileEvent_FilesystemCacheGetMicroseconds(UInt64) — 파일 시스템 캐시 get() 소요 시간ProfileEvent_FilesystemCacheBackgroundEvictedFileSegments(UInt64) — 백그라운드 스레드에 의해 제거된 파일 세그먼트 수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) — 파일 세그먼트 홀더의 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) — 원격 파일 시스템에서 비동기 읽기로 수행한 사전 읽기 횟수ProfileEvent_RemoteFSCancelledPrefetches(UInt64) — 취소된 사전 읽기 횟수(읽기 위치 변경(seek)으로 인해)ProfileEvent_RemoteFSUnusedPrefetches(UInt64) — 버퍼가 소멸될 때 아직 대기 중인 사전 읽기 수ProfileEvent_RemoteFSPrefetchedReads(UInt64) — 미리 읽기(prefetch) 버퍼에서 읽은 횟수ProfileEvent_RemoteFSPrefetchedBytes(UInt64) — 미리 읽기(prefetch) 버퍼의 바이트 수ProfileEvent_RemoteFSUnprefetchedReads(UInt64) — 미리 읽기(prefetch)되지 않은 버퍼에서의 읽기 횟수ProfileEvent_RemoteFSUnprefetchedBytes(UInt64) — 미리 읽기(prefetch)되지 않은 버퍼의 바이트 수ProfileEvent_RemoteFSLazySeeks(UInt64) — 지연 탐색 횟수ProfileEvent_RemoteFSSeeksWithReset(UInt64) — 새 연결이 생성되는 seek 횟수ProfileEvent_RemoteFSBuffers(UInt64) — 원격 파일 시스템에서 비동기적으로 읽기 위해 생성된 버퍼 개수ProfileEvent_MergeTreePrefetchedReadPoolInit(UInt64) — MergeTreePrefetchedReadPool에서 작업 준비에 소요된 시간ProfileEvent_WaitPrefetchTaskMicroseconds(UInt64) — 미리 읽기(prefetch) 리더를 기다리는 데 걸린 시간ProfileEvent_ThreadpoolReaderTaskMicroseconds(UInt64) — 비동기 읽기 중 데이터를 가져오는 데 걸린 시간ProfileEvent_ThreadpoolReaderPrepareMicroseconds(UInt64) — 준비 작업에 소요된 시간(예: reader 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) — 새 연결(s3, http)을 유발하는 seek 횟수ProfileEvent_SleepFunctionCalls(UInt64) — sleep 함수(sleep, sleepEachRow)가 호출된 횟수입니다.ProfileEvent_SleepFunctionMicroseconds(UInt64) — sleep function (sleep, sleepEachRow)에 설정된 대기 시간입니다.ProfileEvent_SleepFunctionElapsedMicroseconds(UInt64) — sleep function(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 레이아웃 파트가 백그라운드 작업으로 정리된 횟수ProfileEvent_MetadataFromKeeperBackgroundCleanupErrors(UInt64) — 백그라운드 정리 작업 중 오류가 발생한 횟수ProfileEvent_BlobKillerThreadRuns(UInt64) — BlobKiller 스레드가 실행된 횟수ProfileEvent_BlobKillerThreadLockedBlobs(UInt64) — 메타데이터 저장소에서 반환된 blob 수ProfileEvent_BlobKillerThreadRemoveTasks(UInt64) — BlobKiller에서 생성한 제거 작업 수ProfileEvent_BlobKillerThreadRemovedBlobs(UInt64) — BlobKiller가 제거한 blob 수ProfileEvent_BlobKillerThreadRecordedBlobs(UInt64) — BlobKiller에 의해 제거된 것으로 메타데이터 스토리지에 기록된 blob의 수ProfileEvent_BlobKillerThreadLockBlobsErrors(UInt64) — BlobKiller 실행 중 발생한 blob 잠금 오류의 수ProfileEvent_BlobKillerThreadRemoveBlobsErrors(UInt64) — BlobKiller 실행 중 blob 삭제에서 발생한 오류 수ProfileEvent_BlobKillerThreadRecordBlobsErrors(UInt64) — BlobKiller 실행 중 blob 기록 과정에서 발생한 오류 수ProfileEvent_BlobCopierThreadRuns(UInt64) — BlobCopier 스레드 실행 수ProfileEvent_BlobCopierThreadLockedBlobs(UInt64) — 메타데이터 스토리지에서 반환된 blob의 개수ProfileEvent_BlobCopierThreadReplicatedBlobs(UInt64) — BlobCopier가 복제한 blob의 수ProfileEvent_BlobCopierThreadRecordedBlobs(UInt64) — 메타데이터 저장소에 BlobCopier에 의한 복제 기록이 저장된 blob 수ProfileEvent_BlobCopierThreadLockBlobsErrors(UInt64) — BlobCopier 실행 중 발생한 blob 잠금 오류의 수ProfileEvent_BlobCopierThreadReplicateBlobsErrors(UInt64) — BlobCopier 실행 중 발생한 blob 복제 오류의 수ProfileEvent_BlobCopierThreadRecordBlobsErrors(UInt64) — BlobCopier 실행 중 blob 기록 과정에서 발생한 오류 수ProfileEvent_SharedMergeTreeMetadataCacheHintLoadedFromCache(UInt64) — Keeper에 접근하지 않고 메타데이터 캐시 힌트를 찾은 횟수ProfileEvent_KafkaRebalanceRevocations(UInt64) — 파티션 할당 취소 횟수(consumer group 리밸런싱의 첫 단계)ProfileEvent_KafkaRebalanceAssignments(UInt64) — 파티션 할당 수(컨슈머 그룹 리밸런싱의 최종 단계)ProfileEvent_KafkaRebalanceErrors(UInt64) — 실패한 컨슈머 그룹 리밸런스 수ProfileEvent_KafkaMessagesPolled(UInt64) — librdkafka에서 ClickHouse로 가져오기 위해 폴링한 Kafka 메시지 수ProfileEvent_KafkaMessagesRead(UInt64) — ClickHouse가 이미 처리한 Kafka 메시지 수ProfileEvent_KafkaMessagesFailed(UInt64) — ClickHouse가 파싱하지 못한 Kafka 메시지 수ProfileEvent_KafkaRowsRead(UInt64) — Kafka 메시지에서 파싱된 행 수ProfileEvent_KafkaRowsRejected(UInt64) — 파싱된 행 중 이후에 거부된 행의 수입니다(리밸런스, 오류 또는 이와 유사한 이유로 인해). 해당 행은 리밸런스 후 다시 소비됩니다.ProfileEvent_KafkaDirectReads(UInt64) — 서버 시작 이후 Kafka 테이블에 대해 직접 수행된 SELECT 횟수ProfileEvent_KafkaBackgroundReads(UInt64) — 서버 시작 이후 Kafka에서 materialized view를 채우는 데 사용된 백그라운드 읽기 수ProfileEvent_KafkaCommits(UInt64) — Kafka에 대해 소비한 오프셋을 성공적으로 커밋한 횟수(일반적으로 KafkaBackgroundReads와 동일해야 합니다)ProfileEvent_KafkaCommitFailures(UInt64) — Kafka에 대해 소비된 오프셋의 커밋이 실패한 횟수(일반적으로 일부 데이터가 중복되었음을 나타냅니다)ProfileEvent_KafkaConsumerErrors(UInt64) — poll 수행 중 librdkafka가 보고한 오류 수ProfileEvent_KafkaMVNotReady(UInt64) — 준비되지 않은 materialized view로 데이터를 스트리밍하는 데 실패한 횟수ProfileEvent_KafkaWrites(UInt64) — Kafka 테이블에 대한 쓰기(삽입) 수ProfileEvent_KafkaRowsWritten(UInt64) — Kafka 테이블에 삽입된 행의 수ProfileEvent_KafkaProducerFlushes(UInt64) — Kafka producer의 명시적 플러시 횟수ProfileEvent_KafkaMessagesProduced(UInt64) — Kafka에 전송된 메시지 수ProfileEvent_KafkaProducerErrors(UInt64) — Kafka로 메시지를 전송하는 동안 발생한 오류 수ProfileEvent_ScalarSubqueriesGlobalCacheHit(UInt64) — 전역 캐시를 사용해 스칼라 서브쿼리에서 읽은 횟수ProfileEvent_ScalarSubqueriesLocalCacheHit(UInt64) — 스칼라 서브쿼리의 읽기에 로컬 캐시를 사용한 횟수ProfileEvent_ScalarSubqueriesCacheMiss(UInt64) — 스칼라 서브쿼리에서 값을 읽을 때 캐시되지 않아 전체를 다시 계산해야 했던 횟수ProfileEvent_SchemaInferenceCacheHits(UInt64) — 요청된 source를 schema 캐시에서 찾은 횟수ProfileEvent_SchemaInferenceCacheSchemaHits(UInt64) — 스키마 추론 중 schema cache에서 schema가 발견된 횟수ProfileEvent_SchemaInferenceCacheNumRowsHits(UInt64) — 파일에서 개수를 계산할 때 schema cache에서 행 수를 찾은 횟수ProfileEvent_SchemaInferenceCacheMisses(UInt64) — 요청한 소스가 schema cache에 존재하지 않은 횟수ProfileEvent_SchemaInferenceCacheSchemaMisses(UInt64) — 스키마 추론 중 요청된 source는 캐시에 있지만 schema는 캐시에 없는 횟수ProfileEvent_SchemaInferenceCacheNumRowsMisses(UInt64) — 요청된 소스는 캐시에 있지만 파일에서 개수를 계산할 때 행 수는 캐시에 없는 횟수ProfileEvent_SchemaInferenceCacheEvictions(UInt64) — 오버플로로 인해 캐시에서 schema가 제거된 횟수ProfileEvent_SchemaInferenceCacheInvalidations(UInt64) — 데이터 변경으로 인해 캐시된 schema가 무효화된 횟수ProfileEvent_KeeperPacketsSent(UInt64) — Keeper 서버에서 전송한 패킷 수ProfileEvent_KeeperPacketsReceived(UInt64) — Keeper 서버가 수신한 패킷 수ProfileEvent_KeeperRequestTotal(UInt64) — Keeper 서버의 전체 요청 수ProfileEvent_KeeperRequestTotalWithSubrequests(UInt64) — 멀티 요청 내 각 하위 요청을 포함해 집계한 Keeper 서버의 총 요청 수ProfileEvent_KeeperLatency(UInt64) — Keeper 지연 시간ProfileEvent_KeeperTotalElapsedMicroseconds(UInt64) — 단일 요청의 Keeper 총 지연 시간ProfileEvent_KeeperProcessElapsedMicroseconds(UInt64) — 단일 요청의 Keeper commit 지연 시간ProfileEvent_KeeperPreprocessElapsedMicroseconds(UInt64) — 단일 요청의 Keeper 전처리 지연 시간ProfileEvent_KeeperStorageLockWaitMicroseconds(UInt64) — Keeper 저장소 잠금 획득을 위해 대기한 시간ProfileEvent_KeeperStorageSharedLockWaitMicroseconds(UInt64) — Keeper 스토리지 공유 잠금을 획득할 때까지 대기한 시간ProfileEvent_KeeperChangelogLockWaitMicroseconds(UInt64) — Keeper 변경 로그 잠금을 획득하기 위해 대기한 시간ProfileEvent_KeeperServerWriteLockWaitMicroseconds(UInt64) — Keeper 서버의 쓰기 잠금을 획득할 때까지 대기한 시간ProfileEvent_KeeperSessionCallbackLockWaitMicroseconds(UInt64) — Keeper 세션 콜백 잠금을 획득할 때까지 대기한 시간ProfileEvent_KeeperReadRequestQueueLockWaitMicroseconds(UInt64) — Keeper 읽기 요청 큐 잠금을 획득하는 데 대기한 시간ProfileEvent_KeeperProcessAndResponsesLockWaitMicroseconds(UInt64) — Keeper 프로세스 및 응답 잠금을 획득하기 위해 대기한 시간ProfileEvent_KeeperCommitWaitElapsedMicroseconds(UInt64) — 특정 로그가 커밋될 때까지 기다리는 데 걸린 시간ProfileEvent_KeeperBatchMaxCount(UInt64) — 배치 크기가 개수에 따라 제한된 횟수ProfileEvent_KeeperBatchMaxTotalSize(UInt64) — 배치의 크기가 총 바이트 수에 의해 제한된 횟수ProfileEvent_KeeperReadBatchCount(UInt64) — Keeper가 처리한 읽기 요청 배치 수ProfileEvent_KeeperReadBatchTotalRequests(UInt64) — Keeper에서 배치로 처리된 읽기 요청의 총 개수ProfileEvent_KeeperCommits(UInt64) — 성공적으로 완료된 커밋 수ProfileEvent_KeeperCommitsFailed(UInt64) — 커밋 실패 횟수ProfileEvent_KeeperSnapshotCreations(UInt64) — 스냅샷 생성 횟수ProfileEvent_KeeperSnapshotCreationsFailed(UInt64) — 스냅샷 생성에 실패한 횟수ProfileEvent_KeeperSnapshotApplys(UInt64) — 스냅샷 적용 횟수ProfileEvent_KeeperSnapshotApplysFailed(UInt64) — 스냅샷 적용에 실패한 횟수ProfileEvent_KeeperReadSnapshot(UInt64) — 완료된 스냅샷 읽기 횟수ProfileEvent_KeeperReadSnapshotObject(UInt64) — 팔로워에게 전송된 스냅샷 객체 수ProfileEvent_KeeperReadSnapshotFailed(UInt64) — 스냅샷 읽기 실패 횟수ProfileEvent_KeeperSnapshotRemoteLoaderErrors(UInt64) — 팔로워에 스냅샷을 제공하는 과정에서 RemoteSnapshotLoader에 발생한 원격 읽기 오류 수ProfileEvent_KeeperSaveSnapshotObject(UInt64) — 리더로부터 받은 스냅샷 객체의 수ProfileEvent_KeeperSaveSnapshotFailed(UInt64) — 스냅샷 저장 실패 횟수ProfileEvent_KeeperSaveSnapshot(UInt64) — 스냅샷 저장 횟수ProfileEvent_KeeperCreateRequest(UInt64) — 생성 요청 횟수ProfileEvent_KeeperRemoveRequest(UInt64) — remove 요청 횟수ProfileEvent_KeeperSetRequest(UInt64) — Set 요청 수ProfileEvent_KeeperReconfigRequest(UInt64) — 재구성 요청 개수ProfileEvent_KeeperCheckRequest(UInt64) — 확인 요청 수ProfileEvent_KeeperMultiRequest(UInt64) — 다중 요청 수ProfileEvent_KeeperMultiReadRequest(UInt64) — 다중 읽기 요청 수ProfileEvent_KeeperGetRequest(UInt64) — get 요청의 수ProfileEvent_KeeperListRequest(UInt64) — 목록 요청 횟수ProfileEvent_KeeperListRecursiveRequest(UInt64) — 하위 노드를 재귀적으로 조회하는 요청 수ProfileEvent_KeeperExistsRequest(UInt64) — 존재 여부 확인 요청 수ProfileEvent_KeeperSetWatchesRequest(UInt64) — watch 설정 요청 수ProfileEvent_KeeperAddWatchRequest(UInt64) — watch 추가 요청 횟수ProfileEvent_KeeperRemoveWatchRequest(UInt64) — watch 제거 요청 횟수ProfileEvent_KeeperCheckWatchRequest(UInt64) — watch 제거 요청 횟수ProfileEvent_KeeperRequestRejectedDueToSoftMemoryLimitCount(UInt64) — 소프트 메모리 한도를 초과하여 거부된 요청 수ProfileEvent_KeeperStaleRequestsSkipped(UInt64) — 세션이 더 이상 유효하지 않아 건너뛴 Keeper 요청 수ProfileEvent_KeeperLiveSessionsLockWaitMicroseconds(UInt64) — Keeper live sessions 잠금을 획득할 때까지 대기한 시간ProfileEvent_OverflowBreak(UInt64) — 설정 '*_overflow_mode' = 'break'일 때 쿼리 복잡도 제한으로 데이터 처리가 중단되어 결과가 불완전해진 횟수입니다.ProfileEvent_OverflowThrow(UInt64) — 설정 '*_overflow_mode' = 'throw'에서 쿼리 복잡도 제한으로 인해 데이터 처리가 취소되고 예외가 발생한 횟수입니다.ProfileEvent_OverflowAny(UInt64) — 근사 GROUP BY가 적용된 횟수입니다. 즉, 집계가 처음 'max_rows_to_group_by'개의 고유 키에 대해서만 수행되고 'group_by_overflow_mode' = 'any'로 인해 나머지 키는 무시된 경우입니다.ProfileEvent_S3QueueSetFileProcessingMicroseconds(UInt64) — 파일을 처리 중으로 설정하는 데 소요된 시간ProfileEvent_S3QueueSetFileProcessedMicroseconds(UInt64) — 파일을 처리 완료로 설정하는 데 소요된 시간ProfileEvent_S3QueueSetFileFailedMicroseconds(UInt64) — 파일을 실패로 표시하는 데 소요된 시간ProfileEvent_ObjectStorageQueueFailedFiles(UInt64) — 처리에 실패한 파일 수ProfileEvent_ObjectStorageQueueProcessedFiles(UInt64) — 처리된 파일의 수ProfileEvent_ObjectStorageQueueCleanupMaxSetSizeOrTTLMicroseconds(UInt64) — 파일을 실패 상태로 설정하는 데 소요된 시간ProfileEvent_ObjectStorageQueuePullMicroseconds(UInt64) — 파일 데이터 읽기에 소요된 시간ProfileEvent_ObjectStorageQueueFailedToBatchSetProcessing(UInt64) — 처리 중 상태를 배치로 설정하는 요청이 실패한 횟수ProfileEvent_ObjectStorageQueueTrySetProcessingRequests(UInt64) — 처리 중 상태로 설정 요청을 시도한 횟수ProfileEvent_ObjectStorageQueueTrySetProcessingSucceeded(UInt64) — 파일을 processing 상태로 성공적으로 설정한 횟수ProfileEvent_ObjectStorageQueueTrySetProcessingFailed(UInt64) — 파일을 처리 중 상태로 설정하려 했지만 실패한 횟수ProfileEvent_ObjectStorageQueueListedFiles(UInt64) — StorageS3(Azure)Queue에 나열된 파일의 수ProfileEvent_ObjectStorageQueueFilteredFiles(UInt64) — StorageS3(Azure)Queue에서 필터링된 파일 수ProfileEvent_ObjectStorageQueueReadFiles(UInt64) — 읽은 파일 수(실제로 삽입된 파일 수와 일치하지 않음)ProfileEvent_ObjectStorageQueueReadRows(UInt64) — 읽은 행 수(실제로 삽입된 행 수와 일치하지 않음)ProfileEvent_ObjectStorageQueueReadBytes(UInt64) — 읽은 바이트 수(실제로 삽입된 바이트 수와는 다름)ProfileEvent_ObjectStorageQueueExceptionsDuringRead(UInt64) — S3(Azure)Queue 읽기 중 발생한 예외 수ProfileEvent_ObjectStorageQueueExceptionsDuringInsert(UInt64) — S3(Azure)Queue에 삽입하는 과정에서 발생한 예외 수ProfileEvent_ObjectStorageQueueMovedObjects(UInt64) —after_processing = move의 일부로 이동된 객체 수ProfileEvent_ObjectStorageQueueRemovedObjects(UInt64) — after_processing = delete 설정에 따라 제거된 객체 수ProfileEvent_ObjectStorageQueueTaggedObjects(UInt64) — after_processing = tag의 일부로 태그된 객체 수ProfileEvent_ObjectStorageQueueInsertIterations(UInt64) — 삽입 반복 횟수ProfileEvent_ObjectStorageQueueCommitRequests(UInt64) — 파일을 실패 또는 처리 완료 상태로 커밋하기 위한 Keeper 요청 수ProfileEvent_ObjectStorageQueueSuccessfulCommits(UInt64) — 성공적으로 완료된 Keeper 커밋 수ProfileEvent_ObjectStorageQueueUnsuccessfulCommits(UInt64) — 실패한 Keeper 커밋 수ProfileEvent_ObjectStorageQueueCancelledFiles(UInt64) — StorageS3(Azure)Queue에서 취소된 파일의 수ProfileEvent_ObjectStorageQueueProcessedRows(UInt64) — StorageS3(Azure)Queue에서 처리된 행의 수ProfileEvent_ObjectStorageListedObjects(UInt64) — 필터링 전에 객체 스토리지 목록 조회 API에서 반환된 전체 객체 수입니다.ProfileEvent_ObjectStorageGlobFilteredObjects(UInt64) — glob 또는 Regex 패턴과 일치하지 않아 목록 조회 중 건너뛴 객체 수입니다.ProfileEvent_ObjectStoragePredicateFilteredObjects(UInt64) — _path/_file의 가상 컬럼 프레디케이트 필터링으로 제외된 객체 수입니다.ProfileEvent_ObjectStorageReadObjects(UInt64) — 객체 스토리지 소스에서 읽기 위해 실제로 연 객체 수입니다.ProfileEvent_ServerStartupMilliseconds(UInt64) — 서버 시작 후 소켓 수신 대기를 시작할 때까지의 경과 시간(밀리초)ProfileEvent_IOUringSQEsSubmitted(UInt64) — 제출된 io_uring SQE의 총 개수ProfileEvent_IOUringSQEsResubmitsAsync(UInt64) — 수행된 비동기 io_uring SQE 재제출의 총횟수ProfileEvent_IOUringSQEsResubmitsSync(UInt64) — 수행된 동기식 io_uring SQE 재제출의 총횟수ProfileEvent_IOUringCQEsCompleted(UInt64) — 성공적으로 완료된 io_uring CQE의 총 개수ProfileEvent_IOUringCQEsFailed(UInt64) — 실패 상태로 완료된 io_uring CQE의 총개수ProfileEvent_BackupsOpenedForRead(UInt64) — 읽기용으로 열린 백업 수ProfileEvent_BackupsOpenedForWrite(UInt64) — 쓰기 위해 열린 백업 수ProfileEvent_BackupsOpenedForUnlock(UInt64) — 잠금 해제를 위해 열린 백업 개수ProfileEvent_BackupReadMetadataMicroseconds(UInt64) —.backup파일에서 백업 메타데이터를 읽는 데 걸린 시간ProfileEvent_BackupWriteMetadataMicroseconds(UInt64) —.backup파일에 백업 메타데이터를 기록하는 데 소요된 시간ProfileEvent_BackupEntriesCollectorMicroseconds(UInt64) — 백업 항목 생성에 소요된 시간ProfileEvent_BackupEntriesCollectorForTablesDataMicroseconds(UInt64) — 테이블 데이터용 백업 항목을 생성하는 데 소요된 시간ProfileEvent_BackupEntriesCollectorRunPostTasksMicroseconds(UInt64) — 백업 항목 생성 후 후속 작업 실행에 소요된 시간ProfileEvent_BackupPreparingFileInfosMicroseconds(UInt64) — 백업 항목에 대한 파일 정보 준비에 소요된 시간ProfileEvent_BackupReadLocalFilesToCalculateChecksums(UInt64) — 백업 항목의 체크섬 계산을 위해 로컬에서 읽은 파일 수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 서버로 데이터 파트 집합(MergeTree 테이블용)에 대한 알림을 전송한 횟수입니다. 원격 서버 측에서 측정됩니다.ProfileEvent_ReadTaskRequestsSentElapsedMicroseconds(UInt64) — 읽기 작업을 선택하기 위해 원격 서버에서 initiator 서버로 다시 요청한 콜백에 소요된 시간입니다(s3Cluster테이블 함수 및 유사한 경우). 원격 서버 측에서 측정됩니다.ProfileEvent_MergeTreeReadTaskRequestsSentElapsedMicroseconds(UInt64) — 읽기 작업을 선택하기 위해 원격 서버가 initiator 서버로 다시 요청하는 콜백에 소요된 시간입니다(MergeTree 테이블 기준). 원격 서버 측에서 측정됩니다.ProfileEvent_MergeTreeAllRangesAnnouncementsSentElapsedMicroseconds(UInt64) — 데이터 파트 집합에 대한 알림을 원격 서버에서 initiator 서버로 보내는 데 소요된 시간입니다(MergeTree 테이블). 원격 서버 측에서 측정됩니다.ProfileEvent_MergerMutatorsGetPartsForMergeElapsedMicroseconds(UInt64) — 데이터 파트의 스냅샷을 가져와 이를 바탕으로 범위를 구성하는 데 소요된 시간입니다.ProfileEvent_MergerMutatorPrepareRangesForMergeElapsedMicroseconds(UInt64) — merge 프레디케이트에 따라 병합 가능한 파트 범위를 준비하는 데 소요된 시간입니다.ProfileEvent_MergerMutatorSelectPartsForMergeElapsedMicroseconds(UInt64) — 병합 가능한 범위에서 파트를 선택하는 데 걸린 시간입니다.ProfileEvent_MergerMutatorRangesForMergeCount(UInt64) — 병합 후보 범위의 개수ProfileEvent_MergerMutatorPartsInRangesForMergeCount(UInt64) — 병합 대상 후보 파트 수ProfileEvent_MergerMutatorSelectRangePartsCount(UInt64) — 병합용으로 선택된 범위의 파트 수ProfileEvent_ConnectionPoolIsFullMicroseconds(UInt64) — 연결 풀의 슬롯을 기다리는 데 소요된 총 시간입니다.ProfileEvent_AsyncLoaderWaitMicroseconds(UInt64) — 쿼리가 비동기 로더 작업을 기다리는 데 소요된 총 시간입니다.ProfileEvent_DistrCacheServerSwitches(UInt64) — 분산 캐시 읽기 버퍼 이벤트. read/write-through cache에서 분산 캐시 서버 간 전환 횟수ProfileEvent_DistrCacheReadMicroseconds(UInt64) — 분산 캐시 읽기 버퍼 이벤트. 분산 캐시에서 읽는 데 걸린 시간ProfileEvent_DistrCacheFallbackReadMicroseconds(UInt64) — 분산 캐시 읽기 버퍼 이벤트. 분산 캐시 대신 대체 버퍼에서 읽는 데 소요된 시간입니다.ProfileEvent_DistrCachePrecomputeRangesMicroseconds(UInt64) — 분산 캐시 읽기 버퍼 이벤트. 읽기 범위를 미리 계산하는 데 소요된 시간ProfileEvent_DistrCacheNextImplMicroseconds(UInt64) — 분산 캐시 읽기 버퍼 이벤트.ReadBufferFromDistributedCache::nextImpl에 소요된 시간ProfileEvent_DistrCacheStartRangeMicroseconds(UInt64) — 분산 캐시 읽기 버퍼 이벤트. 분산 캐시로 새 읽기 범위를 시작하는 데 걸린 시간ProfileEvent_DistrCacheRangeChange(UInt64) — 분산 캐시 읽기 버퍼 이벤트. seek 또는 last_position 변경으로 인해 읽기 범위를 변경한 횟수ProfileEvent_DistrCacheRangeResetBackward(UInt64) — 분산 캐시 읽기 버퍼 이벤트. seek/last_position 변경으로 인해 읽기 범위를 재설정한 횟수입니다.ProfileEvent_DistrCacheRangeResetForward(UInt64) — 분산 캐시 읽기 버퍼 이벤트. seek/last_position 변경으로 인해 읽기 범위를 재설정한 횟수입니다.ProfileEvent_DistrCacheReconnectsAfterTimeout(UInt64) — 분산 캐시 읽기 버퍼 이벤트입니다. 타임아웃 후 재연결 횟수입니다ProfileEvent_DistrCacheServerUpdates(UInt64) — 분산 캐시 이벤트입니다. 읽기 또는 쓰기 중 해시로 선택된 서버가 변경되어(예: 서버 등록 해제) 발생한 서버 전환 횟수입니다.ProfileEvent_DistrCacheReadErrors(UInt64) — 분산 캐시 읽기 버퍼 이벤트. 읽기 작업 중 발생한 분산 캐시 오류 수ProfileEvent_DistrCacheWriteErrors(UInt64) — 분산 캐시 쓰기 버퍼 이벤트. 쓰기 중 발생한 분산 캐시 오류의 수ProfileEvent_DistrCacheWriteReconnectsAfterTimeout(UInt64) — 분산 캐시 쓰기 버퍼 이벤트입니다. 타임아웃 후 재연결 횟수ProfileEvent_DistrCacheWriteMicroseconds(UInt64) — Distributed Cache 쓰기 버퍼 이벤트입니다.WriteBufferFromDistributedCache::writeToFileSegment에서 소요된 시간입니다.ProfileEvent_DistrCacheWriteBytes(UInt64) — Distributed Cache 쓰기 버퍼 이벤트. 분산 캐시에 기록된 바이트 수입니다.ProfileEvent_DistrCacheObjectStorageWriteMicroseconds(UInt64) — Distributed Cache 쓰기 버퍼 이벤트. 객체 스토리지에 쓰는 데 걸린 시간ProfileEvent_DistrCacheObjectStorageWriteBytes(UInt64) — Distributed Cache 쓰기 버퍼 이벤트. 객체 스토리지에 기록된 바이트 수ProfileEvent_DistrCacheGetResponseMicroseconds(UInt64) — 분산 캐시 클라이언트 이벤트. 분산 캐시의 응답을 기다리는 데 소요된 시간ProfileEvent_DistrCacheMakeRequestErrors(UInt64) — 분산 캐시 클라이언트 이벤트. 요청을 보낼 때 발생한 분산 캐시 오류 수ProfileEvent_DistrCacheReceiveResponseErrors(UInt64) — 분산 캐시 클라이언트 이벤트. 요청에 대한 응답을 수신할 때 발생한 분산 캐시 오류 수ProfileEvent_DistrCacheReceivedDataPackets(UInt64) — 분산 캐시 클라이언트 이벤트. 분산 캐시에서 수신한 데이터 패킷의 총개수ProfileEvent_DistrCacheReceivedDataPacketsBytes(UInt64) — 분산 캐시 클라이언트 이벤트. 분산 캐시에서 수신된 Data 패킷의 바이트 수ProfileEvent_DistrCacheReceivedOkPackets(UInt64) — 분산 캐시 클라이언트 이벤트. 분산 캐시로부터 수신한 Ok 패킷의 총개수ProfileEvent_DistrCacheReceivedErrorPackets(UInt64) — 분산 캐시 클라이언트 이벤트. 분산 캐시에서 수신한 오류 패킷의 총개수ProfileEvent_DistrCacheReceivedCredentialsRefreshPackets(UInt64) — 분산 캐시 클라이언트 이벤트. 분산 캐시에서 수신한 RefreshCredentials 패킷의 총 개수ProfileEvent_DistrCacheReceivedStopPackets(UInt64) — 분산 캐시 클라이언트 이벤트. 분산 캐시에서 수신한 Stop 패킷의 총개수ProfileEvent_DistrCacheSentDataPackets(UInt64) — 분산 캐시 클라이언트 이벤트. 분산 캐시로 전송된 데이터 패킷의 총 개수ProfileEvent_DistrCacheSentDataPacketsBytes(UInt64) — 분산 캐시 클라이언트 이벤트. 분산 캐시로 전송된 Data 패킷에 포함된 바이트 수ProfileEvent_DistrCacheUnusedPackets(UInt64) — 분산 캐시 클라이언트 이벤트. 분산 캐시에서 사용되지 않은 것으로 판단되어 건너뛴 패킷 수ProfileEvent_DistrCacheUnusedDataPacketsBytes(UInt64) — 분산 캐시 클라이언트 이벤트. 무시된 Data 패킷의 총 바이트 수ProfileEvent_DistrCacheUnusedPacketsBufferAllocations(UInt64) — 분산 캐시 클라이언트 이벤트. 기존 버퍼를 재사용할 수 없을 때 발생한 추가 버퍼 할당 횟수ProfileEvent_DistrCacheLockRegistryMicroseconds(UInt64) — 분산 캐시 레지스트리 이벤트. DistributedCacheRegistry 잠금을 획득하는 데 걸린 시간ProfileEvent_DistrCacheRegistryUpdateMicroseconds(UInt64) — Distributed Cache 레지스트리 이벤트. 분산 캐시 레지스트리 업데이트에 소요된 시간ProfileEvent_DistrCacheRegistryUpdates(UInt64) — 분산 캐시 레지스트리 이벤트. 분산 캐시 레지스트리 업데이트 횟수ProfileEvent_DistrCacheHashRingRebuilds(UInt64) — 분산 캐시 레지스트리 이벤트. 분산 캐시 해시 링이 재구축된 횟수ProfileEvent_DistrCacheSuccessfulRegistryUpdates(UInt64) — 분산 캐시 레지스트리 이벤트입니다. 서버 레지스트리 업데이트에 성공한 횟수입니다.ProfileEvent_DistrCacheUnsuccessfulRegistryUpdates(UInt64) — 분산 캐시 레지스트리 이벤트입니다. 서버 레지스트리 업데이트에 실패한 횟수ProfileEvent_DistrCacheReadBytesFromFallbackBuffer(UInt64) — 분산 캐시 읽기 버퍼 이벤트. 폴백 버퍼에서 읽은 바이트 수ProfileEvent_DistrCacheOpenedConnections(UInt64) — 분산 캐시 연결 이벤트입니다. 분산 캐시에 열린 연결 수입니다.ProfileEvent_DistrCacheReusedConnections(UInt64) — 분산 캐시 연결 이벤트. 분산 캐시에서 재사용된 연결 수ProfileEvent_DistrCacheStaleReconnections(UInt64) — 분산 캐시 연결 이벤트입니다. 오래된(피어에 의해 종료된) 풀링된 연결로 인해 발생한 재연결 횟수입니다ProfileEvent_DistrCacheRemoveOutdatedMicroseconds(UInt64) — 분산 캐시 연결 이벤트입니다. 풀에서 오래된 연결을 제거하는 데 걸린 시간ProfileEvent_DistrCacheOpenedConnectionsBypassingPool(UInt64) — 분산 캐시 연결 이벤트입니다. 풀을 우회하여 분산 캐시에 열려 있는 연결 수입니다ProfileEvent_DistrCacheConnectMicroseconds(UInt64) — 분산 캐시 연결 이벤트입니다. 분산 캐시에 연결하는 데 걸린 시간입니다ProfileEvent_DistrCacheConnectAttempts(UInt64) — 분산 캐시 연결 이벤트입니다. 분산 캐시에 연결을 시도한 횟수입니다ProfileEvent_DistrCacheSuccessfulConnectAttempts(UInt64) — Distributed Cache 연결 이벤트. 분산 캐시에 성공적으로 연결을 시도한 횟수ProfileEvent_DistrCacheUnsuccessfulConnectAttempts(UInt64) — 분산 캐시 연결 이벤트입니다. 분산 캐시에 대한 연결 시도 중 실패한 횟수입니다ProfileEvent_DistrCacheGetClientMicroseconds(UInt64) — 분산 캐시 연결 이벤트. 분산 캐시용 클라이언트를 획득하는 데 소요된 시간ProfileEvent_DistrCacheTemporaryFilesCreated(UInt64) — 분산 캐시 연결 이벤트입니다. 분산 캐시에서 생성된 임시 파일 수ProfileEvent_DistrCacheTemporaryFilesBytesWritten(UInt64) — 분산 캐시 연결 이벤트. 분산 캐시에서 생성된 임시 파일에 기록된 바이트 수ProfileEvent_DistrCacheServerProcessRequestMicroseconds(UInt64) — 분산 캐시 서버 이벤트입니다. DistributedCache 서버 측에서 요청 처리에 소요된 시간ProfileEvent_DistrCacheServerStartRequestPackets(UInt64) — 분산 캐시 서버 이벤트입니다. DistributedCacheServer의 StartRequest 패킷 수입니다.ProfileEvent_DistrCacheServerContinueRequestPackets(UInt64) — 분산 캐시 서버 이벤트입니다. DistributedCacheServer의 ContinueRequest 패킷 개수ProfileEvent_DistrCacheServerEndRequestPackets(UInt64) — 분산 캐시 서버 이벤트입니다. DistributedCacheServer의 EndRequest 패킷 수입니다.ProfileEvent_DistrCacheServerReceivedCredentialsRefreshPackets(UInt64) — 분산 캐시 서버 이벤트입니다. DistributedCacheServer에서 수신한 RefreshCredentials 클라이언트 패킷 수입니다ProfileEvent_DistrCacheServerAckRequestPackets(UInt64) — 분산 캐시 서버 이벤트입니다. DistributedCacheServer 내 AckRequest 패킷 수ProfileEvent_DistrCacheServerNewS3CachedClients(UInt64) — 분산 캐시 서버 이벤트입니다. 새로 캐시된 S3 클라이언트의 수ProfileEvent_DistrCacheServerReusedS3CachedClients(UInt64) — 분산 캐시 서버 이벤트입니다. 재사용된 캐시된 S3 클라이언트의 수ProfileEvent_DistrCacheServerCredentialsRefresh(UInt64) — 분산 캐시 서버 이벤트입니다. 만료된 자격 증명을 갱신한 횟수입니다ProfileEvent_DistrCacheServerCachedReadBufferCacheHits(UInt64) — 분산 캐시 서버 이벤트입니다. 파일 시스템 캐시에서 읽는 동안 분산 캐시에서 캐시 적중이 발생한 횟수입니다ProfileEvent_DistrCacheServerCachedReadBufferCacheMisses(UInt64) — 분산 캐시 서버 이벤트입니다. 파일 시스템 캐시에서 읽는 동안 분산 캐시가 캐시를 찾지 못한 횟수입니다ProfileEvent_DistrCacheServerCachedReadBufferCacheWrittenBytes(UInt64) — 분산 캐시 서버 이벤트입니다. 파일 시스템 캐시에서 읽는 동안 분산 캐시에 기록된 바이트 수입니다.ProfileEvent_DistrCacheServerCachedReadBufferCacheReadBytes(UInt64) — 분산 캐시 서버 이벤트. 파일 시스템 캐시를 읽는 동안 분산 캐시에서 캐시로부터 읽은 바이트 수ProfileEvent_DistrCacheServerCachedReadBufferObjectStorageReadBytes(UInt64) — 분산 캐시 서버 이벤트입니다. 파일 시스템 캐시를 읽는 동안 분산 캐시가 객체 스토리지에서 읽은 바이트 수입니다.ProfileEvent_DistrCacheServerCachedReadBufferCachePredownloadBytes(UInt64) — 분산 캐시 서버 이벤트입니다. 파일 시스템 캐시에서 읽는 동안 분산 캐시의 사전 다운로드를 위해 객체 스토리지에서 읽어 온 바이트 수입니다.ProfileEvent_DistrCacheServerSkipped(UInt64) — 분산 캐시 서버 이벤트입니다. 이전의 연결 시도가 실패하여 분산 캐시 서버를 건너뛴 횟수입니다ProfileEvent_LogTest(UInt64) — Test 수준 로그 메시지 수ProfileEvent_LogTrace(UInt64) — Trace 수준 로그 메시지 수ProfileEvent_LogDebug(UInt64) — Debug 수준의 로그 메시지 수ProfileEvent_LogInfo(UInt64) — Info 레벨의 로그 메시지 수ProfileEvent_LogWarning(UInt64) — Warning 수준 로그 메시지 수ProfileEvent_LogError(UInt64) — 오류 수준 로그 메시지 수ProfileEvent_LogFatal(UInt64) — Fatal 수준 로그 메시지 수ProfileEvent_LoggerElapsedNanoseconds(UInt64) — 로깅에 소요된 총 누적 시간ProfileEvent_InterfaceHTTPSendBytes(UInt64) — HTTP 인터페이스를 통해 전송된 바이트 수ProfileEvent_InterfaceHTTPReceiveBytes(UInt64) — HTTP 인터페이스를 통해 수신한 바이트 수ProfileEvent_InterfaceNativeSendBytes(UInt64) — 네이티브 인터페이스를 통해 전송된 바이트 수ProfileEvent_InterfaceNativeReceiveBytes(UInt64) — 네이티브 인터페이스를 통해 수신된 바이트 수ProfileEvent_InterfacePrometheusSendBytes(UInt64) — Prometheus 인터페이스를 통해 전송된 바이트 수ProfileEvent_InterfacePrometheusReceiveBytes(UInt64) — Prometheus 인터페이스를 통해 수신한 바이트 수ProfileEvent_InterfaceInterserverSendBytes(UInt64) — 서버 간 통신 인터페이스를 통해 전송된 바이트 수ProfileEvent_InterfaceInterserverReceiveBytes(UInt64) — 서버 간 인터페이스를 통해 수신한 바이트 수ProfileEvent_InterfaceMySQLSendBytes(UInt64) — MySQL 인터페이스를 통해 전송한 바이트 수ProfileEvent_InterfaceMySQLReceiveBytes(UInt64) — MySQL 인터페이스를 통해 수신한 바이트 수ProfileEvent_InterfacePostgreSQLSendBytes(UInt64) — PostgreSQL 인터페이스를 통해 전송한 바이트 수ProfileEvent_InterfacePostgreSQLReceiveBytes(UInt64) — PostgreSQL 인터페이스를 통해 수신된 바이트 수ProfileEvent_ParallelReplicasUsedCount(UInt64) — 작업 기반 병렬 레플리카를 사용해 쿼리를 실행할 때 사용된 레플리카 수ProfileEvent_ParallelReplicasAvailableCount(UInt64) — 작업 기반 병렬 레플리카를 사용해 쿼리를 실행할 수 있는 레플리카 수ProfileEvent_ParallelReplicasUnavailableCount(UInt64) — 선택되었으나 작업 기반 병렬 레플리카를 사용하는 쿼리 실행 중 사용할 수 없는 것으로 판명된 레플리카 수ProfileEvent_SharedMergeTreeVirtualPartsUpdates(UInt64) — 가상 파트 업데이트 수ProfileEvent_SharedMergeTreeVirtualPartsUpdatesByLeader(UInt64) — 리더별 virtual parts 업데이트ProfileEvent_SharedMergeTreeVirtualPartsUpdateMicroseconds(UInt64) — 가상 파트 업데이트 시간(마이크로초)ProfileEvent_SharedMergeTreeVirtualPartsUpdatesFromZooKeeper(UInt64) — ZooKeeper에서의 virtual parts 업데이트 수ProfileEvent_SharedMergeTreeVirtualPartsUpdatesFromZooKeeperMicroseconds(UInt64) — ZooKeeper의 가상 파트 업데이트 소요 시간(마이크로초)ProfileEvent_SharedMergeTreeVirtualPartsUpdatesPeerNotFound(UInt64) — 피어를 찾지 못해 피어의 가상 업데이트에 실패했습니다ProfileEvent_SharedMergeTreeVirtualPartsUpdatesFromPeer(UInt64) — 피어에서 받은 virtual parts 업데이트 수ProfileEvent_SharedMergeTreeVirtualPartsUpdatesFromPeerMicroseconds(UInt64) — 피어로부터 받은 virtual parts 업데이트 시간(마이크로초)ProfileEvent_SharedMergeTreeVirtualPartsUpdatesForMergesOrStatus(UInt64) — 기본이 아닌 백그라운드 작업에서의 virtual parts 업데이트ProfileEvent_SharedMergeTreeVirtualPartsUpdatesLeaderFailedElection(UInt64) — Virtual parts 업데이트 리더 선출 실패ProfileEvent_SharedMergeTreeVirtualPartsUpdatesLeaderSuccessfulElection(UInt64) — 가상 파트 업데이트 리더 선출 성공ProfileEvent_SharedMergeTreeMergeMutationAssignmentAttempt(UInt64) — merge 또는 mutation을 할당하려고 시도한 횟수ProfileEvent_SharedMergeTreeMergeMutationAssignmentFailedWithNothingToDo(UInt64) — merge 또는 mutation을 할당하려 했지만 병합할 대상이 없어 실패한 횟수ProfileEvent_SharedMergeTreeMergeMutationAssignmentFailedWithConflict(UInt64) — Keeper의 충돌로 인해 merge 또는 mutation 할당 시도가 실패한 횟수ProfileEvent_SharedMergeTreeMergeMutationAssignmentSuccessful(UInt64) — merge 또는 mutation을 할당하려고 시도한 총 횟수ProfileEvent_SharedMergeTreeMergePartsMovedToOudated(UInt64) — 오래된 디렉터리로 이동된 파트의 수ProfileEvent_SharedMergeTreeMergePartsMovedToCondemned(UInt64) — condemned 디렉터리로 이동된 파트의 개수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) — 파트 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) — 데이터 파트를 가져오려고 시도한 총 횟수ProfileEvent_SharedMergeTreeDataPartsFetchFromPeer(UInt64) — 피어로부터 데이터 파트를 가져온 횟수ProfileEvent_SharedMergeTreeDataPartsFetchFromPeerMicroseconds(UInt64) — 피어에서 데이터 파트를 가져오는 데 걸린 시간(마이크로초)ProfileEvent_SharedMergeTreeDataPartsFetchFromS3(UInt64) — S3에서 데이터 파트를 가져온 횟수ProfileEvent_SharedMergeTreeReplicaSetUpdatesFromZooKeeper(UInt64) — ZooKeeper로부터 레플리카 세트를 업데이트한 횟수ProfileEvent_SharedMergeTreeReplicaSetUpdatesFromZooKeeperRequests(UInt64) — 레플리카 집합을 업데이트하기 위해 수행한 ZooKeeper 요청의 총횟수ProfileEvent_SharedMergeTreeReplicaSetUpdatesFromZooKeeperMicroseconds(UInt64) — 레플리카 세트를 업데이트하는 데 걸린 시간ProfileEvent_KeeperLogsEntryReadFromLatestCache(UInt64) — 최신 로그 캐시에서 읽어오는 Keeper 로그 엔트리 수ProfileEvent_KeeperLogsEntryReadFromCommitCache(UInt64) — commit 로그 캐시에서 읽어오는 Keeper 로그 항목 수ProfileEvent_KeeperLogsEntryReadFromFile(UInt64) — Keeper에서 changelog 파일로부터 직접 읽는 로그 항목 수ProfileEvent_KeeperLogsPrefetchedEntries(UInt64) — 변경 로그 파일에서 미리 읽기(prefetch)되는 Keeper 로그 항목 수ProfileEvent_KeeperChangelogWrittenBytes(UInt64) — Keeper의 변경 로그에 기록한 바이트 수ProfileEvent_KeeperChangelogFileSyncMicroseconds(UInt64) — Keeper 변경 로그의 fsync에 소요된 시간(압축되지 않은 로그에만 해당)ProfileEvent_KeeperSnapshotWrittenBytes(UInt64) — Keeper에서 스냅샷 파일에 기록된 바이트 수ProfileEvent_KeeperSnapshotFileSyncMicroseconds(UInt64) — Keeper 스냅샷 파일에서 fsync에 소요된 시간ProfileEvent_StorageConnectionsCreated(UInt64) — 스토리지용으로 생성된 연결 수ProfileEvent_StorageConnectionsReused(UInt64) — 스토리지에서 재사용된 연결 수ProfileEvent_StorageConnectionsReset(UInt64) — 스토리지에서 재설정된 연결 수ProfileEvent_StorageConnectionsPreserved(UInt64) — 스토리지에 대해 유지된 연결 수ProfileEvent_StorageConnectionsExpired(UInt64) — 저장소의 만료된 연결 개수ProfileEvent_StorageConnectionsErrors(UInt64) — 스토리지 연결 생성에 실패한 횟수ProfileEvent_StorageConnectionsElapsedMicroseconds(UInt64) — 스토리지 연결을 생성하는 데 소요된 총 시간ProfileEvent_DiskConnectionsCreated(UInt64) — 디스크용으로 생성된 연결 개수ProfileEvent_DiskConnectionsReused(UInt64) — 디스크에 대해 재사용된 연결 수ProfileEvent_DiskConnectionsReset(UInt64) — 디스크의 재설정된 연결 수ProfileEvent_DiskConnectionsPreserved(UInt64) — 디스크에 대한 유지된 연결 수ProfileEvent_DiskConnectionsExpired(UInt64) — 디스크 연결의 만료 건수ProfileEvent_DiskConnectionsErrors(UInt64) — 디스크 연결 생성에 실패한 경우의 수ProfileEvent_DiskConnectionsElapsedMicroseconds(UInt64) — 디스크 연결을 생성하는 데 소요된 총 시간ProfileEvent_HTTPConnectionsCreated(UInt64) — 생성된 클라이언트 HTTP 연결 수ProfileEvent_HTTPConnectionsReused(UInt64) — 재사용된 클라이언트의 HTTP 연결 수ProfileEvent_HTTPConnectionsReset(UInt64) — 재설정된 클라이언트 HTTP 연결 개수ProfileEvent_HTTPConnectionsPreserved(UInt64) — 유지된 클라이언트의 HTTP 연결 수ProfileEvent_HTTPConnectionsExpired(UInt64) — 만료된 클라이언트의 HTTP 연결 수ProfileEvent_HTTPConnectionsErrors(UInt64) — 클라이언트 HTTP 연결 생성이 실패한 횟수ProfileEvent_HTTPConnectionsElapsedMicroseconds(UInt64) — 클라이언트 HTTP 연결 생성에 소요된 총 시간ProfileEvent_HTTPServerConnectionsCreated(UInt64) — 생성된 서버 HTTP 연결 개수ProfileEvent_HTTPServerConnectionsReused(UInt64) — 재사용된 HTTP 서버 연결 수ProfileEvent_HTTPServerConnectionsPreserved(UInt64) — 유지된 서버 HTTP 연결 수. 연결이 keep-alive 상태로 성공적으로 유지됨ProfileEvent_HTTPServerConnectionsExpired(UInt64) — 만료된 서버의 HTTP 연결 수.ProfileEvent_HTTPServerConnectionsClosed(UInt64) — 종료된 서버 HTTP 연결 수입니다. Keep alive가 협상되지 않았습니다ProfileEvent_HTTPServerConnectionsReset(UInt64) — 재설정된 서버의 HTTP 연결 수입니다. 서버가 연결을 종료합니다ProfileEvent_AddressesDiscovered(UInt64) — HTTP 연결에 대한 DNS 조회 결과에 포함된 새 주소의 총 개수ProfileEvent_AddressesExpired(UInt64) — HTTP 연결의 DNS 조회 결과에 더 이상 나타나지 않는 만료된 주소의 총 개수ProfileEvent_AddressesMarkedAsFailed(UInt64) — HTTP 연결에서 연결 오류로 인해 오류 상태로 표시된 주소의 총개수ProfileEvent_ReadWriteBufferFromHTTPRequestsSent(UInt64) — ReadWriteBufferFromHTTP에서 전송한 HTTP 요청 수ProfileEvent_ReadWriteBufferFromHTTPBytes(UInt64) — ReadWriteBufferFromHTTP를 통해 수신 및 전송된 페이로드 바이트의 총크기입니다. HTTP 헤더는 포함되지 않습니다.ProfileEvent_WriteBufferFromHTTPRequestsSent(UInt64) — WriteBufferFromHTTP가 전송한 HTTP 요청 수ProfileEvent_WriteBufferFromHTTPBytes(UInt64) — WriteBufferFromHTTP를 통해 수신 및 전송된 페이로드 바이트의 총 크기입니다. HTTP 헤더는 포함되지 않습니다.ProfileEvent_ConcurrencyControlSlotsGranted(UInt64) — 쿼리당 1개 스레드 보장에 따라, 그리고 'use_concurrency_control' = 0인 쿼리에 대해 부여된 CPU slot 수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) — merge coordinator 상태 업데이트에 소요된 총 시간ProfileEvent_CoordinatedMergesMergeCoordinatorFetchMetadataMicroseconds(UInt64) — 병합 조정자 내부에서 최신 메타데이터를 가져오는 데 소요된 총 시간ProfileEvent_CoordinatedMergesMergeCoordinatorFilterMicroseconds(UInt64) — merge coordinator 내에서 준비된 병합을 필터링하는 데 소요된 총 시간ProfileEvent_CoordinatedMergesMergeCoordinatorSelectMergesMicroseconds(UInt64) — merge coordinator 내부에서 머지 선택기를 사용해 병합을 선택하는 데 소요된 총 시간ProfileEvent_CoordinatedMergesMergeCoordinatorLockStateForShareCount(UInt64) — coordinator 상태 잠금에 대한 FOR SHARE 캡처 총 횟수ProfileEvent_CoordinatedMergesMergeCoordinatorLockStateExclusivelyCount(UInt64) — coordinator 상태 잠금을 독점적으로 획득한 총 횟수ProfileEvent_CoordinatedMergesMergeCoordinatorLockStateForShareMicroseconds(UInt64) — 공유 잠금을 위해 coordinator 상태 뮤텍스를 잠그는 데 소요된 총 시간ProfileEvent_CoordinatedMergesMergeCoordinatorLockStateExclusivelyMicroseconds(UInt64) — coordinator 상태용 뮤텍스를 배타적으로 잠그는 데 소요된 총 시간ProfileEvent_CoordinatedMergesMergeWorkerUpdateCount(UInt64) — merge worker 업데이트의 총 개수ProfileEvent_CoordinatedMergesMergeWorkerUpdateMicroseconds(UInt64) — 워커에 할당된 병합의 로컬 상태를 업데이트하는 데 소요된 총 시간ProfileEvent_CoordinatedMergesMergeAssignmentRequest(UInt64) — 병합 할당 요청의 총 개수ProfileEvent_CoordinatedMergesMergeAssignmentResponse(UInt64) — 병합 할당 요청의 총 수ProfileEvent_CoordinatedMergesMergeAssignmentRequestMicroseconds(UInt64) — merge assignment client에서 사용된 총 시간ProfileEvent_CoordinatedMergesMergeAssignmentResponseMicroseconds(UInt64) — 병합 할당 handler에서 소요된 전체 시간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) — 갱신 가능 구체화 뷰(refreshable materialized view)에서 SELECT를 수행하는 중 이전 테이블이 삭제되어 새 테이블로 전환해야 했던 횟수ProfileEvent_AsyncLoggingConsoleTotalMessages(UInt64) — 콘솔 로그용 비동기 큐로 전송된 메시지 수(수락되거나 폐기된 메시지 포함)ProfileEvent_AsyncLoggingFileLogTotalMessages(UInt64) — 파일 로그용 비동기 큐로 전송된 메시지 수(수락되었거나 폐기된 메시지 포함)ProfileEvent_AsyncLoggingErrorFileLogTotalMessages(UInt64) — 오류 파일 로그용 비동기 큐로 전송된 메시지 수(수락되었거나 버려진 항목 포함)ProfileEvent_AsyncLoggingSyslogTotalMessages(UInt64) — syslog의 비동기 큐로 전송된 메시지 수(수락되었거나 폐기된 메시지 포함)ProfileEvent_AsyncLoggingTextLogTotalMessages(UInt64) — text_log의 비동기 큐로 전송된 메시지 수(수락되거나 삭제된 메시지 포함)ProfileEvent_AsyncLoggingConsoleDroppedMessages(UInt64) — async log 큐가 가득 차 콘솔 로그에서 누락된 메시지 수ProfileEvent_AsyncLoggingFileLogDroppedMessages(UInt64) — 비동기 로그 큐가 가득 차 파일 로그에서 누락된 메시지 수ProfileEvent_AsyncLoggingErrorFileLogDroppedMessages(UInt64) — async log 큐가 가득 차 오류 파일 로그에서 드롭된 메시지 수ProfileEvent_AsyncLoggingSyslogDroppedMessages(UInt64) — 비동기 로그 큐가 가득 차 syslog에서 누락된 메시지 수ProfileEvent_AsyncLoggingTextLogDroppedMessages(UInt64) — 비동기 로그 큐가 가득 차 text_log에 기록되지 못한 메시지 수ProfileEvent_JemallocFailedAllocationSampleTracking(UInt64) — jemalloc 할당 샘플 추적에 실패한 합계 횟수ProfileEvent_JemallocFailedDeallocationSampleTracking(UInt64) — jemalloc 할당 해제 샘플 추적이 실패한 합계 횟수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 token의 총수입니다.ProfileEvent_AIAPICalls(UInt64) — AI 제공업체로 전송된 HTTP 요청 수ProfileEvent_AIRowsProcessed(UInt64) — AI 결과를 받은 행의 수입니다.ProfileEvent_AIRowsSkipped(UInt64) — QUOTA 또는 오류로 인해 기본값이 할당된 행 수.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) — 연결된 백그라운드 풀에서 현재 활성 상태인 가져오기 작업 수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의 업데이트 큐에 있는 'batches'(키 집합) 수입니다.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) — 다른 레플리카가 파트를 가져오기 위해 생성한 연결 수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(read,pread,io_getevents등) syscall 수CurrentMetric_RemoteRead(Int64) — 원격 리더를 사용하는 현재 진행 중인 읽기 수CurrentMetric_Write(Int64) — 현재 진행 중인 쓰기(write, pwrite, io_getevents 등) syscall 수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가 구성되지 않은 상태로 시작되어 현재 읽기 전용 상태인 복제된 테이블(Replicated Table)의 수입니다.CurrentMetric_ReplicaReady(Int64) — 레플리카가 쿼리를 처리할 준비가 되었는지 나타냅니다: 0 = 아니요, 1 = 예CurrentMetric_MemoryTracking(Int64) — 서버에 할당된 메모리의 총량(바이트)입니다.CurrentMetric_MemoryTrackingUncorrected(Int64) — RSS로 보정되지 않은, 서버에 할당된 메모리 총량(바이트)입니다.CurrentMetric_MergesMutationsMemoryTracking(Int64) — 백그라운드 작업(병합 및 뮤테이션)에 할당된 전체 메모리 크기(바이트)입니다.CurrentMetric_EphemeralNode(Int64) — ZooKeeper에서 유지 중인 임시 노드 수입니다.CurrentMetric_MaxAllocatedEphemeralLockSequentialNumber(Int64) — ZooKeeper에서 임시 잠금 znode에 할당된 최대 sequential 번호입니다. 주로 block 번호에 의해 결정됩니다.CurrentMetric_ZooKeeperSession(Int64) — ZooKeeper에 대한 세션(연결) 수입니다. ZooKeeper에 대한 연결을 2개 이상 사용하면 ZooKeeper 일관성(consistency) 모델에서 허용하는 선형화 가능성 부족(오래된 읽기)으로 인해 버그가 발생할 수 있으므로, 1개를 초과해서는 안 됩니다.CurrentMetric_ZooKeeperSessionExpired(Int64) — 만료된 전역 ZooKeeper 세션의 수.CurrentMetric_ZooKeeperConnectionLossStartedTimestampSeconds(Int64) — ZooKeeper 연결이 끊어진 시점의 초 단위 Unix 타임스탬프이며, 정상적으로 연결되어 있으면 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) — 캐시 타입 딕셔너리 데이터 소스에 대해 현재 처리 중인 요청 수입니다.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) — 전역 스레드 풀의 큐에서 대기 중이거나 실행 중인 작업 수입니다.CurrentMetric_LocalThread(Int64) — 더 이상 사용되지 않습니다. 로컬 스레드 풀에 있는 스레드 수입니다. 로컬 스레드 풀의 스레드는 전역 스레드 풀에서 할당됩니다.CurrentMetric_LocalThreadActive(Int64) — 사용 중단됨. 로컬 스레드 풀에서 작업을 실행 중인 스레드 수입니다.CurrentMetric_LocalThreadScheduled(Int64) — 더 이상 사용되지 않음. 로컬 스레드 풀의 큐에서 대기 중이거나 실행 중인 작업 수입니다.CurrentMetric_MergeTreeDataSelectExecutorThreads(Int64) — MergeTreeDataSelectExecutor 스레드 풀에 있는 스레드 수입니다.CurrentMetric_MergeTreeDataSelectExecutorThreadsActive(Int64) — 작업을 실행하고 있는 MergeTreeDataSelectExecutor 스레드 풀의 스레드 수.CurrentMetric_MergeTreeDataSelectExecutorThreadsScheduled(Int64) — MergeTreeDataSelectExecutor 스레드 풀에서 큐에 대기 중이거나 실행 중인 작업 수입니다.CurrentMetric_BackupsThreads(Int64) — BACKUP에 사용되는 스레드 풀의 스레드 수.CurrentMetric_BackupsThreadsActive(Int64) — BACKUP용 스레드 풀에서 작업을 실행 중인 스레드 수.CurrentMetric_BackupsThreadsScheduled(Int64) — BACKUP용으로 큐에서 대기 중이거나 활성 상태인 작업 수입니다.CurrentMetric_RestoreThreads(Int64) — RESTORE에 사용되는 스레드 풀의 스레드 수입니다.CurrentMetric_RestoreThreadsActive(Int64) — 작업을 실행하는 RESTORE용 스레드 풀의 스레드 수입니다.CurrentMetric_RestoreThreadsScheduled(Int64) — 큐에서 대기 중이거나 실행 중인 RESTORE 작업 수입니다.CurrentMetric_MarksLoaderThreads(Int64) — 마크 로드용 스레드 풀의 스레드 수입니다.CurrentMetric_MarksLoaderThreadsActive(Int64) — 작업을 실행하고 있는 마크 로드용 스레드 풀의 스레드 수입니다.CurrentMetric_MarksLoaderThreadsScheduled(Int64) — 마크를 로드하는 스레드 풀에서 대기 중이거나 실행 중인 작업 수입니다.CurrentMetric_IOPrefetchThreads(Int64) — IO 프리페치용 스레드 풀의 스레드 수입니다.CurrentMetric_IOPrefetchThreadsActive(Int64) — IO prefetch 스레드 풀에서 작업을 실행 중인 스레드 수.CurrentMetric_IOPrefetchThreadsScheduled(Int64) — IO prefetch 스레드 풀에서 대기 중이거나 실행 중인 작업 수입니다.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) — 객체 스토리지 큐 종료 풀에서 대기 중이거나 실행 중인 작업 수.CurrentMetric_ObjectStorageQueueMetadataCacheSizeBytes(Int64) — ObjectStorageQueue 메타데이터 캐시 크기(바이트)입니다.CurrentMetric_ObjectStorageQueueMetadataCacheSizeElements(Int64) — ObjectStorageQueue 메타데이터 캐시에 있는 요소 수입니다.CurrentMetric_DeltaLakeSnapshotCacheSizeElements(Int64) — DeltaLake 스냅샷 캐시의 요소 개수입니다.CurrentMetric_BackupsIOThreads(Int64) — BackupsIO 스레드 풀의 스레드 수입니다.CurrentMetric_BackupsIOThreadsActive(Int64) — 작업을 수행 중인 BackupsIO 스레드 풀의 스레드 수입니다.CurrentMetric_BackupsIOThreadsScheduled(Int64) — BackupsIO 스레드 풀의 큐에서 대기 중이거나 현재 실행 중인 작업 수.CurrentMetric_DiskObjectStorageAsyncThreads(Int64) — 폐기된 메트릭으로, 아무것도 표시되지 않습니다.CurrentMetric_DiskObjectStorageAsyncThreadsActive(Int64) — 사용 중단된 메트릭이며, 아무것도 표시하지 않습니다.CurrentMetric_StorageHiveThreads(Int64) — StorageHive 스레드 풀에 있는 스레드 수입니다.CurrentMetric_StorageHiveThreadsActive(Int64) — 현재 작업을 실행 중인 StorageHive 스레드 풀의 스레드 수.CurrentMetric_StorageHiveThreadsScheduled(Int64) — StorageHive 스레드 풀에서 큐에 대기 중이거나 실행 중인 작업 수입니다.CurrentMetric_TablesLoaderBackgroundThreads(Int64) — 테이블 로더의 백그라운드 스레드 풀에 있는 스레드 수입니다.CurrentMetric_TablesLoaderBackgroundThreadsActive(Int64) — 테이블 로더 백그라운드 스레드 풀에서 작업을 실행하고 있는 스레드 수입니다.CurrentMetric_TablesLoaderBackgroundThreadsScheduled(Int64) — 테이블 로더 백그라운드 스레드 풀의 큐에서 대기 중이거나 실행 중인 작업 수입니다.CurrentMetric_TablesLoaderForegroundThreads(Int64) — 테이블 로더의 포그라운드 스레드 풀에 있는 스레드 수.CurrentMetric_TablesLoaderForegroundThreadsActive(Int64) — tables loader의 포그라운드 스레드 풀에서 작업을 실행 중인 스레드 수.CurrentMetric_TablesLoaderForegroundThreadsScheduled(Int64) — 테이블 로더의 포그라운드 스레드 풀에 대기 중이거나 현재 실행 중인 작업 수입니다.CurrentMetric_DatabaseOnDiskThreads(Int64) — DatabaseOnDisk 스레드 풀에 있는 스레드 수입니다.CurrentMetric_DatabaseOnDiskThreadsActive(Int64) — 작업을 수행 중인 DatabaseOnDisk 스레드 풀의 스레드 수입니다.CurrentMetric_DatabaseOnDiskThreadsScheduled(Int64) — DatabaseOnDisk 스레드 풀의 큐에서 대기 중이거나 현재 실행 중인 작업 수입니다.CurrentMetric_DatabaseBackupThreads(Int64) — DatabaseBackup 스레드 풀에 있는 스레드 수입니다.CurrentMetric_DatabaseBackupThreadsActive(Int64) — 작업을 실행 중인 DatabaseBackup 스레드 풀의 스레드 수.CurrentMetric_DatabaseBackupThreadsScheduled(Int64) — DatabaseBackup 스레드 풀에서 큐에 대기 중이거나 실행 중인 작업 수입니다.CurrentMetric_DatabaseCatalogThreads(Int64) — DatabaseCatalog 스레드 풀에 있는 스레드 수입니다.CurrentMetric_DatabaseCatalogThreadsActive(Int64) — 작업을 실행하고 있는 DatabaseCatalog 스레드 풀의 스레드 수입니다.CurrentMetric_DatabaseCatalogThreadsScheduled(Int64) — DatabaseCatalog 스레드 풀에서 대기 중이거나 실행 중인 작업 수입니다.CurrentMetric_DestroyAggregatesThreads(Int64) — 집계 상태를 삭제하는 스레드 풀의 스레드 수입니다.CurrentMetric_DestroyAggregatesThreadsActive(Int64) — aggregate states 삭제 작업을 실행 중인 스레드 풀의 스레드 수입니다.CurrentMetric_DestroyAggregatesThreadsScheduled(Int64) — 집계 상태를 삭제하기 위한 스레드 풀에서 대기 중이거나 실행 중인 작업 수입니다.CurrentMetric_ConcurrentHashJoinPoolThreads(Int64) — 동시 해시 조인용 스레드 풀의 스레드 수입니다.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로 데이터 파트를 가져올 때 사용하는 스레드 수CurrentMetric_MergeTreeFetchPartitionThreadsScheduled(Int64) — ALTER TABLE FETCH PARTITION에서 큐에 대기 중이거나 현재 실행 중인 파트 fetch 작업 수CurrentMetric_MergeTreePartsLoaderThreads(Int64) — MergeTree 파트 로더 스레드 풀에 있는 스레드 수입니다.CurrentMetric_MergeTreePartsLoaderThreadsActive(Int64) — 작업을 수행 중인 MergeTree 파트 로더 스레드 풀의 스레드 수입니다.CurrentMetric_MergeTreePartsLoaderThreadsScheduled(Int64) — MergeTree 파트 로더 스레드 풀의 큐에서 대기 중이거나 실행 중인 작업 수.CurrentMetric_MergeTreeOutdatedPartsLoaderThreads(Int64) — 오래된 데이터 파트를 로드하는 스레드 풀의 스레드 수입니다.CurrentMetric_MergeTreeOutdatedPartsLoaderThreadsActive(Int64) — 오래된 데이터 파트를 로드하는 스레드 풀에서 현재 활성 상태인 스레드 수입니다.CurrentMetric_MergeTreeOutdatedPartsLoaderThreadsScheduled(Int64) — 오래된 데이터 파트를 로드하는 스레드 풀에서 큐에 있거나 현재 실행 중인 작업 수입니다.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 서버 읽기용 스레드 풀의 스레드 수입니다.CurrentMetric_KeeperReadThreadsActive(Int64) — Keeper 서버 읽기 작업용 스레드 풀에서 활성 상태인 스레드 수.CurrentMetric_KeeperReadThreadsScheduled(Int64) — Keeper 서버 읽기를 위한 스레드 풀에서 큐에 대기 중이거나 현재 실행 중인 작업 수입니다. 유의미하지 않은 메트릭이며, 이 스레드 풀의 실제 읽기 작업은 다른 메커니즘을 통해 스케줄링됩니다.CurrentMetric_DistributedBytesToInsert(Int64) — Distributed 테이블에 非同期 INSERT하기 위해 처리 대기 중인 바이트 수입니다. 각 세그먼트의 바이트 수를 합산한 값입니다.CurrentMetric_BrokenDistributedBytesToInsert(Int64) — 손상된 것으로 표시된 Distributed 테이블로의 非同期 INSERT 바이트 수입니다. 각 세그먼트의 바이트 수를 합산합니다.CurrentMetric_DistributedFilesToInsert(Int64) — Distributed 테이블에 대한 非同期 INSERT를 위해 처리 대기 중인 파일 수입니다. 각 세그먼트의 파일 수를 합산한 값입니다.CurrentMetric_BrokenDistributedFilesToInsert(Int64) — 분산 테이블에 대해 非同期 INSERT하는 파일 중 손상된 것으로 표시된 파일 수입니다. 각 세그먼트의 파일 수를 합산한 값입니다.CurrentMetric_TablesToDropQueueSize(Int64) — 백그라운드에서 데이터가 제거되기를 기다리고 있는 삭제된 테이블 수입니다.CurrentMetric_MaxDDLEntryID(Int64) — DDLWorker가 처리한 DDL 항목의 최대 ID.CurrentMetric_MaxPushedDDLEntryID(Int64) — DDLWorker가 zookeeper에 푸시한 최대 DDL 항목입니다.CurrentMetric_PartsTemporary(Int64) — 현재 생성 중인 파트로, data_parts 목록에는 포함되지 않습니다.CurrentMetric_PartsPreCommitted(Int64) — 더 이상 사용되지 않습니다.PartsPreActive를 참조하십시오.CurrentMetric_PartsCommitted(Int64) — 더 이상 사용되지 않습니다. 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) — identity refcounter가 있는 비활성 데이터 파트로, 현재 클리너가 삭제하고 있습니다.CurrentMetric_PartsDeleteOnDestroy(Int64) — 파트가 다른 디스크로 이동되었으며, 자체 소멸 시 삭제되어야 합니다.CurrentMetric_PartsWide(Int64) — Wide 형식의 파트.CurrentMetric_PartsCompact(Int64) — 컴팩트 파트.CurrentMetric_MMappedFiles(Int64) — mmapped 파일의 총 수입니다.CurrentMetric_MMappedFileBytes(Int64) — 메모리 매핑된 파일 영역의 총 크기입니다.CurrentMetric_AsynchronousReadWait(Int64) — 비동기 읽기를 기다리는 스레드 수입니다.CurrentMetric_PendingAsyncInsert(Int64) — 플러시를 대기 중인 非同期 INSERT의 수.CurrentMetric_KafkaConsumers(Int64) — 활성 상태인 Kafka 컨슈머 수CurrentMetric_KafkaConsumersWithAssignment(Int64) — 하나 이상의 파티션이 할당된 활성 Kafka 컨슈머 수입니다.CurrentMetric_KafkaProducers(Int64) — 현재 활성 상태인 Kafka 프로듀서 수CurrentMetric_KafkaLibrdkafkaThreads(Int64) — 활성 상태인 librdkafka 스레드 수CurrentMetric_KafkaBackgroundReads(Int64) — 현재 실행 중인 백그라운드 읽기 수(Kafka에서 materialized views를 채우기 위한 작업)CurrentMetric_KafkaConsumersInUse(Int64) — 현재 직접 읽기 또는 백그라운드 읽기에 사용 중인 컨슈머의 수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 hash id 수CurrentMetric_IcebergMetadataFilesCacheBytes(Int64) — Iceberg 메타데이터 캐시의 크기(바이트)CurrentMetric_IcebergMetadataFilesCacheFiles(Int64) — Iceberg 메타데이터 캐시에 저장된 파일 수CurrentMetric_ParquetMetadataCacheBytes(Int64) — Parquet 메타데이터 캐시 크기(바이트)CurrentMetric_ParquetMetadataCacheFiles(Int64) — Parquet 메타데이터 캐시에 저장된 파일 수CurrentMetric_AvroSchemaCacheBytes(Int64) — Avro schema cache의 크기(바이트)CurrentMetric_AvroSchemaCacheCells(Int64) — 캐시된 Avro schema 개수CurrentMetric_AvroSchemaRegistryCacheBytes(Int64) — Avro schema registry 캐시의 크기(바이트 단위)CurrentMetric_AvroSchemaRegistryCacheCells(Int64) — Avro schema registry cache에 있는 항목 수CurrentMetric_HiveFilesCacheBytes(Int64) — hive 캐시의 크기(바이트 단위)CurrentMetric_HiveFilesCacheFiles(Int64) — hive cache에 캐시된 파일의 수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 호스트 cache의 크기(바이트)CurrentMetric_DNSHostsCacheSize(Int64) — 캐시에 저장된 DNS 호스트 수CurrentMetric_DNSAddressesCacheBytes(Int64) — DNS 주소 cache 크기(바이트)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) — uncompressed cache의 전체 항목 수입니다. 각 항목은 압축 해제된 데이터 block을 나타냅니다. uncompressed cache는 일반적으로 성능 향상에 도움이 되지 않으므로 가급적 사용을 피해야 합니다.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 컴파일된 코드의 cache에 사용되는 총 바이트 수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 authentication 캐시의 전체 항목 수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 서버로 데이터 파트 집합(MergeTree 테이블용)에 관한 알림이 현재 전송 중인 개수입니다. 이 값은 원격 서버 측에서 측정됩니다.CurrentMetric_CreatedTimersInQueryProfiler(Int64) — QueryProfiler에서 생성된 스레드 로컬 타이머의 수CurrentMetric_ActiveTimersInQueryProfiler(Int64) — QueryProfiler에서 활성 상태인 스레드 로컬 타이머 수CurrentMetric_RefreshableViews(Int64) — 주기적으로 갱신되는 materialized view 수(REFRESH)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) — merge 또는 mutation으로 잠긴 파트 수CurrentMetric_SharedMergeTreeOutdatedPartsInKeeper(Int64) — Keeper에 저장된 오래된 파트 레코드의 수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) — 분산 캐시에 열려 있는 연결 수CurrentMetric_DistrCacheSharedLimitCount(Int64) — DistributedCache::ConnectionPool::SharedLimit 기준으로 열린 연결 수CurrentMetric_DistrCacheUsedConnections(Int64) — 현재 Distributed Cache에 사용 중인 연결 수CurrentMetric_DistrCacheAllocatedConnections(Int64) — 현재 분산 캐시 연결 풀에 할당된 연결 수CurrentMetric_DistrCacheBorrowedConnections(Int64) — 분산 캐시 연결 풀에서 현재 대여 중인 연결 수CurrentMetric_DistrCacheReadRequests(Int64) — 분산 캐시에서 실행된 읽기 요청 수CurrentMetric_DistrCacheWriteRequests(Int64) — 분산 캐시에 대해 실행된 Write 요청 수CurrentMetric_DistrCacheWriteBuffers(Int64) — 분산 캐시 쓰기 버퍼의 수CurrentMetric_DistrCacheReadBuffers(Int64) — 분산 캐시 읽기 버퍼의 수CurrentMetric_DistrCacheServerConnections(Int64) — Distributed Cache에서 ClickHouse 서버로 열려 있는 연결 수CurrentMetric_DistrCacheRegisteredServers(Int64) — 분산 캐시에 등록된 서버 수CurrentMetric_DistrCacheRegisteredServersCurrentAZ(Int64) — 현재 AZ에 등록된 분산 캐시 서버 수CurrentMetric_DistrCacheServerS3CachedClients(Int64) — 분산 캐시 S3 캐시 클라이언트 수CurrentMetric_DistrCacheServerRegistryConnections(Int64) — 분산 캐시에서 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 slot을 기다리며 실행이 중단된 스레드의 총수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) — merge coordinator에서 확인할 수 있는 실행 중인 병합 수입니다.CurrentMetric_CoordinatedMergesCoordinatorAssignedMerges(Int64) — 병합 조정자 상태에 할당된 병합 수입니다.CurrentMetric_CoordinatedMergesWorkerAssignedMerges(Int64) — 병합 워커 상태에 할당된 병합 수입니다.CurrentMetric_SharedDatabaseCatalogTablesInLocalDropDetachQueue(Int64) — Shared Catalog에서 로컬 drop 또는 detach 대상으로 큐에 있는 테이블 수입니다.CurrentMetric_SharedCatalogDropDetachLocalTablesErrors(Int64) — Shared Catalog에서 로컬 테이블을 삭제하거나 분리하는 과정에서 발생한 오류 수입니다.CurrentMetric_SharedCatalogNumberOfObjectsInState(Int64) — Shared Catalog의 현재 상태에서의 객체 수.CurrentMetric_MetadataFromKeeperCacheObjects(Int64) — 디스크 메타데이터 캐시에 있는 객체 수CurrentMetric_LicenseRemainingSeconds(Int64) — 라이선스 유효 기간에 남은 초 수입니다.CurrentMetric_StartupScriptsExecutionState(Int64) — 시작 스크립트 실행 상태: 0 = 아직 완료되지 않음, 1 = 성공, 2 = 실패.CurrentMetric_IsServerShuttingDown(Int64) — 서버가 종료 중인지 여부를 나타냅니다: 0 = 아니오, 1 = 예CurrentMetric_StatelessWorkerThreads(Int64) — 상태 비저장 워커 스레드 풀의 스레드 수입니다.CurrentMetric_StatelessWorkerThreadsActive(Int64) — stateless worker 스레드 풀에서 작업을 실행 중인 스레드 수입니다.CurrentMetric_StatelessWorkerThreadsScheduled(Int64) — stateless worker 스레드 풀에서 큐에 대기 중이거나 현재 활성 상태인 작업 수입니다.CurrentMetric_ReadonlyDisks(Int64) — 디스크 검사 중 읽기 전용으로 표시된 디스크의 수입니다.CurrentMetric_BrokenDisks(Int64) — 디스크 점검 중 손상된 것으로 표시된 디스크의 수입니다.CurrentMetric_TaskTrackerThreads(Int64) — 분산 쿼리의 원격 작업 추적기에 사용되는 스레드 수입니다.CurrentMetric_TaskTrackerThreadsActive(Int64) — 분산 쿼리의 원격 작업 추적기 스레드 풀에서 작업을 실행 중인 스레드 수입니다.CurrentMetric_TaskTrackerThreadsScheduled(Int64) — 분산 쿼리의 원격 task tracker 스레드 풀에서 큐에 대기 중이거나 활성 상태인 작업 수입니다.CurrentMetric_DropDistributedCacheThreads(Int64) — 분산 캐시 삭제 쿼리에 사용되는 스레드 풀의 스레드 수입니다.CurrentMetric_DropDistributedCacheThreadsActive(Int64) — 분산 캐시 삭제 쿼리용 스레드 풀의 활성 스레드 수입니다.CurrentMetric_DropDistributedCacheThreadsScheduled(Int64) — 분산 캐시 삭제용 스레드 풀에서 대기 중이거나 실행 중인 작업 수입니다.CurrentMetric_S3CachedCredentialsProviders(Int64) — 캐시된 자격 증명 제공자의 총 개수CurrentMetric_MergeTreeSnapshotCommitThreads(Int64) — 스냅샷 커밋에 사용되는 스레드 수CurrentMetric_MergeTreeSnapshotCommitThreadsActive(Int64) — 스냅샷을 커밋하는 데 사용되는 활성 스레드 수CurrentMetric_MergeTreeSnapshotCommitThreadsScheduled(Int64) — 스냅샷 커밋에 사용되도록 예약된 스레드 수
예시
스키마
이 테이블은 XML 태그 <schema_type>를 사용해 서로 다른 스키마 유형으로 구성할 수 있습니다. 기본 스키마 유형은 wide이며, 각 메트릭 또는 프로필 이벤트는 별도의 컬럼에 저장됩니다. 이 스키마는 단일 컬럼 읽기에서 가장 높은 성능과 효율을 제공합니다.
transposed 스키마는 메트릭과 이벤트를 행으로 저장하며, system.asynchronous_metric_log와 유사한 형식으로 데이터를 저장합니다. 이 스키마는 병합 중 리소스 사용량을 줄여주므로 리소스가 제한된 환경에 유용합니다.
참고 항목
- metric_log 설정 — 설정을 활성화 및 비활성화하는 방법입니다.
- system.asynchronous_metrics — 주기적으로 계산되는 메트릭을 포함합니다.
- system.events — 발생한 다양한 이벤트를 포함합니다.
- system.metrics — 즉시 계산되는 메트릭을 포함합니다.
- 모니터링 — ClickHouse 모니터링의 기본 개념입니다.