ClickHouse Cloud에서 쿼리하기이 시스템 테이블의 데이터는 ClickHouse Cloud의 각 노드에 로컬로 저장됩니다. 따라서 전체 데이터를 모두 확인하려면
clusterAllReplicas 함수를 사용해야 합니다. 자세한 내용은 여기를 참조하십시오.설명
system.events 테이블의 메모리 및 메트릭 값 이력을 포함하며, 이 데이터는 주기적으로 디스크에 플러시됩니다.
쿼리가 시작되면 query_metric_log_interval 밀리초 간격으로 데이터가 수집됩니다(기본값은 1000으로 설정됨). 쿼리 실행 시간이 query_metric_log_interval보다 길면 쿼리가 종료될 때도 데이터가 수집됩니다.
컬럼
query_id(String) — 쿼리 ID.hostname(LowCardinality(String)) — 쿼리를 실행하는 서버의 호스트명.event_date(Date) — 이벤트 날짜.event_time(DateTime) — 이벤트 시간.event_time_microseconds(DateTime64(6)) — 마이크로초 해상도의 이벤트 시간.memory_usage(UInt64) — 쿼리가 사용하는 RAM 용량입니다. 일부 전용 메모리 유형은 포함되지 않을 수 있습니다.peak_memory_usage(UInt64) — 쿼리가 사용한 최대 RAM 용량입니다.ProfileEvent_Query(UInt64) — 해석되어 실행될 수 있는 쿼리 수입니다. 파싱에 실패했거나 AST 크기 제한, QUOTA 제한 또는 동시에 실행 중인 쿼리 수 제한으로 인해 거부된 쿼리는 포함되지 않습니다. ClickHouse 자체에서 시작한 내부 쿼리는 포함될 수 있습니다. 서브쿼리는 집계하지 않습니다.ProfileEvent_SelectQuery(UInt64) — Query와 동일하지만 SELECT 쿼리에만 적용됩니다.ProfileEvent_InsertQuery(UInt64) — Query와 동일하지만 INSERT 쿼리에만 적용됩니다.ProfileEvent_InitialQuery(UInt64) — Query와 동일하지만 초기 쿼리만 집계합니다 (is_initial_query참조).ProfileEvent_InitialSelectQuery(UInt64) — InitialQuery와 동일하지만 SELECT 쿼리에만 적용됩니다.ProfileEvent_QueriesWithSubqueries(UInt64) — 모든 서브쿼리를 포함한 쿼리 수ProfileEvent_SelectQueriesWithSubqueries(UInt64) — 모든 서브쿼리를 포함한 SELECT 쿼리 수ProfileEvent_InsertQueriesWithSubqueries(UInt64) — 모든 서브쿼리를 포함한 INSERT 쿼리 수ProfileEvent_SelectQueriesWithPrimaryKeyUsage(UInt64) — WHERE 조건 평가에 프라이머리 키(primary key)를 사용하는 SELECT 쿼리 수ProfileEvent_AsyncInsertQuery(UInt64) — InsertQuery와 동일하지만 비동기 INSERT 쿼리에만 적용됩니다.ProfileEvent_AsyncInsertBytes(UInt64) — 비동기 INSERT 쿼리의 데이터 크기(바이트)입니다.ProfileEvent_AsyncInsertRows(UInt64) — 비동기 INSERT 쿼리로 삽입된 행 수입니다.ProfileEvent_AsyncInsertCacheHits(UInt64) — 비동기 INSERT hash id 캐시에서 중복 hash id가 발견된 횟수입니다.ProfileEvent_FailedInternalQuery(UInt64) — 실패한 내부 쿼리 수입니다.ProfileEvent_FailedInternalSelectQuery(UInt64) — FailedInternalQuery와 동일하지만 SELECT 쿼리에만 적용됩니다.ProfileEvent_FailedInternalInsertQuery(UInt64) — FailedInternalQuery와 동일하지만 INSERT 쿼리에만 적용됩니다.ProfileEvent_FailedInitialQuery(UInt64) — 실패한 초기 쿼리 수입니다.ProfileEvent_FailedInitialSelectQuery(UInt64) — FailedInitialQuery와 동일하지만 SELECT 쿼리에만 적용됩니다.ProfileEvent_FailedQuery(UInt64) — 내부 쿼리와 사용자 쿼리를 모두 포함한 전체 실패 쿼리 수입니다.ProfileEvent_FailedSelectQuery(UInt64) — FailedQuery와 같지만 SELECT 쿼리에만 해당합니다.ProfileEvent_FailedInsertQuery(UInt64) — FailedQuery와 같지만 INSERT 쿼리에만 해당합니다.ProfileEvent_FailedAsyncInsertQuery(UInt64) — 실패한 ASYNC INSERT 쿼리 수입니다.ProfileEvent_ASTFuzzerQueries(UInt64) — 서버 측 AST 퍼저가 시도한 퍼징 쿼리 수입니다.ProfileEvent_QueryTimeMicroseconds(UInt64) — 모든 쿼리의 총 실행 시간입니다.ProfileEvent_SelectQueryTimeMicroseconds(UInt64) — SELECT 쿼리의 총 실행 시간입니다.ProfileEvent_InsertQueryTimeMicroseconds(UInt64) — INSERT 쿼리의 총 실행 시간입니다.ProfileEvent_OtherQueryTimeMicroseconds(UInt64) — SELECT 또는 INSERT가 아닌 쿼리의 총 실행 시간입니다.ProfileEvent_FileOpen(UInt64) — 열린 파일 수입니다.ProfileEvent_Seek(UInt64) — ‘lseek’ 함수가 호출된 횟수입니다.ProfileEvent_ReadBufferFromFileDescriptorRead(UInt64) — 파일 디스크립터에서 읽기(read/pread)를 수행한 횟수입니다. 소켓은 포함하지 않습니다.ProfileEvent_ReadBufferFromFileDescriptorReadFailed(UInt64) — 파일 디스크립터에서 읽기(read/pread)가 실패한 횟수입니다.ProfileEvent_ReadBufferFromFileDescriptorReadBytes(UInt64) — 파일 디스크립터에서 읽은 바이트 수입니다. 파일이 압축된 경우 압축된 데이터 크기가 표시됩니다.ProfileEvent_WriteBufferFromFileDescriptorWrite(UInt64) — 파일 디스크립터에 쓰기(write/pwrite)를 수행한 횟수입니다. 소켓은 포함하지 않습니다.ProfileEvent_WriteBufferFromFileDescriptorWriteFailed(UInt64) — 파일 디스크립터에 대한 쓰기(write/pwrite)가 실패한 횟수입니다.ProfileEvent_WriteBufferFromFileDescriptorWriteBytes(UInt64) — 파일 디스크립터에 기록한 바이트 수입니다. 파일이 압축된 경우 압축된 데이터 크기가 표시됩니다.ProfileEvent_FileSync(UInt64) — 파일에 대해 F_FULLFSYNC/fsync/fdatasync 함수가 호출된 횟수입니다.ProfileEvent_DirectorySync(UInt64) — 디렉터리에 대해 F_FULLFSYNC/fsync/fdatasync 함수가 호출된 횟수입니다.ProfileEvent_FileSyncElapsedMicroseconds(UInt64) — 파일에 대해 F_FULLFSYNC/fsync/fdatasync syscall을 기다린 총 시간입니다.ProfileEvent_DirectorySyncElapsedMicroseconds(UInt64) — 디렉터리에 대해 F_FULLFSYNC/fsync/fdatasync syscall을 기다린 총 시간입니다.ProfileEvent_ReadCompressedBytes(UInt64) — 압축된 소스(파일, 네트워크)에서 읽은 바이트 수(압축 해제 전 바이트 수)입니다.ProfileEvent_CompressedReadBufferBlocks(UInt64) — 압축된 소스(파일, 네트워크)에서 읽은 압축 블록 수(서로 독립적으로 압축되는 데이터 블록 수)입니다.ProfileEvent_CompressedReadBufferBytes(UInt64) — 압축된 소스(파일, 네트워크)에서 읽은 압축 해제 후 바이트 수(압축 해제 후 바이트 수)입니다.ProfileEvent_CompressedReadBufferChecksumDoesntMatch(UInt64) — 압축 블록의 체크섬이 일치하지 않은 횟수입니다.ProfileEvent_CompressedReadBufferChecksumDoesntMatchSingleBitMismatch(UInt64) — 압축된 블록의 체크섬 불일치가 단일 비트 차이로 인해 발생한 횟수입니다.ProfileEvent_CompressedReadBufferChecksumDoesntMatchMicroseconds(UInt64) — 압축된 블록의 체크섬 불일치로 인한 비트 뒤집힘을 감지하는 데 소요된 총 시간입니다.ProfileEvent_UncompressedCacheHits(UInt64) — 비압축 캐시에서 데이터 블록을 찾은 횟수입니다(즉, 압축 해제를 하지 않아도 된 횟수).ProfileEvent_UncompressedCacheMisses(UInt64) — 비압축 캐시에서 데이터 블록을 찾지 못한 횟수입니다(즉, 압축 해제가 필요했던 횟수).ProfileEvent_UncompressedCacheWeightLost(UInt64) — 비압축 캐시에서 축출된 바이트 수입니다.ProfileEvent_PageCacheHits(UInt64) — 사용자 공간 페이지 캐시에서 데이터 블록을 찾은 횟수입니다.ProfileEvent_PageCacheMisses(UInt64) — 사용자 공간 페이지 캐시에서 데이터 블록을 찾지 못한 횟수입니다.ProfileEvent_PageCacheWeightLost(UInt64) — 사용자 공간 페이지 캐시에서 축출된 바이트 수입니다ProfileEvent_PageCacheResized(UInt64) — 사용자 공간 페이지 캐시 크기가 자동으로 조정된 횟수입니다(일반적으로 초당 몇 차례 발생하며,memory_worker_period_ms로 제어됩니다).ProfileEvent_PageCacheOvercommitResize(UInt64) — 메모리 할당 중 메모리를 확보하기 위해 사용자 공간 페이지 캐시 크기가 자동으로 조정된 횟수입니다.ProfileEvent_PageCacheReadBytes(UInt64) — 사용자 공간 페이지 캐시에서 읽은 바이트 수입니다.ProfileEvent_MMappedFileCacheHits(UInt64) — MMap 캐시(mmapread_method용)에서 파일을 찾은 횟수로, 다시 mmap할 필요가 없었던 경우입니다.ProfileEvent_MMappedFileCacheMisses(UInt64) — MMap 캐시(mmapread_method용)에서 파일을 찾지 못한 횟수로, 다시 mmap해야 했던 경우입니다.ProfileEvent_OpenedFileCacheHits(UInt64) — opened file cache에서 파일을 찾은 횟수로, 다시 열 필요가 없었던 경우입니다.ProfileEvent_OpenedFileCacheMisses(UInt64) — opened file cache에서 파일을 찾지 못한 횟수로, 다시 열어야 했던 경우입니다.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 buffers(ReadBuffer/WriteBuffer용)의 할당 횟수입니다.ProfileEvent_IOBufferAllocBytes(UInt64) — IO buffers(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) — 함수 실행 시 nulls에 대한 기본 구현이 처리한 행 수ProfileEvent_DefaultImplementationForNullsRowsWithNulls(UInt64) — 함수 실행 시 nulls에 대한 기본 구현이 처리한 행 중 NULL 값을 포함한 행 수ProfileEvent_MarkCacheHits(UInt64) — 항목이 마크 캐시에서 발견되어 마크 파일을 로드할 필요가 없었던 횟수.ProfileEvent_MarkCacheMisses(UInt64) — 항목이 마크 캐시에서 발견되지 않아 마크 파일을 메모리로 로드해야 했던 횟수이며, 이는 비용이 큰 작업으로 쿼리 지연 시간을 증가시킵니다.ProfileEvent_PrimaryIndexCacheHits(UInt64) — 항목이 프라이머리 인덱스 캐시에서 발견되어 인덱스 파일을 로드할 필요가 없었던 횟수.ProfileEvent_PrimaryIndexCacheMisses(UInt64) — 항목이 프라이머리 인덱스 캐시에서 발견되지 않아 인덱스 파일을 메모리로 로드해야 했던 횟수이며, 이는 비용이 큰 작업으로 쿼리 지연 시간을 증가시킵니다.ProfileEvent_IcebergMetadataFilesCacheHits(UInt64) — Iceberg metadata files가 캐시에서 발견된 횟수.ProfileEvent_IcebergMetadataFilesCacheMisses(UInt64) — Iceberg metadata files가 Iceberg metadata cache에서 발견되지 않아 (원격) 디스크에서 읽어야 했던 횟수.ProfileEvent_IcebergMetadataFilesCacheStaleMisses(UInt64) — Iceberg metadata files가 캐시에서 발견되었지만 오래된 것으로 간주되어 (원격) 디스크에서 다시 읽어야 했던 횟수.ProfileEvent_IcebergMetadataFilesCacheWeightLost(UInt64) — Iceberg metadata cache에서 제거된 바이트 수의 대략적인 값.ProfileEvent_IcebergMetadataReadWaitTimeMicroseconds(UInt64) — 데이터 리더가 Iceberg metadata files를 읽고 파싱할 때까지 대기한 총 시간으로, 모든 리더 스레드에 걸쳐 합산한 값입니다.ProfileEvent_ParquetMetadataCacheHits(UInt64) — Parquet metadata가 캐시에서 발견된 횟수.ProfileEvent_ParquetMetadataCacheMisses(UInt64) — Parquet metadata가 캐시에서 발견되지 않아 디스크에서 읽어야 했던 횟수.ProfileEvent_ParquetMetadataCacheWeightLost(UInt64) — Parquet metadata cache에서 제거된 바이트 수의 대략적인 값.ProfileEvent_IcebergIteratorInitializationMicroseconds(UInt64) — iceberg data iterators를 동기적으로 초기화하는 데 소요된 총 시간.ProfileEvent_IcebergMetadataUpdateMicroseconds(UInt64) — iceberg data iterators를 동기적으로 초기화하는 데 소요된 총 시간.ProfileEvent_IcebergMetadataReturnedObjectInfos(UInt64) — iceberg iterator에서 반환된 객체 정보의 총개수.ProfileEvent_IcebergMinMaxNonPrunedDeleteFiles(UInt64) — 파티셔닝 및 시퀀스 번호 기준으로 적합한 쌍 가운데 minmax 분석에서 허용된 data files-position delete file 쌍의 총개수.ProfileEvent_IcebergMinMaxPrunedDeleteFiles(UInt64) — 파티셔닝 및 시퀀스 번호 기준으로 적합한 쌍 가운데 minmax 분석에서 허용된 data files-position delete file 쌍의 총개수.ProfileEvent_VectorSimilarityIndexCacheHits(UInt64) — 인덱스 granule이 벡터 인덱스 캐시에서 발견된 횟수.ProfileEvent_VectorSimilarityIndexCacheMisses(UInt64) — 인덱스 그래뉼을 벡터 인덱스 캐시에서 찾지 못해 디스크에서 읽어야 했던 횟수입니다.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를 사용하는 읽기 버퍼(read buffer)가 생성된 횟수입니다(다른 읽기 메서드 중에서 선택하는 과정에서).ProfileEvent_CreatedReadBufferDirectIOFailed(UInt64) — 데이터 읽기를 위해 O_DIRECT를 사용하는 읽기 버퍼(read buffer) 생성을 시도한 횟수입니다(다른 읽기 메서드 중에서 선택하는 과정에서). 그러나 OS가 이를 허용하지 않아(파일 시스템 지원 부족 또는 기타 이유로) 일반 읽기 메서드로 되돌아갔습니다.ProfileEvent_CreatedReadBufferMMap(UInt64) — 데이터 읽기를 위해 ‘mmap’을 사용하는 읽기 버퍼(read buffer)가 생성된 횟수입니다(다른 읽기 메서드 중에서 선택하는 과정에서).ProfileEvent_CreatedReadBufferMMapFailed(UInt64) — 데이터 읽기를 위해 ‘mmap’을 사용하는 읽기 버퍼(read buffer) 생성을 시도한 횟수입니다(다른 읽기 메서드 중에서 선택하는 과정에서). 그러나 OS가 이를 허용하지 않아(파일 시스템 지원 부족 또는 기타 이유로) 일반 읽기 메서드로 되돌아갔습니다.ProfileEvent_DiskReadElapsedMicroseconds(UInt64) — read syscall을 기다리는 데 소요된 총 시간입니다. 여기에는 페이지 캐시에서의 읽기도 포함됩니다.ProfileEvent_DiskWriteElapsedMicroseconds(UInt64) — write syscall을 기다리는 데 소요된 총 시간입니다. 여기에는 페이지 캐시에 대한 쓰기도 포함됩니다.ProfileEvent_NetworkReceiveElapsedMicroseconds(UInt64) — 네트워크에서 데이터를 수신하기 위해 대기하거나 실제로 수신하는 데 소요된 총 시간입니다. ClickHouse 관련 네트워크 상호작용만 포함되며, 타사 라이브러리에 의한 것은 포함되지 않습니다.ProfileEvent_NetworkSendElapsedMicroseconds(UInt64) — 네트워크로 데이터를 전송하기 위해 대기하거나 실제로 전송하는 데 소요된 총 시간입니다. ClickHouse 관련 네트워크 상호작용만 포함되며, 타사 라이브러리에 의한 것은 포함되지 않습니다.ProfileEvent_NetworkReceiveBytes(UInt64) — 네트워크에서 수신한 총 바이트 수입니다. ClickHouse 관련 네트워크 상호작용만 포함되며, 타사 라이브러리에 의한 것은 포함되지 않습니다.ProfileEvent_NetworkSendBytes(UInt64) — 네트워크로 전송한 총 바이트 수입니다. ClickHouse 관련 네트워크 상호작용만 포함되며, 타사 라이브러리에 의한 것은 포함되지 않습니다.ProfileEvent_FilterPartsByVirtualColumnsMicroseconds(UInt64) — filterPartsByVirtualColumns 함수에서 소요된 총 시간입니다.ProfileEvent_GlobalThreadPoolExpansions(UInt64) — Global Thread 풀에 새 스레드가 추가된 총 횟수를 집계합니다. 이 메트릭은 처리 수요 증가에 대응하기 위해 Global Thread 풀이 얼마나 자주 확장되었는지를 나타냅니다.ProfileEvent_GlobalThreadPoolShrinks(UInt64) — 스레드를 제거하여 Global Thread 풀이 축소된 총 횟수를 집계합니다. 이는 idle 스레드 수가 max_thread_pool_free_size를 초과할 때 발생하며, 스레드 사용량 감소에 따라 Global Thread 풀 크기가 조정되었음을 나타냅니다.ProfileEvent_GlobalThreadPoolThreadCreationMicroseconds(UInt64) — 새 스레드가 시작될 때까지 대기한 총 시간입니다.ProfileEvent_GlobalThreadPoolLockWaitMicroseconds(UInt64) — 스레드가 Global Thread 풀에서 잠금을 기다리는 데 소요한 총 시간입니다.ProfileEvent_GlobalThreadPoolJobs(UInt64) — Global Thread 풀에 추가된 작업(job) 수를 집계합니다.ProfileEvent_GlobalThreadPoolJobWaitTimeMicroseconds(UInt64) — 작업이 스레드 풀에 예약된 시점부터 worker thread가 실행을 위해 가져갈 때까지의 경과 시간을 측정합니다. 이 메트릭은 작업 처리 지연을 식별하는 데 도움이 되며, 새 작업에 대한 스레드 풀의 응답성을 보여줍니다.ProfileEvent_LocalThreadPoolExpansions(UInt64) — 로컬 스레드 풀을 확장하기 위해 Global Thread 풀에서 스레드를 빌린 총 횟수를 나타냅니다.ProfileEvent_LocalThreadPoolShrinks(UInt64) — 로컬 스레드 풀에서 Global Thread 풀로 스레드를 반환한 총 횟수를 나타냅니다.ProfileEvent_LocalThreadPoolThreadCreationMicroseconds(UInt64) — 로컬 스레드 풀이 글로벌 풀에서 스레드를 빌리기 위해 대기한 총 시간입니다.ProfileEvent_LocalThreadPoolLockWaitMicroseconds(UInt64) — 로컬 스레드 풀에서 스레드가 잠금을 기다리며 소요한 총 시간입니다.ProfileEvent_LocalThreadPoolJobs(UInt64) — 로컬 스레드 풀에 추가된 작업 수를 나타냅니다.ProfileEvent_LocalThreadPoolBusyMicroseconds(UInt64) — 스레드가 실제 작업을 실행하는 데 소요한 총 시간입니다.ProfileEvent_LocalThreadPoolJobWaitTimeMicroseconds(UInt64) — 작업이 스레드 풀에 예약된 시점부터 worker thread가 실행을 위해 가져갈 때까지의 경과 시간을 측정합니다. 이 메트릭은 작업 처리 지연을 식별하는 데 도움이 되며, 새 작업에 대한 스레드 풀의 응답성을 보여줍니다.ProfileEvent_DiskS3GetRequestThrottlerCount(UInt64) — 스로틀러를 거친 DiskS3 GET 및 SELECT 요청 수로, 차단된 요청과 차단되지 않은 요청을 모두 포함합니다.ProfileEvent_DiskS3GetRequestThrottlerBlocked(UInt64) — 스로틀러에 의해 차단된 DiskS3 GET 및 SELECT 요청 수입니다.ProfileEvent_DiskS3GetRequestThrottlerSleepMicroseconds(UInt64) — DiskS3 GET 및 SELECT 요청 스로틀링을 준수하기 위해 쿼리가 대기한 총 시간입니다.ProfileEvent_DiskS3PutRequestThrottlerCount(UInt64) — 스로틀러를 거친 DiskS3 PUT, COPY, POST 및 LIST 요청 수로, 차단된 요청과 차단되지 않은 요청을 모두 포함합니다.ProfileEvent_DiskS3PutRequestThrottlerBlocked(UInt64) — 스로틀러에 의해 차단된 DiskS3 PUT, COPY, POST 및 LIST 요청 수입니다.ProfileEvent_DiskS3PutRequestThrottlerSleepMicroseconds(UInt64) — DiskS3 PUT, COPY, POST 및 LIST 요청 스로틀링을 준수하기 위해 쿼리가 대기한 총 시간입니다.ProfileEvent_S3GetRequestThrottlerCount(UInt64) — 스로틀러를 거친 S3 GET 및 SELECT 요청 수로, 차단된 요청과 차단되지 않은 요청을 모두 포함합니다.ProfileEvent_S3GetRequestThrottlerBlocked(UInt64) — 스로틀러에 의해 차단된 S3 GET 및 SELECT 요청 수입니다.ProfileEvent_S3GetRequestThrottlerSleepMicroseconds(UInt64) — S3 GET 및 SELECT 요청 스로틀링을 준수하기 위해 쿼리가 대기한 총 시간입니다.ProfileEvent_S3PutRequestThrottlerCount(UInt64) — 스로틀러를 거친 S3 PUT, COPY, POST 및 LIST 요청 수로, 차단된 요청과 차단되지 않은 요청을 모두 포함합니다.ProfileEvent_S3PutRequestThrottlerBlocked(UInt64) — 스로틀러에 의해 차단된 S3 PUT, COPY, POST 및 LIST 요청 수입니다.ProfileEvent_S3PutRequestThrottlerSleepMicroseconds(UInt64) — S3 PUT, COPY, POST 및 LIST 요청 스로틀링을 준수하기 위해 쿼리가 대기한 총 시간입니다.ProfileEvent_ACMEAPIRequests(UInt64) — 발생한 ACME API 요청 수입니다.ProfileEvent_ACMECertificateOrders(UInt64) — 생성된 ACME 인증서 주문 수입니다.ProfileEvent_DiskAzureReadMicroseconds(UInt64) — Azure 디스크 읽기 요청을 기다리는 데 걸린 총 시간입니다.ProfileEvent_DiskAzureReadRequestsCount(UInt64) — Azure 디스크 읽기 요청 수입니다.ProfileEvent_DiskAzureReadRequestsErrors(UInt64) — Azure 디스크 읽기 요청 오류 수입니다.ProfileEvent_DiskAzureReadRequestsThrottling(UInt64) — 스로틀링된 Azure 디스크 읽기 요청 수입니다.ProfileEvent_DiskAzureReadRequestsRedirects(UInt64) — Azure 디스크 읽기 요청 리디렉션 수입니다.ProfileEvent_DiskAzureWriteMicroseconds(UInt64) — Azure 디스크 쓰기 요청을 기다리는 데 걸린 총 시간입니다.ProfileEvent_DiskAzureWriteRequestsCount(UInt64) — Azure 디스크 쓰기 요청 수입니다.ProfileEvent_DiskAzureWriteRequestsErrors(UInt64) — Azure 디스크 쓰기 요청 오류 수입니다.ProfileEvent_DiskAzureWriteRequestsThrottling(UInt64) — 스로틀링된 Azure 디스크 쓰기 요청 수입니다.ProfileEvent_DiskAzureWriteRequestsRedirects(UInt64) — Azure 디스크 쓰기 요청 리디렉션 수입니다.ProfileEvent_AzureReadMicroseconds(UInt64) — Azure 읽기 요청을 기다리는 데 걸린 총 시간입니다.ProfileEvent_AzureReadRequestsCount(UInt64) — Azure 읽기 요청 수입니다.ProfileEvent_AzureReadRequestsErrors(UInt64) — Azure 읽기 요청 오류 수입니다.ProfileEvent_AzureReadRequestsThrottling(UInt64) — 스로틀링된 Azure 읽기 요청 수입니다.ProfileEvent_AzureReadRequestsRedirects(UInt64) — Azure 읽기 요청 리디렉션 수입니다.ProfileEvent_AzureWriteMicroseconds(UInt64) — Azure 쓰기 요청을 기다리는 데 걸린 총 시간입니다.ProfileEvent_AzureWriteRequestsCount(UInt64) — Azure 쓰기 요청 수입니다.ProfileEvent_AzureWriteRequestsErrors(UInt64) — Azure 쓰기 요청 오류 수입니다.ProfileEvent_AzureWriteRequestsThrottling(UInt64) — 스로틀링된 Azure 쓰기 요청 수입니다.ProfileEvent_AzureWriteRequestsRedirects(UInt64) — Azure 쓰기 요청 리디렉션 수입니다.ProfileEvent_AzureGetRequestThrottlerCount(UInt64) — 스로틀러를 거친 Azure GET 요청 수입니다. 차단된 요청과 차단되지 않은 요청이 모두 포함됩니다.ProfileEvent_AzureGetRequestThrottlerBlocked(UInt64) — 스로틀러에 의해 차단된 Azure GET 요청 수입니다.ProfileEvent_AzureGetRequestThrottlerSleepMicroseconds(UInt64) — Azure GET 요청 스로틀링에 맞추기 위해 쿼리가 대기한 총 시간입니다.ProfileEvent_DiskAzureGetRequestThrottlerCount(UInt64) — 스로틀러를 거친 Azure 디스크 GET 요청 수입니다. 차단된 요청과 차단되지 않은 요청이 모두 포함됩니다.ProfileEvent_DiskAzureGetRequestThrottlerBlocked(UInt64) — 스로틀러에 의해 차단된 Azure 디스크 GET 요청 수입니다.ProfileEvent_DiskAzureGetRequestThrottlerSleepMicroseconds(UInt64) — Azure 디스크 GET 요청 스로틀링에 맞추기 위해 쿼리가 대기한 총 시간입니다.ProfileEvent_AzurePutRequestThrottlerCount(UInt64) — 스로틀러를 거친 Azure PUT 요청 수입니다. 차단된 요청과 차단되지 않은 요청을 모두 포함합니다.ProfileEvent_AzurePutRequestThrottlerBlocked(UInt64) — 스로틀러에 의해 차단된 Azure PUT 요청 수입니다.ProfileEvent_AzurePutRequestThrottlerSleepMicroseconds(UInt64) — Azure PUT 요청 스로틀링에 맞추기 위해 쿼리가 대기한 총 시간입니다.ProfileEvent_DiskAzurePutRequestThrottlerCount(UInt64) — 스로틀러를 거친 Azure 디스크 PUT 요청 수입니다. 차단된 요청과 차단되지 않은 요청을 모두 포함합니다.ProfileEvent_DiskAzurePutRequestThrottlerBlocked(UInt64) — 스로틀러에 의해 차단된 Azure 디스크 PUT 요청 수입니다.ProfileEvent_DiskAzurePutRequestThrottlerSleepMicroseconds(UInt64) — Azure 디스크 PUT 요청 스로틀링에 맞추기 위해 쿼리가 대기한 총 시간입니다.ProfileEvent_RemoteReadThrottlerBytes(UInt64) — ‘max_remote_read_network_bandwidth_for_server’/‘max_remote_read_network_bandwidth’ 스로틀러를 거친 바이트 수입니다.ProfileEvent_RemoteReadThrottlerSleepMicroseconds(UInt64) — ‘max_remote_read_network_bandwidth_for_server’/‘max_remote_read_network_bandwidth’ 스로틀링에 맞추기 위해 쿼리가 대기한 총 시간입니다.ProfileEvent_RemoteWriteThrottlerBytes(UInt64) — ‘max_remote_write_network_bandwidth_for_server’/‘max_remote_write_network_bandwidth’ 스로틀러를 거친 바이트 수입니다.ProfileEvent_RemoteWriteThrottlerSleepMicroseconds(UInt64) — ‘max_remote_write_network_bandwidth_for_server’/‘max_remote_write_network_bandwidth’ 스로틀링에 맞추기 위해 쿼리가 대기한 총 시간입니다.ProfileEvent_LocalReadThrottlerBytes(UInt64) — ‘max_local_read_bandwidth_for_server’/‘max_local_read_bandwidth’ 스로틀러를 거친 바이트 수입니다.ProfileEvent_LocalReadThrottlerSleepMicroseconds(UInt64) — ‘max_local_read_bandwidth_for_server’/‘max_local_read_bandwidth’ 스로틀링에 맞추기 위해 쿼리가 대기한 총 시간입니다.ProfileEvent_LocalWriteThrottlerBytes(UInt64) — ‘max_local_write_bandwidth_for_server’/‘max_local_write_bandwidth’ 스로틀러를 거친 바이트 수입니다.ProfileEvent_LocalWriteThrottlerSleepMicroseconds(UInt64) — ‘max_local_write_bandwidth_for_server’/‘max_local_write_bandwidth’ 스로틀링에 맞추기 위해 쿼리가 대기한 총 시간입니다.ProfileEvent_BackupThrottlerBytes(UInt64) — ‘max_backup_bandwidth_for_server’ 스로틀러를 통과한 바이트 수.ProfileEvent_BackupThrottlerSleepMicroseconds(UInt64) — ‘max_backup_bandwidth_for_server’ 스로틀링에 맞추기 위해 쿼리가 대기한 총 시간.ProfileEvent_MergesThrottlerBytes(UInt64) — ‘max_merges_bandwidth_for_server’ 스로틀러를 통과한 바이트 수.ProfileEvent_MergesThrottlerSleepMicroseconds(UInt64) — ‘max_merges_bandwidth_for_server’ 스로틀링에 맞추기 위해 쿼리가 대기한 총 시간.ProfileEvent_MutationsThrottlerBytes(UInt64) — ‘max_mutations_bandwidth_for_server’ 스로틀러를 통과한 바이트 수.ProfileEvent_MutationsThrottlerSleepMicroseconds(UInt64) — ‘max_mutations_bandwidth_for_server’ 스로틀링에 맞추기 위해 쿼리가 대기한 총 시간.ProfileEvent_UserThrottlerBytes(UInt64) — ‘max_network_bandwidth_for_user’ 스로틀러를 통과한 바이트 수.ProfileEvent_UserThrottlerSleepMicroseconds(UInt64) — ‘max_network_bandwidth_for_user’ 스로틀링에 맞추기 위해 쿼리가 대기한 총 시간.ProfileEvent_AllUsersThrottlerBytes(UInt64) — ‘max_network_bandwidth_for_all_users’ 스로틀러를 통과한 바이트 수.ProfileEvent_AllUsersThrottlerSleepMicroseconds(UInt64) — ‘max_network_bandwidth_for_all_users’ 스로틀링에 맞추기 위해 쿼리가 대기한 총 시간.ProfileEvent_QueryRemoteReadThrottlerBytes(UInt64) — ‘max_remote_read_network_bandwidth’ 스로틀러를 통과한 바이트 수.ProfileEvent_QueryRemoteReadThrottlerSleepMicroseconds(UInt64) — ‘max_remote_read_network_bandwidth’ 스로틀링에 맞추기 위해 쿼리가 대기한 총 시간.ProfileEvent_QueryRemoteWriteThrottlerBytes(UInt64) — ‘max_remote_write_network_bandwidth’ 스로틀러를 통과한 바이트 수.ProfileEvent_QueryRemoteWriteThrottlerSleepMicroseconds(UInt64) — ‘max_remote_write_network_bandwidth’ 스로틀링에 맞추기 위해 쿼리가 대기한 총 시간.ProfileEvent_QueryLocalReadThrottlerBytes(UInt64) — ‘max_local_read_bandwidth’ 스로틀러를 통과한 바이트 수.ProfileEvent_QueryLocalReadThrottlerSleepMicroseconds(UInt64) — ‘max_local_read_bandwidth’ 스로틀링에 맞추기 위해 쿼리가 대기한 총 시간.ProfileEvent_QueryLocalWriteThrottlerBytes(UInt64) — ‘max_local_write_bandwidth’ 스로틀러를 통과한 바이트 수.ProfileEvent_QueryLocalWriteThrottlerSleepMicroseconds(UInt64) — 쿼리가 ‘max_local_write_bandwidth’ 스로틀링 설정에 맞추기 위해 대기한 총 시간입니다.ProfileEvent_QueryBackupThrottlerBytes(UInt64) — ‘max_backup_bandwidth’ 스로틀러를 통과한 총 바이트 수입니다.ProfileEvent_QueryBackupThrottlerSleepMicroseconds(UInt64) — 쿼리가 ‘max_backup_bandwidth’ 스로틀링 설정에 맞추기 위해 대기한 총 시간입니다.ProfileEvent_DistrCacheReadThrottlerBytes(UInt64) — ‘max_distributed_cache_read_bandwidth_for_server’ 스로틀러를 통과한 총 바이트 수입니다.ProfileEvent_DistrCacheReadThrottlerSleepMicroseconds(UInt64) — 쿼리가 ‘max_distributed_cache_read_bandwidth_for_server’ 스로틀링 설정에 맞추기 위해 대기한 총 시간입니다.ProfileEvent_DistrCacheWriteThrottlerBytes(UInt64) — ‘max_distributed_cache_write_bandwidth_for_server’ 스로틀러를 통과한 총 바이트 수입니다.ProfileEvent_DistrCacheWriteThrottlerSleepMicroseconds(UInt64) — 쿼리가 ‘max_distributed_cache_write_bandwidth_for_server’ 스로틀링 설정에 맞추기 위해 대기한 총 시간입니다.ProfileEvent_ThrottlerSleepMicroseconds(UInt64) — 쿼리가 모든 스로틀링 설정에 맞추기 위해 대기한 총 시간입니다.ProfileEvent_ReadTasksWithAppliedPatches(UInt64) — 패치 파트가 하나라도 적용된 읽기 작업의 총 개수입니다.ProfileEvent_PatchesAppliedInAllReadTasks(UInt64) — 모든 읽기 작업에서 적용된 패치 파트의 총 개수입니다.ProfileEvent_PatchesMergeAppliedInAllReadTasks(UInt64) — 모든 읽기 작업에서 Merge 모드로 적용된 패치 파트의 총 개수입니다.ProfileEvent_PatchesJoinAppliedInAllReadTasks(UInt64) — 모든 읽기 작업에서 Join 모드로 적용된 패치 파트의 총 개수입니다.ProfileEvent_PatchesReadRows(UInt64) — 패치 파트에서 읽은 행의 총 개수입니다.ProfileEvent_PatchesReadUncompressedBytes(UInt64) — 패치 파트에서 읽은 비압축 바이트의 총 바이트 수입니다.ProfileEvent_PatchesJoinRowsAddedToHashTable(UInt64) — Join 모드로 패치 파트를 적용할 때 해시 테이블에 추가된 행의 총 개수입니다.ProfileEvent_ApplyPatchesMicroseconds(UInt64) — 블록에 패치 파트를 적용하는 데 소요된 총 시간입니다.ProfileEvent_ReadPatchesMicroseconds(UInt64) — 패치 파트를 읽는 데 소요된 총 시간입니다.ProfileEvent_BuildPatchesMergeMicroseconds(UInt64) — Merge 모드로 패치 파트를 적용하기 위한 인덱스를 구축하는 데 소요된 총 시간입니다.ProfileEvent_BuildPatchesJoinMicroseconds(UInt64) — Join 모드로 패치 파트를 적용하기 위한 인덱스와 해시 테이블을 구축하는 데 소요된 총 시간입니다.ProfileEvent_AnalyzePatchRangesMicroseconds(UInt64) — 패치 파트의 인덱스를 분석하는 데 소요된 총 시간입니다.ProfileEvent_ReadTasksWithAppliedMutationsOnFly(UInt64) — 뮤테이션이 실시간으로 하나라도 적용된 읽기 작업의 총 개수입니다.ProfileEvent_MutationsAppliedOnFlyInAllReadTasks(UInt64) — 모든 읽기 작업에서 실시간으로 적용된 뮤테이션의 총 개수입니다.ProfileEvent_PatchesAcquireLockTries(UInt64) — 경량 업데이트를 실행하기 위해 잠금 획득을 시도한 총 횟수입니다.ProfileEvent_PatchesAcquireLockMicroseconds(UInt64) — 경량 업데이트를 실행하기 위한 잠금 획득에 소요된 총 마이크로초 수ProfileEvent_DiskObjectStorageWaitBlobRemovalMicroseconds(UInt64) — metadata 트랜잭션을 커밋한 후 대기 중인 blob 제거를 기다리는 데 소요된 시간ProfileEvent_SchedulerIOReadRequests(UInt64) — IO 읽기를 위해 scheduler를 거친 리소스 요청 수입니다.ProfileEvent_SchedulerIOReadBytes(UInt64) — IO 읽기를 위해 scheduler를 거친 바이트 수입니다.ProfileEvent_SchedulerIOReadWaitMicroseconds(UInt64) — 쿼리가 IO 읽기용 리소스 요청을 기다린 총 시간입니다.ProfileEvent_SchedulerIOWriteRequests(UInt64) — IO 쓰기를 위해 scheduler를 거친 리소스 요청 수입니다.ProfileEvent_SchedulerIOWriteBytes(UInt64) — IO 쓰기를 위해 scheduler를 거친 바이트 수입니다.ProfileEvent_SchedulerIOWriteWaitMicroseconds(UInt64) — 쿼리가 IO 쓰기용 리소스 요청을 기다린 총 시간입니다.ProfileEvent_QueryMaskingRulesMatch(UInt64) — 쿼리 마스킹 규칙이 성공적으로 일치한 횟수입니다.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) — 필요한 데이터 파트가 어떤 레플리카에도 존재하지 않았던 횟수입니다(현재 오프라인인 레플리카에도 없습니다). 이러한 데이터 파트는 확실히 손실된 것입니다. 이는 비동기 복제(asynchronous replication)에서 정상적으로 발생할 수 있습니다(quorum inserts가 활성화되지 않은 경우). 데이터 파트가 기록된 레플리카에 장애가 발생한 뒤 다시 온라인 상태가 되었을 때, 해당 데이터 파트를 포함하지 않는 경우입니다.ProfileEvent_ReplicatedCoveredPartsInZooKeeperOnStart(UInt64) — 디버깅용입니다. ZooKeeper에 포함하는 파트가 있지만 디스크에는 존재하지 않는 파트 수입니다. server 시작 시 확인됩니다.ProfileEvent_QuorumParts(UInt64) — quorum으로 기록된 데이터 파트 수입니다. 동기 삽입은 1개의 파트로 계산되며, async inserts를 플러시하는 삽입은 async inserts 개수만큼 계산될 수 있습니다.ProfileEvent_QuorumWaitMicroseconds(UInt64) — 삽입 중 quorum을 기다리는 데 소요된 총 시간입니다.ProfileEvent_QuorumFailedInserts(UInt64) — quorum에 도달하지 못해 실패한 삽입 횟수입니다.ProfileEvent_InsertedRows(UInt64) — 모든 테이블에 INSERT된 행 수입니다.ProfileEvent_InsertedBytes(UInt64) — 모든 테이블에 INSERT된 바이트 수입니다(압축되지 않은 기준이며, 컬럼이 메모리에 저장되는 형태 기준).ProfileEvent_DelayedInserts(UInt64) — 파티션의 활성 데이터 파트 수가 많아 MergeTree 테이블에 대한 블록 INSERT가 스로틀링된 횟수입니다.ProfileEvent_RejectedInserts(UInt64) — 파티션의 활성 데이터 파트 수가 많아 MergeTree 테이블에 대한 블록 INSERT가 ‘Too many parts’ 예외와 함께 거부된 횟수입니다.ProfileEvent_DelayedInsertsMilliseconds(UInt64) — 파티션의 활성 데이터 파트 수가 많아 MergeTree 테이블에 대한 블록 INSERT가 스로틀링되는 동안 소요된 총 밀리초 수입니다.ProfileEvent_DelayedMutations(UInt64) — 테이블의 미완료 뮤테이션 수가 많아 MergeTree 테이블의 뮤테이션이 스로틀링된 횟수입니다.ProfileEvent_RejectedMutations(UInt64) — 테이블의 미완료 뮤테이션 수가 많아 MergeTree 테이블의 뮤테이션이 ‘Too many mutations’ 예외와 함께 거부된 횟수입니다.ProfileEvent_DelayedMutationsMilliseconds(UInt64) — 테이블의 미완료 뮤테이션 수가 많아 MergeTree 테이블의 뮤테이션이 스로틀링되는 동안 소요된 총 밀리초 수입니다.ProfileEvent_RejectedLightweightUpdates(UInt64) — 패치의 압축되지 않은 바이트 수가 너무 많아 경량 업데이트가 거부된 횟수입니다.ProfileEvent_DistributedDelayedInserts(UInt64) — 대기 중인 바이트 수가 많아 분산 테이블에 대한 블록 INSERT가 스로틀링된 횟수입니다.ProfileEvent_DistributedRejectedInserts(UInt64) — 대기 중인 바이트 수가 많아 분산 테이블에 대한 블록 INSERT가 ‘Too many bytes’ 예외와 함께 거부된 횟수입니다.ProfileEvent_DistributedDelayedInsertsMilliseconds(UInt64) — 대기 중인 바이트 수가 많아 분산 테이블에 대한 블록 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) — 분산 테이블에 INSERT하는 동안 레플리카가 읽기 전용이어서 건너뛴 횟수입니다ProfileEvent_DistributedConnectionFailAtAll(UInt64) — 모든 재시도가 끝난 뒤에도 분산 연결이 실패한 총횟수입니다.ProfileEvent_Shards(UInt64) — 쿼리에 관련된 세그먼트 수로, 모든 분산 테이블과 테이블 함수에 걸쳐 합산한 값입니다. 단일 호스트가 여러 테이블에 나타나면 여러 번 계산됩니다. 이 수는skip_unavailable_shards설정으로 건너뛴 세그먼트를 포함한 전체 예상 세그먼트 수를 나타냅니다.ProfileEvent_HedgedRequestsChangeReplica(UInt64) — hedged requests에서 레플리카 변경 대기 timeout이 만료된 총 횟수입니다.ProfileEvent_SuspendSendingQueryToShard(UInt64) — async_query_sending_for_remote가 활성화된 경우, 세그먼트로 쿼리 전송이 일시 중단된 총 횟수입니다.ProfileEvent_CompileFunction(UInt64) — 생성된 LLVM 코드의 컴파일(복잡한 표현식을 위한 융합 함수를 생성하기 위한 작업)이 시작된 횟수입니다.ProfileEvent_CompiledFunctionExecute(UInt64) — 컴파일된 함수가 실행된 횟수입니다.ProfileEvent_CompileExpressionsMicroseconds(UInt64) — 표현식을 LLVM 코드로 컴파일하는 데 소요된 총 시간입니다.ProfileEvent_CompileExpressionsBytes(UInt64) — 표현식 컴파일에 사용된 바이트 수입니다.ProfileEvent_ExecuteShellCommand(UInt64) — 셸 명령이 실행된 횟수입니다.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 연산의 probe 테이블에 있는 전체 행 수입니다.ProfileEvent_JoinResultRowCount(UInt64) — JOIN 연산 결과의 전체 행 수입니다.ProfileEvent_JoinNonJoinedTransformBlockCount(UInt64) — NonJoinedBlocksTransform이 출력한 블록 수입니다.ProfileEvent_JoinNonJoinedTransformRowCount(UInt64) — NonJoinedBlocksTransform이 출력한 비조인 행 수입니다.ProfileEvent_JoinDelayedJoinedTransformBlockCount(UInt64) — DelayedJoinedBlocksWorkerTransform이 출력한 블록 수입니다.ProfileEvent_JoinDelayedJoinedTransformRowCount(UInt64) — DelayedJoinedBlocksWorkerTransform이 출력한 행 수입니다.ProfileEvent_JoinSpillingHashJoinSwitchedToGraceJoin(UInt64) — SpillingHashJoin에서 메모리 제한으로 인해 (Concurrent)HashJoin이 GraceHashJoin으로 전환된 횟수입니다.ProfileEvent_JoinReorderMicroseconds(UInt64) — JOIN 재정렬 알고리즘 실행에 소요된 총 시간입니다.ProfileEvent_JoinOptimizeMicroseconds(UInt64) — JOIN 계획 최적화 실행에 소요된 총 시간입니다.ProfileEvent_QueryPlanOptimizeMicroseconds(UInt64) — 쿼리 계획 최적화 실행에 소요된 총 시간입니다.ProfileEvent_DeltaLakePartitionPrunedFiles(UInt64) — DeltaLake 파티션 프루닝 중 건너뛴 파일 수입니다.ProfileEvent_DeltaLakeSnapshotInitializations(UInt64) — DeltaLake 테이블 스냅샷이 초기화된 횟수입니다(객체 스토리지에서 로드).ProfileEvent_DeltaLakeScannedFiles(UInt64) — DeltaLake 스캔 콜백 중 스캔한 파일 수입니다.ProfileEvent_SlowRead(UInt64) — 파일 읽기 중 느린 읽기 횟수입니다. 이는 시스템 과부하를 나타냅니다. 임계값은 read_backoff_* 설정으로 제어됩니다.ProfileEvent_ReadBackoff(UInt64) — 느린 읽기로 인해 쿼리 처리 스레드 수가 줄어든 횟수입니다.ProfileEvent_ReplicaPartialShutdown(UInt64) — ZooKeeper에서 세션이 만료되어 복제된 테이블(Replicated 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) — 로드된 프라이머리 인덱스(primary index) 파일 수입니다.ProfileEvent_LoadedPrimaryIndexRows(UInt64) — 로드된 프라이머리 키(primary key) 행 수입니다.ProfileEvent_LoadedPrimaryIndexBytes(UInt64) — 로드된 프라이머리 키의 행 수입니다.ProfileEvent_Merge(UInt64) — 시작된 백그라운드 머지 수입니다.ProfileEvent_MergeSourceParts(UInt64) — 머지 대상으로 예약된 소스 파트 수입니다.ProfileEvent_MergedRows(UInt64) — 백그라운드 머지를 위해 읽은 행 수입니다. 머지 전의 행 수입니다.ProfileEvent_MergedColumns(UInt64) — 머지의 수평 단계에서 머지된 컬럼 수입니다.ProfileEvent_GatheredColumns(UInt64) — 머지의 수직 단계에서 수집된 컬럼 수입니다.ProfileEvent_MergedProjections(UInt64) — MergeTree 머지 중 머지된(재구축되지 않은) 프로젝션 수입니다.ProfileEvent_RebuiltProjections(UInt64) — MergeTree 머지 중 처음부터 다시 빌드된 프로젝션 수입니다.ProfileEvent_MergedUncompressedBytes(UInt64) — 백그라운드 머지를 위해 읽은 비압축 바이트 수(메모리에 저장된 컬럼 기준)입니다. 머지 전의 값입니다.ProfileEvent_MergeWrittenRows(UInt64) — 머지 중 기록된 행 수입니다.ProfileEvent_MergeTotalMilliseconds(UInt64) — 백그라운드 머지에 소요된 총 시간입니다.ProfileEvent_MergeExecuteMilliseconds(UInt64) — 백그라운드 머지 실행에 사용된 총 작업 시간입니다.ProfileEvent_MergeCommitMilliseconds(UInt64) — 머지 결과를 커밋하는 데 소요된 총 시간입니다(파트 이름 변경, 체크섬 검증, ZooKeeper 업데이트).ProfileEvent_MergeHorizontalStageTotalMilliseconds(UInt64) — 백그라운드 머지의 수평 단계에 소요된 총 시간입니다.ProfileEvent_MergeHorizontalStageExecuteMilliseconds(UInt64) — 백그라운드 머지의 수평 단계 실행에 사용된 총 작업 시간입니다.ProfileEvent_MergeVerticalStageTotalMilliseconds(UInt64) — 백그라운드 머지의 수직 단계에 소요된 총 시간입니다.ProfileEvent_MergeVerticalStageExecuteMilliseconds(UInt64) — 백그라운드 머지의 수직 단계 실행에 사용된 총 작업 시간입니다.ProfileEvent_MergeTextIndexStageTotalMilliseconds(UInt64) — 백그라운드 머지의 텍스트 인덱스 단계에 소요된 총 시간입니다.ProfileEvent_MergeTextIndexStageExecuteMilliseconds(UInt64) — 백그라운드 머지의 텍스트 인덱스 단계 실행에 사용된 총 작업 시간입니다.ProfileEvent_MergeProjectionStageTotalMilliseconds(UInt64) — 백그라운드 머지의 프로젝션 단계에 소요된 총 시간입니다.ProfileEvent_MergeProjectionStageExecuteMilliseconds(UInt64) — 백그라운드 머지의 프로젝션 단계 실행에 사용된 총 작업 시간입니다.ProfileEvent_MergePrewarmStageTotalMilliseconds(UInt64) — 백그라운드 머지의 예열 단계에 소요된 총 시간입니다.ProfileEvent_MergePrewarmStageExecuteMilliseconds(UInt64) — 백그라운드 머지의 예열 단계 실행에 사용된 총 작업 시간입니다.ProfileEvent_MergesRejectedByMemoryLimit(UInt64) — 메모리 제한으로 인해 거부된 백그라운드 머지 수ProfileEvent_MergingSortedMilliseconds(UInt64) — 정렬된 컬럼을 머지하는 데 소요된 총 시간ProfileEvent_AggregatingSortedMilliseconds(UInt64) — 정렬된 컬럼을 집계하는 데 소요된 총 시간ProfileEvent_CoalescingSortedMilliseconds(UInt64) — 정렬된 컬럼을 병합하는 데 소요된 총 시간ProfileEvent_CollapsingSortedMilliseconds(UInt64) — 정렬된 컬럼을 축약하는 데 소요된 총 시간ProfileEvent_ReplacingSortedMilliseconds(UInt64) — 정렬된 컬럼을 대체하는 데 소요된 총 시간ProfileEvent_SummingSortedMilliseconds(UInt64) — 정렬된 컬럼을 합산하는 데 소요된 총 시간ProfileEvent_VersionedCollapsingSortedMilliseconds(UInt64) — 정렬된 컬럼을 버전 기반으로 축약하는 데 소요된 총 시간ProfileEvent_GatheringColumnMilliseconds(UInt64) — 수직 병합을 위해 컬럼을 수집하는 데 소요된 총 시간ProfileEvent_MutationTotalParts(UInt64) — 뮤테이션 적용을 시도한 전체 파트 수ProfileEvent_MutationUntouchedParts(UInt64) — 뮤테이션 적용을 시도했지만 프레디케이트에 따라 완전히 건너뛴 전체 파트 수ProfileEvent_MutationCreatedEmptyParts(UInt64) — 뮤테이션을 실행하는 대신 빈 파트로 대체된 전체 파트 수ProfileEvent_MutatedRows(UInt64) — 뮤테이션을 위해 읽은 행 수. 뮤테이션 전 기준의 행 수입니다ProfileEvent_MutatedUncompressedBytes(UInt64) — 뮤테이션을 위해 읽은 비압축 바이트 수(컬럼이 메모리에 저장된 형태 기준). 뮤테이션 전 기준의 수치입니다.ProfileEvent_MutationAffectedRowsUpperBound(UInt64) — 뮤테이션의 영향을 받은 행 수 상한(예: UPDATE 또는 DELETE 뮤테이션의 프레디케이트를 만족하는 행 수). 실제 수는 이보다 약간 적을 수 있습니다ProfileEvent_MutationTotalMilliseconds(UInt64) — 뮤테이션에 소요된 총 시간입니다.ProfileEvent_MutationExecuteMilliseconds(UInt64) — 뮤테이션 실행에 소요된 총 활성 실행 시간입니다.ProfileEvent_MutationCommitMilliseconds(UInt64) — 뮤테이션 결과를 커밋하는 데 소요된 총 시간입니다(파트 이름 변경, 체크섬 검증, ZooKeeper 업데이트)ProfileEvent_MutationAllPartColumns(UInt64) — 파트의 모든 컬럼에 대해 뮤테이션 작업이 생성된 횟수ProfileEvent_MutationSomePartColumns(UInt64) — 파트의 일부 컬럼에 대해 뮤테이션 작업이 생성된 횟수ProfileEvent_MutateTaskProjectionsCalculationMicroseconds(UInt64) — 뮤테이션에서 프로젝션 계산에 소요된 시간ProfileEvent_MergeTreeDataWriterRows(UInt64) — MergeTree 테이블에 삽입된 행 수.ProfileEvent_MergeTreeDataWriterUncompressedBytes(UInt64) — MergeTree 테이블에 삽입된 비압축 바이트 수(컬럼이 메모리에 저장된 형태 기준).ProfileEvent_MergeTreeDataWriterCompressedBytes(UInt64) — MergeTree 테이블에 삽입된 데이터를 위해 파일 시스템에 기록된 바이트 수.ProfileEvent_MergeTreeDataWriterBlocks(UInt64) — MergeTree 테이블에 삽입된 블록 수. 각 블록은 레벨 0 데이터 파트를 형성합니다.ProfileEvent_MergeTreeDataWriterBlocksAlreadySorted(UInt64) — 이미 정렬된 상태로 보이는 MergeTree 테이블에 삽입된 블록 수.ProfileEvent_MergeMutateBackgroundExecutorTaskExecuteStepMicroseconds(UInt64) — MergeMutate 실행기 작업의 executeStep()에 소요된 시간.ProfileEvent_MergeMutateBackgroundExecutorTaskCancelMicroseconds(UInt64) — MergeMutate 실행기 작업의 cancel()에 소요된 시간.ProfileEvent_MergeMutateBackgroundExecutorTaskResetMicroseconds(UInt64) — MergeMutate 실행기에서 작업을 재설정하는 데 소요된 시간.ProfileEvent_MergeMutateBackgroundExecutorWaitMicroseconds(UInt64) — MergeMutate 실행기에서 완료될 때까지 대기하는 데 소요된 시간.ProfileEvent_MoveBackgroundExecutorTaskExecuteStepMicroseconds(UInt64) — Move 실행기 작업의 executeStep()에 소요된 시간.ProfileEvent_MoveBackgroundExecutorTaskCancelMicroseconds(UInt64) — Move 실행기 작업의 cancel()에 소요된 시간.ProfileEvent_MoveBackgroundExecutorTaskResetMicroseconds(UInt64) — Move 실행기에서 작업을 재설정하는 데 소요된 시간.ProfileEvent_MoveBackgroundExecutorWaitMicroseconds(UInt64) — Move 실행기에서 완료될 때까지 대기하는 데 소요된 시간.ProfileEvent_FetchBackgroundExecutorTaskExecuteStepMicroseconds(UInt64) — Fetch 실행기 작업의 executeStep()에 소요된 시간.ProfileEvent_FetchBackgroundExecutorTaskCancelMicroseconds(UInt64) — Fetch 실행기 작업의 cancel()에 소요된 시간.ProfileEvent_FetchBackgroundExecutorTaskResetMicroseconds(UInt64) — Fetch 실행기에서 작업을 재설정하는 데 소요된 시간.ProfileEvent_FetchBackgroundExecutorWaitMicroseconds(UInt64) — Fetch 실행기에서 완료될 때까지 대기하는 데 소요된 시간.ProfileEvent_CommonBackgroundExecutorTaskExecuteStepMicroseconds(UInt64) — Common 실행기 작업의 executeStep()에 소요된 시간.ProfileEvent_CommonBackgroundExecutorTaskCancelMicroseconds(UInt64) — Common 실행기 작업의 cancel()에 소요된 시간.ProfileEvent_CommonBackgroundExecutorTaskResetMicroseconds(UInt64) — Common 실행기에서 작업을 재설정하는 데 소요된 시간.ProfileEvent_CommonBackgroundExecutorWaitMicroseconds(UInt64) — Common 실행기에서 완료될 때까지 대기하는 데 소요된 시간.ProfileEvent_MergeTreeDataWriterSkipIndicesCalculationMicroseconds(UInt64) — skip index 계산에 소요된 시간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 포맷으로 머지된 파트 수입니다.ProfileEvent_MergedIntoCompactParts(UInt64) — Compact 포맷으로 머지된 파트 수입니다.ProfileEvent_MergeTreeDataProjectionWriterRows(UInt64) — MergeTree 테이블 프로젝션에 INSERT된 행 수입니다.ProfileEvent_MergeTreeDataProjectionWriterUncompressedBytes(UInt64) — MergeTree 테이블 프로젝션에 INSERT된 비압축 바이트 수입니다(메모리에 저장된 컬럼 기준).ProfileEvent_MergeTreeDataProjectionWriterCompressedBytes(UInt64) — MergeTree 테이블 프로젝션에 INSERT된 데이터에 대해 파일 시스템에 기록된 바이트 수입니다.ProfileEvent_MergeTreeDataProjectionWriterBlocks(UInt64) — MergeTree 테이블 프로젝션에 INSERT된 블록 수입니다. 각 블록은 레벨 0 데이터 파트를 형성합니다.ProfileEvent_MergeTreeDataProjectionWriterBlocksAlreadySorted(UInt64) — 이미 정렬된 상태로 보이는 MergeTree 테이블 프로젝션에 INSERT된 블록 수입니다.ProfileEvent_CannotRemoveEphemeralNode(UInt64) — 임시 노드를 제거하려는 중 오류가 발생한 횟수입니다. ZooKeeper 라이브러리 구현은 세션이 만료되면 해당 노드가 제거되도록 보장하므로 이는 문제가 아닙니다.ProfileEvent_RegexpWithMultipleNeedlesCreated(UInt64) — 여러 검색 패턴이 포함된 정규식(VectorScan 라이브러리)이 컴파일된 횟수입니다.ProfileEvent_RegexpWithMultipleNeedlesGlobalCacheHit(UInt64) — 여러 검색 패턴이 포함된 컴파일된 정규식(VectorScan 라이브러리)을 전역 캐시에서 가져온 횟수입니다.ProfileEvent_RegexpWithMultipleNeedlesGlobalCacheMiss(UInt64) — 여러 검색 패턴이 포함된 컴파일된 정규식(VectorScan 라이브러리)을 전역 캐시에서 가져오지 못한 횟수입니다.ProfileEvent_RegexpLocalCacheHit(UInt64) — 컴파일된 정규식을 로컬 캐시에서 가져온 횟수입니다.ProfileEvent_RegexpLocalCacheMiss(UInt64) — 컴파일된 정규식을 로컬 캐시에서 가져오지 못한 횟수입니다.ProfileEvent_ContextLock(UInt64) — Context 잠금을 획득했거나 획득하려고 시도한 횟수입니다. 이는 전역 잠금입니다.ProfileEvent_ContextLockWaitMicroseconds(UInt64) — Context 잠금 대기 시간(마이크로초)ProfileEvent_StorageBufferFlush(UInt64) — ‘Buffer’ 테이블의 버퍼가 플러시된 횟수입니다.ProfileEvent_StorageBufferErrorOnFlush(UInt64) — 대상 테이블에 쓰는 중 오류가 발생해 ‘Buffer’ 테이블의 버퍼를 플러시하지 못한 횟수입니다.ProfileEvent_StorageBufferPassedAllMinThresholds(UInt64) — ‘Buffer’ 테이블의 버퍼를 플러시하기 위한 최소 임계값 조건이 모두 충족된 횟수입니다.ProfileEvent_StorageBufferPassedTimeMaxThreshold(UInt64) — ‘Buffer’ 테이블의 버퍼를 플러시하기 위한 최대 시간 임계값 조건이 충족된 횟수입니다.ProfileEvent_StorageBufferPassedRowsMaxThreshold(UInt64) — ‘Buffer’ 테이블의 버퍼를 플러시하기 위한 최대 행 수 임계값 조건이 충족된 횟수입니다.ProfileEvent_StorageBufferPassedBytesMaxThreshold(UInt64) — ‘Buffer’ 테이블의 버퍼를 플러시하기 위한 최대 바이트 임계값 조건이 충족된 횟수입니다.ProfileEvent_StorageBufferPassedTimeFlushThreshold(UInt64) — 시간 기준의 백그라운드 전용 플러시 임계값이 충족되어 ‘Buffer’ 테이블의 버퍼가 플러시된 횟수입니다. 이는 전문가 전용 메트릭입니다. 전문가가 아니라면 더 이상 읽지 마십시오.ProfileEvent_StorageBufferPassedRowsFlushThreshold(UInt64) — ‘Buffer’ 테이블에서 버퍼를 플러시하기 위해 행 기준 백그라운드 전용 플러시 임계값에 도달한 횟수입니다. 이 메트릭은 전문가만을 위한 것입니다. 전문가가 아니라면 더 이상 읽지 마십시오.ProfileEvent_StorageBufferPassedBytesFlushThreshold(UInt64) — ‘Buffer’ 테이블에서 버퍼를 플러시하기 위해 바이트 기준 백그라운드 전용 플러시 임계값에 도달한 횟수입니다. 이 메트릭은 전문가만을 위한 것입니다. 전문가가 아니라면 더 이상 읽지 마십시오.ProfileEvent_StorageBufferLayerLockReadersWaitMilliseconds(UInt64) — 읽기 중 Buffer 계층을 기다린 시간입니다.ProfileEvent_StorageBufferLayerLockWritersWaitMilliseconds(UInt64) — 쓰기 가능한 Buffer 계층이 비워지기를 기다린 시간입니다(Buffer 계층 튜닝에 사용할 수 있습니다).ProfileEvent_SystemLogErrorOnFlush(UInt64) — 시스템 로그 중 하나라도 해당 시스템 테이블(system table)로 플러시하지 못한 횟수입니다. 플러시 시도는 반복됩니다.ProfileEvent_DictCacheKeysRequested(UInt64) — ‘cache’ 유형 사전에 대해 데이터 소스에서 요청한 키 수입니다.ProfileEvent_DictCacheKeysRequestedMiss(UInt64) — ‘cache’ 유형 사전에 대해 데이터 소스에 요청했지만 데이터 소스에서 찾지 못한 키 수입니다.ProfileEvent_DictCacheKeysRequestedFound(UInt64) — ‘cache’ 유형 사전에 대해 데이터 소스에 요청했고 데이터 소스에서 찾은 키 수입니다.ProfileEvent_DictCacheKeysExpired(UInt64) — ‘cache’ 유형 사전에서 조회했으며 캐시에서 찾았지만 만료된 키 수입니다.ProfileEvent_DictCacheKeysNotFound(UInt64) — ‘cache’ 유형 사전에서 조회했지만 찾지 못한 키 수입니다.ProfileEvent_DictCacheKeysHit(UInt64) — ‘cache’ 유형 사전에서 조회했고 캐시에서 찾은 키 수입니다.ProfileEvent_DictCacheRequestTimeNs(UInt64) — ‘cache’ 유형 사전에 대해 외부 데이터 소스를 쿼리하는 데 소요된 나노초 수입니다.ProfileEvent_DictCacheRequests(UInt64) — ‘cache’ 유형 사전에 대해 외부 데이터 소스로 보낸 일괄 요청 수입니다.ProfileEvent_DictCacheLockWriteNs(UInt64) — ‘cache’ 유형 사전의 데이터를 갱신하기 위해 쓰기 잠금을 기다리는 데 소요된 나노초 수입니다.ProfileEvent_DictCacheLockReadNs(UInt64) — ‘cache’ 유형 사전의 데이터를 조회하기 위해 읽기 잠금을 기다리는 데 소요된 나노초 수입니다.ProfileEvent_DistributedSyncInsertionTimeoutExceeded(UInt64) — 분산 테이블에 동기식 삽입을 수행하는 동안(distributed_foreground_insert= 1) 세그먼트를 기다리다가 timeout이 초과된 횟수입니다.ProfileEvent_DistributedAsyncInsertionFailures(UInt64) — 분산 테이블에 대한 비동기식 삽입 실패 횟수입니다(distributed_foreground_insert= 0).ProfileEvent_DataAfterMergeDiffersFromReplica(UInt64) — 머지 후 데이터가 다른 레플리카의 데이터와 바이트 수준에서 일치하지 않은 횟수입니다. 그 이유는 여러 가지가 있을 수 있습니다:- 서버 업데이트 후 더 최신 버전의 압축 라이브러리를 사용하는 경우.
- 다른 압축 방식을 사용하는 경우.
- 비결정적 압축 알고리즘(가능성은 매우 낮음).
- 코드의 논리 오류로 인해 머지 알고리즘이 비결정적으로 동작하는 경우.
- 코드 버그로 인해 메모리의 데이터가 손상된 경우.
- 하드웨어 문제로 인해 메모리의 데이터가 손상된 경우.
- 서버 시작 후 원본 데이터를 수동으로 수정한 경우.
- ZooKeeper에 저장된 체크섬을 수동으로 수정한 경우.
- ‘enable_mixed_granularity_parts’와 같은 파트 포맷 관련 설정이 레플리카마다 다릅니다. 서버는 이 상황을 정상적으로 감지했으며, 바이트 단위까지 동일한 결과를 강제로 맞추기 위해 레플리카에서 병합된 파트를 다운로드합니다.
ProfileEvent_DataAfterMutationDiffersFromReplica(UInt64) — mutation 이후의 데이터가 다른 레플리카의 데이터와 바이트 단위까지 동일하지 않은 횟수입니다. ‘DataAfterMergeDiffersFromReplica’에 설명된 이유 외에도, 비결정적 mutation으로 인해 발생할 수 있습니다.ProfileEvent_PolygonsAddedToPool(UInt64) — ‘pointInPolygon’ 함수의 캐시(풀)에 다각형이 추가된 횟수입니다.ProfileEvent_PolygonsInPoolAllocatedBytes(UInt64) — ‘pointInPolygon’ 함수의 캐시(풀)에 추가된 다각형에 할당된 바이트 수입니다.ProfileEvent_NaiveBayesClassifierModelsLoaded(UInt64) — 로드된 Naive Bayes Classifier 모델 수입니다.ProfileEvent_NaiveBayesClassifierModelsAllocatedBytes(UInt64) — Naive Bayes Classifier 모델에 할당된 바이트 수입니다.ProfileEvent_USearchAddCount(UInt64) — usearch 인덱스에 추가된 벡터 수입니다.ProfileEvent_USearchAddVisitedMembers(UInt64) — usearch 인덱스에 벡터를 추가할 때 방문한 노드 수입니다.ProfileEvent_USearchAddComputedDistances(UInt64) — usearch 인덱스에 벡터를 추가할 때 거리를 계산한 횟수입니다.ProfileEvent_USearchSearchCount(UInt64) — usearch 인덱스에서 수행된 검색 작업 수입니다.ProfileEvent_USearchSearchVisitedMembers(UInt64) — usearch 인덱스에서 검색할 때 방문한 노드 수입니다.ProfileEvent_USearchSearchComputedDistances(UInt64) — usearch 인덱스에서 검색할 때 거리를 계산한 횟수입니다.ProfileEvent_RWLockAcquiredReadLocks(UInt64) — 읽기 잠금을 획득한 횟수입니다(heavy RWLock에서).ProfileEvent_RWLockAcquiredWriteLocks(UInt64) — 쓰기 잠금을 획득한 횟수입니다(heavy RWLock에서).ProfileEvent_RWLockReadersWaitMilliseconds(UInt64) — 읽기 잠금 획득을 기다리는 데 소요된 총 시간입니다(heavy RWLock에서).ProfileEvent_RWLockWritersWaitMilliseconds(UInt64) — 쓰기 잠금 획득을 기다리는 데 소요된 총 시간입니다(heavy RWLock에서).ProfileEvent_DNSError(UInt64) — DNS 확인 과정에서 발생한 오류의 총횟수입니다ProfileEvent_PartsLockHoldMicroseconds(UInt64) — MergeTree 테이블에서 데이터 파트 잠금을 유지한 총 시간입니다ProfileEvent_PartsLockWaitMicroseconds(UInt64) — MergeTree 테이블에서 데이터 파트 잠금을 기다린 총 시간입니다ProfileEvent_PartsLocks(UInt64) — MergeTree 테이블에서 데이터 파트 잠금을 획득한 횟수입니다ProfileEvent_SharedPartsLockHoldMicroseconds(UInt64) — MergeTree 테이블에서 공유 데이터 파트 잠금을 유지한 총 시간입니다ProfileEvent_SharedPartsLockWaitMicroseconds(UInt64) — MergeTree 테이블에서 공유 데이터 파트 잠금을 기다린 총 시간입니다ProfileEvent_SharedPartsLocks(UInt64) — MergeTree 테이블에서 공유 데이터 파트 잠금을 획득한 횟수입니다ProfileEvent_RealTimeMicroseconds(UInt64) — 처리 스레드(쿼리 및 기타 작업)에서 소요된 총 실제 경과 시간입니다(값은 합계입니다).ProfileEvent_UserTimeMicroseconds(UInt64) — 처리 스레드(쿼리 및 기타 작업)가 사용자 모드에서 CPU 명령을 실행하는 데 소요한 총 시간입니다. 여기에는 주 메모리 접근, 캐시 미스, 분기 예측 실패, 하이퍼스레딩 등으로 인해 CPU 파이프라인이 정체된 시간도 포함됩니다.ProfileEvent_SystemTimeMicroseconds(UInt64) — 처리(쿼리 및 기타 작업) 스레드가 OS 커널 모드에서 CPU 명령어를 실행하는 데 사용한 총 시간입니다. 시스템 호출에 소비한 시간이며, 블로킹 시스템 호출 중 대기 시간은 제외합니다.ProfileEvent_MemoryOvercommitWaitTimeMicroseconds(UInt64) — OvercommitTracker에서 메모리가 해제되기를 기다리는 데 사용한 총 시간입니다.ProfileEvent_MemoryAllocatorPurge(UInt64) — 메모리 할당자 purge 요청의 총 횟수입니다.ProfileEvent_MemoryAllocatorPurgeTimeMicroseconds(UInt64) — 메모리 할당자 purge에 사용한 총 시간입니다.ProfileEvent_SoftPageFaults(UInt64) — 쿼리 실행 스레드에서 발생한 소프트 페이지 폴트 수입니다. 소프트 페이지 폴트는 일반적으로 메모리 할당자 캐시 미스를 의미하며, 이 경우 OS에서 새로운 메모리 매핑을 만들고 이후 물리 메모리 페이지를 할당해야 합니다.ProfileEvent_HardPageFaults(UInt64) — 쿼리 실행 스레드에서 발생한 하드 페이지 폴트 수입니다. 값이 높다면 서버에서 스왑을 비활성화하지 않았거나, 메모리 압박이 매우 높은 상황에서 ClickHouse 바이너리의 메모리 페이지가 축출되었거나, 테이블 데이터에 대해 ‘mmap’ 읽기 메서드가 정상적으로 사용되고 있음을 의미할 수 있습니다.ProfileEvent_OSIOWaitMicroseconds(UInt64) — OS 관점에서 스레드가 IO 작업 결과를 기다리는 데 사용한 총 시간입니다. 페이지 캐시를 포함하지 않는 실제 IO 시간입니다.ProfileEvent_OSCPUWaitMicroseconds(UInt64) — OS 관점에서 스레드가 실행 준비 상태였지만 OS가 스케줄링할 때까지 기다린 총 시간입니다.ProfileEvent_OSCPUVirtualTimeMicroseconds(UInt64) — OS에서 관측한 CPU 사용 시간입니다. 가상화로 인한 비자발적 대기 시간은 포함하지 않습니다.ProfileEvent_OSReadBytes(UInt64) — 디스크 또는 블록 디바이스에서 읽은 바이트 수입니다. 페이지 캐시에서 읽은 바이트는 포함하지 않습니다. 블록 크기, readahead 등으로 인해 실제보다 많은 데이터가 포함될 수 있습니다.ProfileEvent_OSWriteBytes(UInt64) — 디스크 또는 블록 디바이스에 기록한 바이트 수입니다. 페이지 캐시의 dirty pages에 있는 바이트는 포함하지 않습니다. OS가 비동기적으로 기록한 데이터는 포함되지 않을 수 있습니다.ProfileEvent_OSReadChars(UInt64) — 페이지 캐시를 포함해 파일 시스템, 네트워크 및 기타 파일에서 읽은 바이트 수입니다.ProfileEvent_OSWriteChars(UInt64) — 페이지 캐시를 포함해 파일 시스템, 네트워크 및 기타 파일에 기록한 바이트 수입니다.ProfileEvent_ParallelReplicasHandleRequestMicroseconds(UInt64) — 레플리카의 마크 요청을 처리하는 데 사용한 시간입니다.ProfileEvent_ParallelReplicasHandleAnnouncementMicroseconds(UInt64) — 레플리카 announcement를 처리하는 데 사용한 시간입니다.ProfileEvent_ParallelReplicasAnnouncementMicroseconds(UInt64) — announcement를 전송하는 데 사용한 시간입니다.ProfileEvent_ParallelReplicasReadRequestMicroseconds(UInt64) — 읽기 요청에 사용한 시간입니다.ProfileEvent_ParallelReplicasReadAssignedMarks(UInt64) — 모든 레플리카에서 consistent hash로 예정된 마크가 할당된 수의 합계입니다.ProfileEvent_ParallelReplicasReadUnassignedMarks(UInt64) — 모든 레플리카에서 미할당 마크로 예정된 수의 합계입니다.ProfileEvent_ParallelReplicasReadAssignedForStealingMarks(UInt64) — 모든 레플리카에서 consistent hash로 스틸링용 예정된 마크가 할당된 수의 합계입니다.ProfileEvent_ParallelReplicasReadMarks(UInt64) — 해당 레플리카가 읽은 마크 수입니다.ProfileEvent_ParallelReplicasStealingByHashMicroseconds(UInt64) — hash 기반 스틸링 대상 세그먼트를 수집하는 데 사용한 시간입니다.ProfileEvent_ParallelReplicasProcessingPartsMicroseconds(UInt64) — 데이터 파트를 처리하는 데 사용한 시간입니다.ProfileEvent_ParallelReplicasStealingLeftoversMicroseconds(UInt64) — 고아 세그먼트를 수집하는 데 소요된 시간ProfileEvent_ParallelReplicasCollectingOwnedSegmentsMicroseconds(UInt64) — 해시에 따라 할당된 세그먼트를 수집하는 데 소요된 시간ProfileEvent_ParallelReplicasNumRequests(UInt64) — initiator로 보낸 요청 수ProfileEvent_ParallelReplicasDeniedRequests(UInt64) — initiator에 대해 완전히 거부된 요청 수ProfileEvent_CacheWarmerBytesDownloaded(UInt64) — 전용 백그라운드 스레드가 파일 시스템 캐시로 가져온 데이터 양ProfileEvent_CacheWarmerDataPartsDownloaded(UInt64) — CacheWarmer가 완전히 가져온 데이터 파트 수ProfileEvent_IgnoredColdParts(UInt64) — setting ignore_cold_parts_seconds를 참조하십시오. 읽기 쿼리가 CacheWarmer가 아직 캐시로 가져오지 않은 아주 새로운 파트를 무시한 횟수입니다.ProfileEvent_PreferredWarmedUnmergedParts(UInt64) — setting prefer_warmed_unmerged_parts_seconds를 참조하십시오. 읽기 쿼리가 CacheWarmer가 아직 캐시로 가져오지 않은 병합된 파트 대신, 캐시에 있는 머지 전의 오래된 파트를 사용한 횟수입니다.ProfileEvent_PerfCPUCycles(UInt64) — 총 사이클 수입니다. CPU 주파수 스케일링 중 발생하는 현상에 유의하십시오.ProfileEvent_PerfInstructions(UInt64) — retired 명령어 수입니다. 특히 하드웨어 인터럽트 횟수를 비롯한 여러 요인의 영향을 받을 수 있으므로 주의하십시오.ProfileEvent_PerfCacheReferences(UInt64) — 캐시 접근 횟수입니다. 일반적으로 Last Level Cache 접근을 의미하지만 CPU에 따라 달라질 수 있습니다. 프리페치와 일관성 메시지가 포함될 수도 있으며, 이 역시 CPU 설계에 따라 달라집니다.ProfileEvent_PerfCacheMisses(UInt64) — 캐시 미스 횟수입니다. 일반적으로 Last Level Cache 미스를 의미하며, 캐시 미스율을 계산할 때 PERFCOUNTHWCACHEREFERENCES 이벤트와 함께 사용하도록 설계되었습니다.ProfileEvent_PerfBranchInstructions(UInt64) — retired 분기 명령어 수입니다. Linux 2.6.35 이전에는 AMD 프로세서에서 잘못된 이벤트를 사용했습니다.ProfileEvent_PerfBranchMisses(UInt64) — 분기 예측에 실패한 명령어 수입니다.ProfileEvent_PerfBusCycles(UInt64) — 버스 사이클 수이며, 총 사이클 수와 다를 수 있습니다.ProfileEvent_PerfStalledCyclesFrontend(UInt64) — issue 중 정체된 사이클 수입니다.ProfileEvent_PerfStalledCyclesBackend(UInt64) — retirement 중 정체된 사이클 수입니다.ProfileEvent_PerfRefCPUCycles(UInt64) — 총 사이클 수이며 CPU 주파수 스케일링의 영향을 받지 않습니다.ProfileEvent_PerfCPUClock(UInt64) — CPU 클록으로, CPU별 고해상도 타이머입니다ProfileEvent_PerfTaskClock(UInt64) — 실행 중인 작업에 특화된 클록 카운트입니다ProfileEvent_PerfContextSwitches(UInt64) — 컨텍스트 스위치 수입니다ProfileEvent_PerfCPUMigrations(UInt64) — 프로세스가 새로운 CPU로 이동한 횟수입니다ProfileEvent_PerfAlignmentFaults(UInt64) — 정렬 오류 수입니다. 정렬되지 않은 메모리 접근이 발생할 때 일어나며, 커널이 이를 처리할 수는 있지만 성능이 저하됩니다. 일부 아키텍처에서만 발생합니다(x86에서는 발생하지 않음).ProfileEvent_PerfEmulationFaults(UInt64) — 에뮬레이션 오류 수입니다. 커널은 구현되지 않은 명령어를 만나면 때때로 트랩을 발생시키고 이를 사용자 공간용으로 에뮬레이션합니다. 이는 성능에 부정적인 영향을 줄 수 있습니다.ProfileEvent_PerfMinEnabledTime(UInt64) — 모든 이벤트에서 이벤트가 활성화된 최소 시간입니다. 이벤트 멀티플렉싱의 영향을 추적하는 데 사용됩니다ProfileEvent_PerfMinEnabledRunningTime(UInt64) — 최소 활성화 시간을 가진 이벤트의 실행 시간입니다. 이벤트 멀티플렉싱의 정도를 추적하는 데 사용됩니다ProfileEvent_PerfDataTLBReferences(UInt64) — 데이터 TLB 참조 횟수ProfileEvent_PerfDataTLBMisses(UInt64) — 데이터 TLB 미스 횟수ProfileEvent_PerfInstructionTLBReferences(UInt64) — 명령어 TLB 참조 횟수ProfileEvent_PerfInstructionTLBMisses(UInt64) — 명령어 TLB 미스 횟수ProfileEvent_PerfLocalMemoryReferences(UInt64) — 로컬 NUMA 노드 메모리 읽기 횟수ProfileEvent_PerfLocalMemoryMisses(UInt64) — 로컬 NUMA 노드 메모리 읽기 미스 횟수ProfileEvent_CannotWriteToWriteBufferDiscard(UInt64) — 파이프가 가득 찼거나 파이프에 쓸 수 없어 쿼리 프로파일러 또는 시그널 핸들러가 버린 스택 트레이스 수입니다.ProfileEvent_QueryProfilerSignalOverruns(UInt64) — 오버런으로 인해 쿼리 프로파일러 시그널 처리를 중단한 횟수와, 오버런으로 인해 OS가 전달하지 않은 시그널 수의 합입니다.ProfileEvent_QueryProfilerConcurrencyOverruns(UInt64) — 다른 스레드에서 동시에 실행 중인 쿼리 프로파일러가 너무 많아 쿼리 프로파일러 시그널 처리를 중단한 횟수입니다. 이는 과부하를 나타낼 수 있습니다.ProfileEvent_QueryProfilerRuns(UInt64) — QueryProfiler가 실행된 횟수입니다.ProfileEvent_QueryProfilerErrors(UInt64) — 비동기 스택 언와인딩 중 발생한 잘못된 메모리 접근 횟수입니다.ProfileEvent_CreatedLogEntryForMerge(UInt64) — ReplicatedMergeTree에서 파트를 머지하기 위한 로그 항목을 성공적으로 생성한 횟수입니다.ProfileEvent_NotCreatedLogEntryForMerge(UInt64) — 다른 레플리카의 동시 로그 업데이트로 인해 ReplicatedMergeTree에서 파트를 머지하기 위한 로그 항목이 생성되지 않은 횟수입니다.ProfileEvent_CreatedLogEntryForMutation(UInt64) — ReplicatedMergeTree에서 파트에 mutation을 적용하기 위한 로그 항목을 성공적으로 생성한 횟수입니다.ProfileEvent_NotCreatedLogEntryForMutation(UInt64) — 다른 레플리카의 동시 로그 업데이트로 인해 ReplicatedMergeTree에서 파트에 mutation을 적용하기 위한 로그 항목이 생성되지 않은 횟수입니다.ProfileEvent_S3ReadMicroseconds(UInt64) — S3 스토리지에 대한 GET 및 HEAD 요청 시간입니다.ProfileEvent_S3ReadRequestsCount(UInt64) — S3 스토리지에 대한 GET 및 HEAD 요청 수입니다.ProfileEvent_S3ReadRequestsErrors(UInt64) — S3 스토리지에 대한 GET 및 HEAD 요청에서 발생한 비스로틀링 오류 수입니다.ProfileEvent_S3ReadRequestsThrottling(UInt64) — S3 스토리지에 대한 GET 및 HEAD 요청에서 발생한 429 및 503 오류 수입니다.ProfileEvent_S3ReadRequestsRedirects(UInt64) — S3 스토리지에 대한 GET 및 HEAD 요청에서 발생한 리디렉션 수입니다.ProfileEvent_S3ReadRequestAttempts(UInt64) — S3 스토리지에 대한 GET 및 HEAD 요청의 시도 횟수입니다. 최초 시도와 모든 재시도를 포함하지만, S3 retry strategy 내부에서 수행된 재시도는 제외됩니다ProfileEvent_S3ReadRequestRetryableErrors(UInt64) — S3 스토리지에 대한 GET 및 HEAD 요청의 재시도 가능한 오류 수입니다. S3 retry strategy 내부에서 수행된 재시도는 제외됩니다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 storage에 대한 GET 및 HEAD 요청 시간.ProfileEvent_DiskS3ReadRequestsCount(UInt64) — DiskS3 storage에 대한 GET 및 HEAD 요청 수.ProfileEvent_DiskS3ReadRequestsErrors(UInt64) — DiskS3 storage에 대한 GET 및 HEAD 요청에서 발생한 비-스로틀링 오류 수.ProfileEvent_DiskS3ReadRequestsThrottling(UInt64) — DiskS3 storage에 대한 GET 및 HEAD 요청에서 발생한 429 및 503 오류 수.ProfileEvent_DiskS3ReadRequestsRedirects(UInt64) — DiskS3 storage에 대한 GET 및 HEAD 요청의 리디렉션 수.ProfileEvent_DiskS3ReadRequestAttempts(UInt64) — DiskS3 storage에 대한 GET 및 HEAD 요청의 시도 횟수로, 최초 시도와 모든 재시도를 포함하지만 S3 재시도 전략에서 내부적으로 수행한 재시도는 제외합니다.ProfileEvent_DiskS3ReadRequestRetryableErrors(UInt64) — DiskS3 storage에 대한 GET 및 HEAD 요청의 재시도 가능한 오류 수로, S3 재시도 전략에서 내부적으로 수행한 재시도는 제외합니다.ProfileEvent_DiskS3WriteMicroseconds(UInt64) — DiskS3 storage에 대한 POST, DELETE, PUT 및 PATCH 요청 시간.ProfileEvent_DiskS3WriteRequestsCount(UInt64) — DiskS3 storage에 대한 POST, DELETE, PUT 및 PATCH 요청 수.ProfileEvent_DiskS3WriteRequestsErrors(UInt64) — DiskS3 storage에 대한 POST, DELETE, PUT 및 PATCH 요청에서 발생한 비-스로틀링 오류 수.ProfileEvent_DiskS3WriteRequestsThrottling(UInt64) — DiskS3 storage에 대한 POST, DELETE, PUT 및 PATCH 요청에서 발생한 429 및 503 오류 수.ProfileEvent_DiskS3WriteRequestsRedirects(UInt64) — DiskS3 storage에 대한 POST, DELETE, PUT 및 PATCH 요청의 리디렉션 수.ProfileEvent_DiskS3WriteRequestAttempts(UInt64) — DiskS3 storage에 대한 POST, DELETE, PUT 및 PATCH 요청의 시도 횟수로, 최초 시도와 모든 재시도를 포함하지만 재시도 전략에서 내부적으로 수행한 재시도는 제외합니다.ProfileEvent_DiskS3WriteRequestRetryableErrors(UInt64) — DiskS3 storage에 대한 POST, DELETE, PUT 및 PATCH 요청의 재시도 가능한 오류 수로, 재시도 전략에서 내부적으로 수행한 재시도는 제외합니다.ProfileEvent_S3DeleteObjects(UInt64) — S3 API DeleteObject(s) 호출 수.ProfileEvent_S3CopyObject(UInt64) — S3 API CopyObject 호출 수.ProfileEvent_S3ListObjects(UInt64) — S3 API ListObjects 호출 수.ProfileEvent_S3HeadObject(UInt64) — S3 API HeadObject 호출 횟수.ProfileEvent_S3GetObjectTagging(UInt64) — S3 API GetObjectTagging 호출 횟수.ProfileEvent_S3CreateMultipartUpload(UInt64) — S3 API CreateMultipartUpload 호출 횟수.ProfileEvent_S3UploadPartCopy(UInt64) — S3 API UploadPartCopy 호출 횟수.ProfileEvent_S3UploadPart(UInt64) — S3 API UploadPart 호출 횟수.ProfileEvent_S3AbortMultipartUpload(UInt64) — S3 API AbortMultipartUpload 호출 횟수.ProfileEvent_S3CompleteMultipartUpload(UInt64) — S3 API CompleteMultipartUpload 호출 횟수.ProfileEvent_S3PutObject(UInt64) — S3 API PutObject 호출 횟수.ProfileEvent_S3GetObject(UInt64) — S3 API GetObject 호출 횟수.ProfileEvent_DiskS3DeleteObjects(UInt64) — DiskS3 API DeleteObject(s) 호출 횟수.ProfileEvent_DiskS3CopyObject(UInt64) — DiskS3 API CopyObject 호출 횟수.ProfileEvent_DiskS3ListObjects(UInt64) — DiskS3 API ListObjects 호출 횟수.ProfileEvent_DiskS3HeadObject(UInt64) — DiskS3 API HeadObject 호출 횟수.ProfileEvent_DiskS3GetObjectTagging(UInt64) — DiskS3 API GetObjectTagging 호출 횟수.ProfileEvent_DiskS3CreateMultipartUpload(UInt64) — DiskS3 API CreateMultipartUpload 호출 횟수.ProfileEvent_DiskS3UploadPartCopy(UInt64) — DiskS3 API UploadPartCopy 호출 횟수.ProfileEvent_DiskS3UploadPart(UInt64) — DiskS3 API UploadPart 호출 횟수.ProfileEvent_DiskS3AbortMultipartUpload(UInt64) — DiskS3 API AbortMultipartUpload 호출 횟수.ProfileEvent_DiskS3CompleteMultipartUpload(UInt64) — DiskS3 API CompleteMultipartUpload 호출 횟수.ProfileEvent_DiskS3PutObject(UInt64) — DiskS3 API PutObject 호출 횟수.ProfileEvent_DiskS3GetObject(UInt64) — DiskS3 API GetObject 호출 횟수.ProfileEvent_DiskPlainRewritableAzureDirectoryCreated(UInt64) — AzureObjectStorage용 ‘plain_rewritable’ 메타데이터 저장소에서 생성한 디렉터리 수.ProfileEvent_DiskPlainRewritableAzureDirectoryRemoved(UInt64) — AzureObjectStorage용 ‘plain_rewritable’ 메타데이터 저장소에서 제거한 디렉터리 수.ProfileEvent_DiskPlainRewritableLocalDirectoryCreated(UInt64) — LocalObjectStorage용 ‘plain_rewritable’ 메타데이터 저장소에서 생성한 디렉터리 수.ProfileEvent_DiskPlainRewritableLocalDirectoryRemoved(UInt64) — LocalObjectStorage용 ‘plain_rewritable’ 메타데이터 저장소에서 제거한 디렉터리 수.ProfileEvent_DiskPlainRewritableS3DirectoryCreated(UInt64) — S3ObjectStorage용plain_rewritable메타데이터 저장소에서 생성한 디렉터리 수입니다.ProfileEvent_DiskPlainRewritableS3DirectoryRemoved(UInt64) — S3ObjectStorage용plain_rewritable메타데이터 저장소에서 제거한 디렉터리 수입니다.ProfileEvent_DiskPlainRewritableLegacyLayoutDiskCount(UInt64) — 레거시 레이아웃을 사용하는plain_rewritable디스크 수입니다.ProfileEvent_S3Clients(UInt64) — 생성된 S3 클라이언트 수입니다.ProfileEvent_TinyS3Clients(UInt64) — 다른 클라이언트의 기존 인증 공급자를 재사용하는 S3 클라이언트 복사본 수입니다.ProfileEvent_EngineFileLikeReadFiles(UInt64) — 파일을 사용하는 테이블 엔진(File/S3/URL/HDFS 등)에서 읽은 파일 수입니다.ProfileEvent_ReadBufferFromS3Microseconds(UInt64) — S3에서 읽는 데 소요된 시간입니다.ProfileEvent_ReadBufferFromS3InitMicroseconds(UInt64) — S3 연결을 초기화하는 데 소요된 시간입니다.ProfileEvent_ReadBufferFromS3Bytes(UInt64) — S3에서 읽은 바이트 수입니다.ProfileEvent_ReadBufferFromS3RequestsErrors(UInt64) — S3에서 읽는 동안 발생한 예외 수입니다.ProfileEvent_WriteBufferFromS3Microseconds(UInt64) — S3에 쓰는 데 소요된 시간입니다.ProfileEvent_WriteBufferFromS3Bytes(UInt64) — S3에 쓴 바이트 수입니다.ProfileEvent_WriteBufferFromS3RequestsErrors(UInt64) — S3에 쓰는 동안 발생한 예외 수입니다.ProfileEvent_WriteBufferFromS3WaitInflightLimitMicroseconds(UInt64) — 현재 요청 수가 s3_max_inflight_parts_for_one_file로 정의된 한도에 도달했을 때, 진행 중인 요청 일부가 완료될 때까지 대기한 시간입니다.ProfileEvent_QueryMemoryLimitExceeded(UInt64) — 쿼리의 메모리 한도를 초과한 횟수입니다.ProfileEvent_MemoryAllocatedWithoutCheck(UInt64) — 메모리 제약을 확인하지 않고 메모리를 할당한 횟수입니다.ProfileEvent_MemoryAllocatedWithoutCheckBytes(UInt64) — 메모리 제약을 확인하지 않고 할당한 바이트 양입니다.ProfileEvent_AzureGetObject(UInt64) — Azure API GetObject 호출 수입니다.ProfileEvent_AzureUpload(UInt64) — Azure blob storage API Upload 호출 수입니다.ProfileEvent_AzureStageBlock(UInt64) — Azure blob storage API StageBlock 호출 수입니다.ProfileEvent_AzureCommitBlockList(UInt64) — Azure blob storage API CommitBlockList 호출 수입니다.ProfileEvent_AzureCopyObject(UInt64) — Azure blob storage API CopyObject 호출 수입니다.ProfileEvent_AzureDeleteObjects(UInt64) — Azure blob storage API DeleteObject(s) 호출 수입니다.ProfileEvent_AzureListObjects(UInt64) — Azure blob storage API ListObjects 호출 수입니다.ProfileEvent_AzureGetProperties(UInt64) — Azure blob storage API GetProperties 호출 수입니다.ProfileEvent_AzureCreateContainer(UInt64) — Azure blob storage API CreateContainer 호출 횟수.ProfileEvent_DiskAzureGetObject(UInt64) — Disk Azure API GetObject 호출 횟수.ProfileEvent_DiskAzureUpload(UInt64) — Disk Azure blob storage API Upload 호출 횟수ProfileEvent_DiskAzureStageBlock(UInt64) — Disk Azure blob storage API StageBlock 호출 횟수ProfileEvent_DiskAzureCommitBlockList(UInt64) — Disk Azure blob storage API CommitBlockList 호출 횟수ProfileEvent_DiskAzureCopyObject(UInt64) — Disk Azure blob storage API CopyObject 호출 횟수ProfileEvent_DiskAzureListObjects(UInt64) — Disk Azure blob storage API ListObjects 호출 횟수.ProfileEvent_DiskAzureDeleteObjects(UInt64) — Azure blob storage API DeleteObject(s) 호출 횟수.ProfileEvent_DiskAzureGetProperties(UInt64) — Disk Azure blob storage API GetProperties 호출 횟수.ProfileEvent_DiskAzureCreateContainer(UInt64) — Disk Azure blob storage API CreateContainer 호출 횟수.ProfileEvent_ReadBufferFromAzureMicroseconds(UInt64) — Azure에서 읽는 데 소요된 시간.ProfileEvent_ReadBufferFromAzureInitMicroseconds(UInt64) — Azure 연결 초기화에 소요된 시간.ProfileEvent_ReadBufferFromAzureBytes(UInt64) — Azure에서 읽은 바이트 수.ProfileEvent_ReadBufferFromAzureRequestsErrors(UInt64) — Azure에서 읽는 동안 발생한 예외 횟수ProfileEvent_CachedReadBufferReadFromCacheHits(UInt64) — 파일 시스템 캐시에서의 읽기가 캐시에 적중한 횟수.ProfileEvent_CachedReadBufferReadFromCacheMisses(UInt64) — 파일 시스템 캐시에서의 읽기가 캐시를 놓친 횟수.ProfileEvent_CachedReadBufferReadFromSourceMicroseconds(UInt64) — 파일 시스템 캐시 소스(원격 파일 시스템 등)에서 읽는 데 걸린 시간ProfileEvent_CachedReadBufferWaitReadBufferMicroseconds(UInt64) — 내부 read buffer를 기다리는 데 소요된 시간(캐시 대기 포함)ProfileEvent_CachedReadBufferPredownloadedFromSourceMicroseconds(UInt64) — predownload를 위해 파일 시스템 캐시 소스(원격 파일 시스템 등)에서 읽는 데 걸린 시간ProfileEvent_CachedReadBufferReadFromCacheMicroseconds(UInt64) — 파일 시스템 캐시에서 읽는 데 걸린 시간ProfileEvent_CachedReadBufferReadFromSourceBytes(UInt64) — 파일 시스템 캐시 소스(원격 파일 시스템 등)에서 읽은 바이트 수ProfileEvent_CachedReadBufferPredownloadedFromSourceBytes(UInt64) — predownload를 위해 파일 시스템 캐시 소스(원격 파일 시스템 등)에서 읽은 바이트 수ProfileEvent_CachedReadBufferReadFromCacheBytes(UInt64) — 파일 시스템 캐시에서 읽은 바이트 수ProfileEvent_CachedReadBufferPredownloadedBytes(UInt64) — 파일 시스템 캐시 소스에서 읽은 바이트 수. 캐시 세그먼트는 전체를 왼쪽에서 오른쪽으로 읽으므로, 필요한 데이터에 도달하기 위해 현재 작업과 무관한 세그먼트 일부를 미리 다운로드해야 할 수 있습니다ProfileEvent_CachedReadBufferCacheWriteBytes(UInt64) — 소스(원격 파일 시스템 등)에서 파일 시스템 캐시로 기록된 바이트 수ProfileEvent_CachedReadBufferCacheWriteMicroseconds(UInt64) — 데이터를 파일 시스템 캐시에 쓰는 데 소요된 시간ProfileEvent_CachedReadBufferCreateBufferMicroseconds(UInt64) — 버퍼 준비 시간ProfileEvent_CachedWriteBufferCacheWriteBytes(UInt64) — 소스(remote fs 등)에서 파일 시스템 캐시로 기록된 바이트 수ProfileEvent_CachedWriteBufferCacheWriteMicroseconds(UInt64) — 데이터를 파일 시스템 캐시에 쓰는 데 소요된 시간ProfileEvent_FilesystemCacheLoadMetadataMicroseconds(UInt64) — 파일 시스템 캐시 메타데이터를 로드하는 데 소요된 시간ProfileEvent_FilesystemCacheEvictedBytes(UInt64) — 파일 시스템 캐시에서 제거된 바이트 수ProfileEvent_FilesystemCacheCreatedKeyDirectories(UInt64) — 생성된 키 디렉터리 수ProfileEvent_FilesystemCacheEvictedFileSegments(UInt64) — 파일 시스템 캐시에서 제거된 파일 세그먼트 수ProfileEvent_FilesystemCacheEvictedFileSegmentsDuringPriorityIncrease(UInt64) — 파일 세그먼트의 우선순위를 높일 때 파일 시스템 캐시에서 제거된 파일 세그먼트 수(SLRU 캐시 정책에 적용)ProfileEvent_FilesystemCacheBackgroundDownloadQueuePush(UInt64) — 파일 시스템 캐시에서 백그라운드 다운로드 대상으로 전송된 파일 세그먼트 수ProfileEvent_FilesystemCacheEvictionSkippedFileSegments(UInt64) — 해제할 수 없는 상태이므로 제거 대상에서 제외된 파일 세그먼트 수ProfileEvent_FilesystemCacheEvictionSkippedEvictingFileSegments(UInt64) — 제거 중 상태이므로 제거 대상에서 제외된 파일 세그먼트 수ProfileEvent_FilesystemCacheEvictionSkippedMovingFileSegments(UInt64) — 이동 중 상태이므로 제거 대상에서 제외된 파일 세그먼트 수ProfileEvent_FilesystemCacheEvictionTries(UInt64) — 파일 시스템 캐시 제거 시도 횟수ProfileEvent_FilesystemCacheEvictionReusedIterator(UInt64) — 파일 시스템 캐시 이터레이터 재사용 횟수ProfileEvent_FilesystemCacheLockKeyMicroseconds(UInt64) — 캐시 키 잠금 시간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) — 파일 세그먼트 holder의 complete() 시간ProfileEvent_FileSegmentFailToIncreasePriority(UInt64) — 캐시 락 경합이 높아 우선순위를 높이지 못한 횟수ProfileEvent_FilesystemCacheFailToReserveSpaceBecauseOfLockContention(UInt64) — 캐시 락 경합이 높아 공간 예약을 건너뛴 횟수ProfileEvent_FilesystemCacheFailToReserveSpaceBecauseOfCacheResize(UInt64) — 캐시 크기 조정이 진행 중이어서 공간 예약을 건너뛴 횟수ProfileEvent_FilesystemCacheHoldFileSegments(UInt64) — hold된 파일 시스템 캐시 파일 세그먼트 수ProfileEvent_FilesystemCacheUnusedHoldFileSegments(UInt64) — hold되었지만 사용되지 않은 파일 시스템 캐시 파일 세그먼트 수(seek 또는 LIMIT n 등으로 인해)ProfileEvent_FilesystemCacheFreeSpaceKeepingThreadRun(UInt64) — 백그라운드 스레드가 여유 공간 유지 job을 실행한 횟수ProfileEvent_FilesystemCacheFreeSpaceKeepingThreadWorkMilliseconds(UInt64) — 백그라운드 스레드가 여유 공간 유지 job을 실행한 시간ProfileEvent_FilesystemCacheFailedEvictionCandidates(UInt64) — 동적 파일 시스템 캐시 eviction 중 예기치 않게 축출에 실패한 파일 세그먼트 수ProfileEvent_RemoteFSSeeks(UInt64) — 비동기 buffer에 대한 총 seek 횟수ProfileEvent_RemoteFSPrefetches(UInt64) — 원격 파일 시스템에서 비동기 읽기 중 수행된 프리페치 횟수ProfileEvent_RemoteFSCancelledPrefetches(UInt64) — 취소된 프리페치 횟수(seek로 인해)ProfileEvent_RemoteFSUnusedPrefetches(UInt64) — buffer 파기 시점에 대기 중이던 프리페치 수ProfileEvent_RemoteFSPrefetchedReads(UInt64) — 프리페치된 buffer에서의 읽기 횟수ProfileEvent_RemoteFSPrefetchedBytes(UInt64) — 프리페치된 buffer의 바이트 수ProfileEvent_RemoteFSUnprefetchedReads(UInt64) — 프리페치되지 않은 버퍼에서 읽은 횟수ProfileEvent_RemoteFSUnprefetchedBytes(UInt64) — 프리페치되지 않은 버퍼에서 읽은 바이트 수ProfileEvent_RemoteFSLazySeeks(UInt64) — 지연 seek 횟수ProfileEvent_RemoteFSSeeksWithReset(UInt64) — 새 연결로 이어지는 seek 횟수ProfileEvent_RemoteFSBuffers(UInt64) — 원격 파일 시스템에서 비동기 읽기를 위해 생성된 버퍼 수ProfileEvent_MergeTreePrefetchedReadPoolInit(UInt64) — MergeTreePrefetchedReadPool에서 작업을 준비하는 데 소요된 시간ProfileEvent_WaitPrefetchTaskMicroseconds(UInt64) — 프리페치된 리더를 기다리는 데 소요된 시간ProfileEvent_ThreadpoolReaderTaskMicroseconds(UInt64) — 비동기 읽기에서 데이터를 가져오는 데 소요된 시간ProfileEvent_ThreadpoolReaderPrepareMicroseconds(UInt64) — 준비에 소요된 시간(예: readerseek()메서드 호출)ProfileEvent_ThreadpoolReaderReadBytes(UInt64) — 비동기 읽기에서 스레드 풀 작업이 읽은 바이트 수ProfileEvent_ThreadpoolReaderSubmit(UInt64) — 비동기 읽기에서 스레드 풀 작업이 읽은 바이트 수ProfileEvent_ThreadpoolReaderSubmitReadSynchronously(UInt64) — 스레드 풀에 작업을 예약하지 않고 대신 동기적으로 읽은 횟수ProfileEvent_ThreadpoolReaderSubmitReadSynchronouslyBytes(UInt64) — 동기적으로 읽은 바이트 수ProfileEvent_ThreadpoolReaderSubmitReadSynchronouslyMicroseconds(UInt64) — 동기적으로 읽는 데 소요된 시간ProfileEvent_ThreadpoolReaderSubmitLookupInCacheMicroseconds(UInt64) — 콘텐츠가 캐시되어 있는지 확인하는 데 소요된 시간ProfileEvent_AsynchronousReaderIgnoredBytes(UInt64) — 비동기 읽기 중 무시된 바이트 수ProfileEvent_ReadBufferSeekCancelConnection(UInt64) — 새 연결로 이어지는 seek 횟수(s3, http)ProfileEvent_SleepFunctionCalls(UInt64) — sleep 함수(sleep, sleepEachRow)가 호출된 횟수.ProfileEvent_SleepFunctionMicroseconds(UInt64) — sleep 함수(sleep, sleepEachRow)에서 sleep으로 설정된 시간.ProfileEvent_SleepFunctionElapsedMicroseconds(UInt64) — sleep 함수(sleep, sleepEachRow)에서 실제로 대기한 시간.ProfileEvent_ThreadPoolReaderPageCacheHit(UInt64) — ThreadPoolReader 내부 읽기가 페이지 캐시에서 수행된 횟수.ProfileEvent_ThreadPoolReaderPageCacheHitBytes(UInt64) — ThreadPoolReader 내부 읽기가 페이지 캐시에서 수행되었을 때 읽은 바이트 수.ProfileEvent_ThreadPoolReaderPageCacheHitElapsedMicroseconds(UInt64) — ThreadPoolReader에서 페이지 캐시로부터 데이터를 읽는 데 소요된 시간.ProfileEvent_ThreadPoolReaderPageCacheMiss(UInt64) — ThreadPoolReader 내부 읽기가 페이지 캐시에서 수행되지 않아 스레드 풀로 넘겨진 횟수.ProfileEvent_ThreadPoolReaderPageCacheMissBytes(UInt64) — ThreadPoolReader 내부 읽기가 페이지 캐시에서 수행되지 않아 스레드 풀로 넘겨졌을 때 읽은 바이트 수.ProfileEvent_ThreadPoolReaderPageCacheMissElapsedMicroseconds(UInt64) — ThreadPoolReader의 비동기 작업 내부에서 데이터를 읽는 데 소요된 시간으로, 읽기가 페이지 캐시에서 수행되지 않은 경우입니다.ProfileEvent_AsynchronousReadWaitMicroseconds(UInt64) — 비동기 로컬 읽기에서 비동기 읽기를 기다리는 데 소요된 시간입니다.ProfileEvent_SynchronousReadWaitMicroseconds(UInt64) — 비동기 로컬 읽기에서 동기 읽기를 기다리는 데 소요된 시간입니다.ProfileEvent_AsynchronousRemoteReadWaitMicroseconds(UInt64) — 비동기 원격 읽기를 기다리는 데 소요된 시간입니다.ProfileEvent_SynchronousRemoteReadWaitMicroseconds(UInt64) — 동기 원격 읽기를 기다리는 데 소요된 시간입니다.ProfileEvent_ExternalDataSourceLocalCacheReadBytes(UInt64) — RemoteReadBufferCache의 로컬 캐시 버퍼에서 읽은 바이트 수입니다.ProfileEvent_MainConfigLoads(UInt64) — 기본 구성을 다시 로드한 횟수입니다.ProfileEvent_AggregationPreallocatedElementsInHashTables(UInt64) — 집계를 위해 해시 테이블에 미리 할당된 요소 수입니다.ProfileEvent_AggregationHashTablesInitializedAsTwoLevel(UInt64) — 집계를 위해 2단계로 초기화된 해시 테이블 수입니다.ProfileEvent_AggregationOptimizedEqualRangesOfKeys(UInt64) — 키의 동일 범위 최적화가 적용된 블록 수입니다.ProfileEvent_HashJoinPreallocatedElementsInHashTables(UInt64) — 해시 조인을 위해 해시 테이블에 미리 할당된 요소 수입니다.ProfileEvent_MetadataFromKeeperCacheHit(UInt64) — 객체 스토리지 메타데이터 요청이 Keeper에 요청을 보내지 않고 캐시에서 처리된 횟수입니다.ProfileEvent_MetadataFromKeeperCacheMiss(UInt64) — 객체 스토리지 메타데이터 요청을 Keeper에서 처리해야 했던 횟수입니다.ProfileEvent_MetadataFromKeeperCacheTooManyInvalidated(UInt64) — 파일 시스템 캐시가 무효화된 항목을 너무 많이 반환한 횟수입니다.ProfileEvent_MetadataFromKeeperCacheUpdateMicroseconds(UInt64) — Keeper의 응답 대기 시간을 포함하여 캐시를 업데이트하는 데 소요된 총 시간입니다.ProfileEvent_MetadataFromKeeperUpdateCacheOneLevel(UInt64) — 디렉터리 트리의 한 수준에 대해 캐시 업데이트를 수행한 횟수입니다.ProfileEvent_MetadataFromKeeperTransactionCommit(UInt64) — 메타데이터 트랜잭션 커밋을 시도한 횟수입니다.ProfileEvent_MetadataFromKeeperTransactionCommitRetry(UInt64) — 메타데이터 트랜잭션 커밋을 재시도한 횟수입니다.ProfileEvent_MetadataFromKeeperCleanupTransactionCommit(UInt64) — 삭제된 객체 정리를 위한 메타데이터 트랜잭션 커밋을 시도한 횟수입니다.ProfileEvent_MetadataFromKeeperCleanupTransactionCommitRetry(UInt64) — 삭제된 객체 정리를 위한 메타데이터 트랜잭션 커밋을 재시도한 횟수입니다.ProfileEvent_MetadataFromKeeperOperations(UInt64) — Keeper에 요청을 보낸 횟수입니다.ProfileEvent_MetadataFromKeeperIndividualOperations(UInt64) — Keeper에 대한 단일 요청 또는 다중 요청으로 읽거나 쓴 경로 수입니다.ProfileEvent_MetadataFromKeeperIndividualOperationsMicroseconds(UInt64) — Keeper에 대한 단일 요청 또는 다중 요청 중 소요된 시간입니다.ProfileEvent_MetadataFromKeeperReconnects(UInt64) — Keeper에 재연결한 횟수입니다.ProfileEvent_MetadataFromKeeperBackgroundCleanupObjects(UInt64) — 오래전에 삭제된 객체 정리가 백그라운드 작업에 의해 수행된 횟수입니다.ProfileEvent_MetadataFromKeeperBackgroundCleanupTransactions(UInt64) — 백그라운드 작업에서 오래된 트랜잭션 멱등성 토큰을 정리한 횟수ProfileEvent_MetadataFromKeeperBackgroundCleanupBlobs(UInt64) — 백그라운드 작업에서 빈 blob 레이아웃 part를 정리한 횟수ProfileEvent_MetadataFromKeeperBackgroundCleanupErrors(UInt64) — 백그라운드 정리 작업 중 오류가 발생한 횟수ProfileEvent_BlobKillerThreadRuns(UInt64) — BlobKiller 스레드가 실행된 횟수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) — 파티션 할당 횟수(consumer group 리밸런싱의 마지막 단계)ProfileEvent_KafkaRebalanceErrors(UInt64) — 실패한 consumer group 리밸런싱 횟수ProfileEvent_KafkaMessagesPolled(UInt64) — librdkafka에서 ClickHouse로 폴링된 Kafka 메시지 수ProfileEvent_KafkaMessagesRead(UInt64) — ClickHouse가 이미 처리한 Kafka 메시지 수ProfileEvent_KafkaMessagesFailed(UInt64) — ClickHouse가 파싱하지 못한 Kafka 메시지 수ProfileEvent_KafkaRowsRead(UInt64) — Kafka 메시지에서 파싱된 행 수ProfileEvent_KafkaRowsRejected(UInt64) — 파싱되었지만 이후 거부된 행 수(리밸런싱, 오류 또는 이와 유사한 이유 때문). 이러한 행은 리밸런싱 후 다시 소비됩니다.ProfileEvent_KafkaDirectReads(UInt64) — 서버 시작 이후 Kafka 테이블에서 직접 SELECT한 횟수ProfileEvent_KafkaBackgroundReads(UInt64) — 서버 시작 이후 Kafka에서 구체화된 뷰(Materialized View)를 채우기 위해 수행된 백그라운드 읽기 횟수ProfileEvent_KafkaCommits(UInt64) — 소비한 오프셋을 Kafka에 성공적으로 커밋한 횟수(일반적으로 KafkaBackgroundReads와 같아야 함)ProfileEvent_KafkaCommitFailures(UInt64) — 소비한 오프셋을 Kafka에 커밋하지 못한 횟수(일반적으로 일부 데이터 중복의 신호임)ProfileEvent_KafkaConsumerErrors(UInt64) — 폴링 중 librdkafka가 보고한 오류 수ProfileEvent_KafkaMVNotReady(UInt64) — 준비되지 않은 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) — 요청된 소스를 스키마 캐시에서 찾은 횟수ProfileEvent_SchemaInferenceCacheSchemaHits(UInt64) — 스키마 추론 중 스키마를 스키마 캐시에서 찾은 횟수ProfileEvent_SchemaInferenceCacheNumRowsHits(UInt64) — 파일에서 count를 수행하는 동안 행 수를 스키마 캐시에서 찾은 횟수ProfileEvent_SchemaInferenceCacheMisses(UInt64) — 요청된 소스가 스키마 캐시에 없었던 횟수ProfileEvent_SchemaInferenceCacheSchemaMisses(UInt64) — 스키마 추론 중 요청된 소스는 캐시에 있지만 스키마는 캐시에 없었던 횟수ProfileEvent_SchemaInferenceCacheNumRowsMisses(UInt64) — 파일에서 count를 수행하는 동안 요청된 소스는 캐시에 있지만 행 수는 캐시에 없었던 횟수ProfileEvent_SchemaInferenceCacheEvictions(UInt64) — 오버플로우로 인해 캐시에서 스키마가 제거된 횟수ProfileEvent_SchemaInferenceCacheInvalidations(UInt64) — 데이터 변경으로 인해 캐시의 스키마가 무효화된 횟수ProfileEvent_KeeperPacketsSent(UInt64) — Keeper 서버가 전송한 패킷 수ProfileEvent_KeeperPacketsReceived(UInt64) — Keeper server가 수신한 패킷 수ProfileEvent_KeeperRequestTotal(UInt64) — Keeper server의 총 요청 수ProfileEvent_KeeperRequestTotalWithSubrequests(UInt64) — 다중 요청 내 각 하위 요청까지 포함해 계산한 Keeper server의 총 요청 수ProfileEvent_KeeperLatency(UInt64) — Keeper 지연 시간ProfileEvent_KeeperTotalElapsedMicroseconds(UInt64) — 단일 요청에 대한 Keeper의 전체 지연 시간ProfileEvent_KeeperProcessElapsedMicroseconds(UInt64) — 단일 요청에 대한 Keeper 커밋 지연 시간ProfileEvent_KeeperPreprocessElapsedMicroseconds(UInt64) — 단일 요청에 대한 Keeper 전처리 지연 시간ProfileEvent_KeeperStorageLockWaitMicroseconds(UInt64) — Keeper storage lock 획득을 기다리는 데 소요된 시간ProfileEvent_KeeperStorageSharedLockWaitMicroseconds(UInt64) — Keeper storage shared lock 획득을 기다리는 데 소요된 시간ProfileEvent_KeeperChangelogLockWaitMicroseconds(UInt64) — Keeper changelog lock 획득을 기다리는 데 소요된 시간ProfileEvent_KeeperServerWriteLockWaitMicroseconds(UInt64) — Keeper server write lock 획득을 기다리는 데 소요된 시간ProfileEvent_KeeperSessionCallbackLockWaitMicroseconds(UInt64) — Keeper session callback lock 획득을 기다리는 데 소요된 시간ProfileEvent_KeeperReadRequestQueueLockWaitMicroseconds(UInt64) — Keeper read request 큐 lock 획득을 기다리는 데 소요된 시간ProfileEvent_KeeperProcessAndResponsesLockWaitMicroseconds(UInt64) — Keeper process and responses lock 획득을 기다리는 데 소요된 시간ProfileEvent_KeeperCommitWaitElapsedMicroseconds(UInt64) — 특정 로그가 커밋될 때까지 기다리는 데 소요된 시간ProfileEvent_KeeperBatchMaxCount(UInt64) — 개수 제한으로 인해 배치 크기가 제한된 횟수ProfileEvent_KeeperBatchMaxTotalSize(UInt64) — 전체 바이트 크기 제한으로 인해 배치 크기가 제한된 횟수ProfileEvent_KeeperReadBatchCount(UInt64) — Keeper가 처리한 read request 배치 수ProfileEvent_KeeperReadBatchTotalRequests(UInt64) — Keeper가 배치로 처리한 read request의 총수ProfileEvent_KeeperCommits(UInt64) — 성공한 커밋 수ProfileEvent_KeeperCommitsFailed(UInt64) — 실패한 커밋 수ProfileEvent_KeeperSnapshotCreations(UInt64) — snapshot 생성 수ProfileEvent_KeeperSnapshotCreationsFailed(UInt64) — 실패한 snapshot 생성 수ProfileEvent_KeeperSnapshotApplys(UInt64) — snapshot 적용 수ProfileEvent_KeeperSnapshotApplysFailed(UInt64) — 실패한 snapshot 적용 수ProfileEvent_KeeperReadSnapshot(UInt64) — 완료된 스냅샷 읽기 수ProfileEvent_KeeperReadSnapshotObject(UInt64) — 팔로워에게 전송된 스냅샷 객체 수ProfileEvent_KeeperReadSnapshotFailed(UInt64) — 실패한 스냅샷 읽기 수ProfileEvent_KeeperSnapshotRemoteLoaderErrors(UInt64) — 팔로워에 스냅샷을 제공하는 동안 RemoteSnapshotLoader에서 발생한 원격 읽기 오류 수ProfileEvent_KeeperSaveSnapshotObject(UInt64) — 리더로부터 수신한 스냅샷 객체 수ProfileEvent_KeeperSaveSnapshotFailed(UInt64) — 실패한 스냅샷 저장 수ProfileEvent_KeeperSaveSnapshot(UInt64) — 스냅샷 저장 수ProfileEvent_KeeperCreateRequest(UInt64) — create 요청 수ProfileEvent_KeeperRemoveRequest(UInt64) — remove 요청 수ProfileEvent_KeeperSetRequest(UInt64) — set 요청 수ProfileEvent_KeeperReconfigRequest(UInt64) — reconfig 요청 수ProfileEvent_KeeperCheckRequest(UInt64) — check 요청 수ProfileEvent_KeeperMultiRequest(UInt64) — multi 요청 수ProfileEvent_KeeperMultiReadRequest(UInt64) — multi read 요청 수ProfileEvent_KeeperGetRequest(UInt64) — get 요청 수ProfileEvent_KeeperListRequest(UInt64) — list 요청 수ProfileEvent_KeeperListRecursiveRequest(UInt64) — 하위 항목을 재귀적으로 가져오는 요청 수ProfileEvent_KeeperExistsRequest(UInt64) — exists 요청 수ProfileEvent_KeeperSetWatchesRequest(UInt64) — set watch 요청 수ProfileEvent_KeeperAddWatchRequest(UInt64) — add watch 요청 수ProfileEvent_KeeperRemoveWatchRequest(UInt64) — watch 제거 요청 수ProfileEvent_KeeperCheckWatchRequest(UInt64) — watch 제거 요청 수ProfileEvent_KeeperRequestRejectedDueToSoftMemoryLimitCount(UInt64) — 소프트 메모리 한도 초과로 거부된 요청 수ProfileEvent_KeeperStaleRequestsSkipped(UInt64) — 세션이 더 이상 활성 상태가 아니어서 건너뛴 Keeper 요청 수ProfileEvent_KeeperLiveSessionsLockWaitMicroseconds(UInt64) — Keeper live sessions lock을 획득하기 위해 대기한 시간ProfileEvent_OverflowBreak(UInt64) — 설정 ’*_overflow_mode’ = ‘break’일 때 쿼리 복잡도 제한으로 인해 데이터 처리가 취소되어 결과가 불완전해진 횟수입니다.ProfileEvent_OverflowThrow(UInt64) — 설정 ’*_overflow_mode’ = ‘throw’일 때 쿼리 복잡도 제한으로 인해 데이터 처리가 취소되고 예외가 발생한 횟수입니다.ProfileEvent_OverflowAny(UInt64) — 근사 GROUP BY가 적용된 횟수입니다. 즉, 집계는 처음 ‘max_rows_to_group_by’개의 고유 키에 대해서만 수행되고, ‘group_by_overflow_mode’ = ‘any’로 인해 나머지 키는 무시된 경우입니다.ProfileEvent_S3QueueSetFileProcessingMicroseconds(UInt64) — 파일을processing상태로 설정하는 데 소요된 시간ProfileEvent_S3QueueSetFileProcessedMicroseconds(UInt64) — 파일을processed상태로 설정하는 데 소요된 시간ProfileEvent_S3QueueSetFileFailedMicroseconds(UInt64) — 파일을failed상태로 설정하는 데 소요된 시간ProfileEvent_ObjectStorageQueueFailedFiles(UInt64) — 처리에 실패한 파일 수ProfileEvent_ObjectStorageQueueProcessedFiles(UInt64) — 처리된 파일 수ProfileEvent_ObjectStorageQueueCleanupMaxSetSizeOrTTLMicroseconds(UInt64) — 파일을failed상태로 설정하는 데 소요된 시간ProfileEvent_ObjectStorageQueuePullMicroseconds(UInt64) — 파일 데이터를 읽는 데 소요된 시간ProfileEvent_ObjectStorageQueueFailedToBatchSetProcessing(UInt64) — Batch Set 처리 요청이 실패한 횟수ProfileEvent_ObjectStorageQueueTrySetProcessingRequests(UInt64) — Set 처리 요청을 시도한 횟수ProfileEvent_ObjectStorageQueueTrySetProcessingSucceeded(UInt64) — 파일을processing상태로 성공적으로 설정한 횟수ProfileEvent_ObjectStorageQueueTrySetProcessingFailed(UInt64) — 파일을processing상태로 설정하지 못한 횟수ProfileEvent_ObjectStorageQueueListedFiles(UInt64) — StorageS3(Azure)Queue에 목록으로 표시된 파일 수ProfileEvent_ObjectStorageQueueFilteredFiles(UInt64) — StorageS3(Azure)Queue에서 필터링된 파일 수ProfileEvent_ObjectStorageQueueReadFiles(UInt64) — 읽은 파일 수(실제로 삽입된 파일 수와는 다름)ProfileEvent_ObjectStorageQueueReadRows(UInt64) — 읽은 행 수(실제로 삽입된 행 수와는 다름)ProfileEvent_ObjectStorageQueueReadBytes(UInt64) — 읽은 바이트 수(실제로 삽입된 바이트 수와는 다름)ProfileEvent_ObjectStorageQueueExceptionsDuringRead(UInt64) — S3(Azure)Queue에서 읽는 중 발생한 예외 수ProfileEvent_ObjectStorageQueueExceptionsDuringInsert(UInt64) — S3(Azure)Queue에서 삽입 중 발생한 예외 수ProfileEvent_ObjectStorageQueueMovedObjects(UInt64) — after_processing = move에 따라 이동된 객체 수ProfileEvent_ObjectStorageQueueRemovedObjects(UInt64) — after_processing = delete에 따라 제거된 객체 수ProfileEvent_ObjectStorageQueueTaggedObjects(UInt64) — after_processing = tag에 따라 태그가 지정된 객체 수ProfileEvent_ObjectStorageQueueInsertIterations(UInt64) — 삽입 반복 횟수ProfileEvent_ObjectStorageQueueCommitRequests(UInt64) — 파일을 실패 또는 처리됨 상태로 commit하기 위한 keeper 요청 수ProfileEvent_ObjectStorageQueueSuccessfulCommits(UInt64) — 성공한 keeper commits 수ProfileEvent_ObjectStorageQueueUnsuccessfulCommits(UInt64) — 성공하지 못한 keeper commits 수ProfileEvent_ObjectStorageQueueCancelledFiles(UInt64) — StorageS3(Azure)Queue에서 취소된 파일 수ProfileEvent_ObjectStorageQueueProcessedRows(UInt64) — StorageS3(Azure)Queue에서 처리된 행 수ProfileEvent_ObjectStorageListedObjects(UInt64) — 필터링이 적용되기 전에 객체 스토리지 listing API가 반환한 전체 객체 수ProfileEvent_ObjectStorageGlobFilteredObjects(UInt64) — glob 또는 Regex pattern과 일치하지 않아 listing 중 건너뛴 객체 수ProfileEvent_ObjectStoragePredicateFilteredObjects(UInt64) — _path/_file에 대한 가상 컬럼 프레디케이트 필터링으로 제외된 객체 수ProfileEvent_ObjectStorageReadObjects(UInt64) — 객체 스토리지 source가 실제로 읽기 위해 연 객체 수ProfileEvent_ServerStartupMilliseconds(UInt64) — server 시작부터 소켓에서 수신 대기를 시작할 때까지 경과한 시간(밀리초)ProfileEvent_IOUringSQEsSubmitted(UInt64) — 제출된 io_uring SQE의 총수ProfileEvent_IOUringSQEsResubmitsAsync(UInt64) — 수행된 비동기 io_uring SQE 재제출의 총수ProfileEvent_IOUringSQEsResubmitsSync(UInt64) — 수행된 동기 io_uring SQE 재제출의 총수ProfileEvent_IOUringCQEsCompleted(UInt64) — 성공적으로 완료된 io_uring CQE의 총수ProfileEvent_IOUringCQEsFailed(UInt64) — 실패와 함께 완료된 io_uring CQE의 총수ProfileEvent_BackupsOpenedForRead(UInt64) — 읽기용으로 연 backups 수ProfileEvent_BackupsOpenedForWrite(UInt64) — 쓰기용으로 연 backups 수ProfileEvent_BackupsOpenedForUnlock(UInt64) — unlock용으로 연 backups 수ProfileEvent_BackupReadMetadataMicroseconds(UInt64) — .backup 파일에서 backup metadata를 읽는 데 소요된 시간ProfileEvent_BackupWriteMetadataMicroseconds(UInt64) — .backup 파일에 backup metadata를 쓰는 데 소요된 시간ProfileEvent_BackupEntriesCollectorMicroseconds(UInt64) — backup entries를 생성하는 데 소요된 시간ProfileEvent_BackupEntriesCollectorForTablesDataMicroseconds(UInt64) — 테이블 데이터에 대한 backup entries를 생성하는 데 소요된 시간ProfileEvent_BackupEntriesCollectorRunPostTasksMicroseconds(UInt64) — backup entries 생성 후 후속 작업을 실행하는 데 소요된 시간ProfileEvent_BackupPreparingFileInfosMicroseconds(UInt64) — backup entries용 파일 정보를 준비하는 데 소요된 시간ProfileEvent_BackupReadLocalFilesToCalculateChecksums(UInt64) — backup entries의 checksums를 계산하기 위해 로컬에서 읽은 파일 수ProfileEvent_BackupReadLocalBytesToCalculateChecksums(UInt64) — 백업 항목의 체크섬을 계산하기 위해 로컬에서 읽은 파일의 총 크기ProfileEvent_BackupReadRemoteFilesToCalculateChecksums(UInt64) — 백업 항목의 체크섬을 계산하기 위해 원격 디스크에서 읽은 파일 수ProfileEvent_BackupReadRemoteBytesToCalculateChecksums(UInt64) — 백업 항목의 체크섬을 계산하기 위해 원격 디스크에서 읽은 파일의 총 크기ProfileEvent_BackupLockFileReads(UInt64) — 백업 생성 중 ‘.lock’ 파일을 읽은 횟수ProfileEvent_RestorePartsSkippedFiles(UInt64) — 파트 복원 중 건너뛴 파일 수ProfileEvent_RestorePartsSkippedBytes(UInt64) — 파트 복원 중 건너뛴 파일의 총 크기ProfileEvent_ReadTaskRequestsReceived(UInt64) — 읽기 작업을 선택하기 위해 원격 서버가 이니시에이터 서버(initiator server)로 다시 요청한 콜백 수(s3Cluster 테이블 함수 및 유사한 경우). 이니시에이터 서버 측에서 측정됩니다.ProfileEvent_MergeTreeReadTaskRequestsReceived(UInt64) — 읽기 작업을 선택하기 위해 원격 서버가 이니시에이터 서버(initiator server)로 다시 요청한 콜백 수(MergeTree 테이블의 경우). 이니시에이터 서버 측에서 측정됩니다.ProfileEvent_ReadTaskRequestsSent(UInt64) — 읽기 작업을 선택하기 위해 원격 서버가 이니시에이터 서버(initiator server)로 다시 요청한 콜백 수(s3Cluster 테이블 함수 및 유사한 경우). 원격 서버 측에서 측정됩니다.ProfileEvent_MergeTreeReadTaskRequestsSent(UInt64) — 읽기 작업을 선택하기 위해 원격 서버가 이니시에이터 서버(initiator server)로 다시 요청한 콜백 수(MergeTree 테이블의 경우). 원격 서버 측에서 측정됩니다.ProfileEvent_MergeTreeAllRangesAnnouncementsSent(UInt64) — 데이터 파트 집합에 대해 원격 서버에서 이니시에이터 서버(initiator server)로 전송한 알림 수(MergeTree 테이블의 경우). 원격 서버 측에서 측정됩니다.ProfileEvent_ReadTaskRequestsSentElapsedMicroseconds(UInt64) — 읽기 작업을 선택하기 위해 원격 서버가 이니시에이터 서버(initiator server)로 다시 요청한 콜백에 소요된 시간(s3Cluster 테이블 함수 및 유사한 경우). 원격 서버 측에서 측정됩니다.ProfileEvent_MergeTreeReadTaskRequestsSentElapsedMicroseconds(UInt64) — 읽기 작업을 선택하기 위해 원격 서버가 이니시에이터 서버(initiator server)로 다시 요청한 콜백에 소요된 시간(MergeTree 테이블의 경우). 원격 서버 측에서 측정됩니다.ProfileEvent_MergeTreeAllRangesAnnouncementsSentElapsedMicroseconds(UInt64) — 데이터 파트 집합에 대해 원격 서버에서 이니시에이터 서버(initiator server)로 알림을 전송하는 데 소요된 시간(MergeTree 테이블의 경우). 원격 서버 측에서 측정됩니다.ProfileEvent_MergerMutatorsGetPartsForMergeElapsedMicroseconds(UInt64) — 데이터 파트 스냅샷을 가져와 그로부터 범위를 구성하는 데 소요된 시간ProfileEvent_MergerMutatorPrepareRangesForMergeElapsedMicroseconds(UInt64) — 머지 프레디케이트에 따라 머지할 수 있는 파트 범위를 준비하는 데 소요된 시간ProfileEvent_MergerMutatorSelectPartsForMergeElapsedMicroseconds(UInt64) — 머지할 수 있는 범위에서 파트를 선택하는 데 소요된 시간ProfileEvent_MergerMutatorRangesForMergeCount(UInt64) — 머지 후보 범위 수ProfileEvent_MergerMutatorPartsInRangesForMergeCount(UInt64) — 머지 후보 범위 내 파트 수ProfileEvent_MergerMutatorSelectRangePartsCount(UInt64) — 머지를 위해 선택된 범위에 포함된 파트 수ProfileEvent_ConnectionPoolIsFullMicroseconds(UInt64) — 연결 풀의 슬롯을 기다리는 데 소요된 총 시간ProfileEvent_AsyncLoaderWaitMicroseconds(UInt64) — 쿼리가 비동기 로더 작업을 기다린 총 시간ProfileEvent_DistrCacheServerSwitches(UInt64) — 분산 캐시 읽기 버퍼 이벤트. read/write-through 캐시에서 Distributed Cache 서버 간 전환 횟수ProfileEvent_DistrCacheReadMicroseconds(UInt64) — 분산 캐시 읽기 버퍼 이벤트. Distributed Cache에서 읽는 데 소요된 시간ProfileEvent_DistrCacheFallbackReadMicroseconds(UInt64) — 분산 캐시 읽기 버퍼 이벤트. Distributed Cache 대신 폴백 버퍼에서 읽는 데 소요된 시간ProfileEvent_DistrCachePrecomputeRangesMicroseconds(UInt64) — 분산 캐시 읽기 버퍼 이벤트. 읽기 범위를 미리 계산하는 데 소요된 시간ProfileEvent_DistrCacheNextImplMicroseconds(UInt64) — 분산 캐시 읽기 버퍼 이벤트.ReadBufferFromDistributedCache::nextImpl에서 소요된 시간ProfileEvent_DistrCacheStartRangeMicroseconds(UInt64) — 분산 캐시 읽기 버퍼 이벤트. Distributed Cache로 새 읽기 범위를 시작하는 데 소요된 시간ProfileEvent_DistrCacheRangeChange(UInt64) — 분산 캐시 읽기 버퍼 이벤트. seek/last_position 변경으로 읽기 범위를 변경한 횟수ProfileEvent_DistrCacheRangeResetBackward(UInt64) — 분산 캐시 읽기 버퍼 이벤트. seek/last_position 변경으로 읽기 범위를 재설정한 횟수ProfileEvent_DistrCacheRangeResetForward(UInt64) — 분산 캐시 읽기 버퍼 이벤트. seek/last_position 변경으로 읽기 범위를 재설정한 횟수ProfileEvent_DistrCacheReconnectsAfterTimeout(UInt64) — 분산 캐시 읽기 버퍼 이벤트. 타임아웃 후 재연결 횟수ProfileEvent_DistrCacheServerUpdates(UInt64) — Distributed Cache 이벤트. hash로 선택된 서버가 변경되어(예: 서버 등록 해제) 읽기 또는 쓰기 중 서버 전환이 발생한 횟수ProfileEvent_DistrCacheReadErrors(UInt64) — 분산 캐시 읽기 버퍼 이벤트. 읽기 중 발생한 Distributed Cache 오류 횟수ProfileEvent_DistrCacheWriteErrors(UInt64) — Distributed Cache 쓰기 버퍼 이벤트. 쓰기 중 발생한 Distributed Cache 오류 횟수ProfileEvent_DistrCacheWriteReconnectsAfterTimeout(UInt64) — Distributed Cache 쓰기 버퍼 이벤트. 타임아웃 후 재연결 횟수ProfileEvent_DistrCacheWriteMicroseconds(UInt64) — Distributed Cache 쓰기 버퍼 이벤트.WriteBufferFromDistributedCache::writeToFileSegment에서 소요된 시간ProfileEvent_DistrCacheWriteBytes(UInt64) — Distributed Cache 쓰기 버퍼 이벤트. Distributed Cache에 기록된 바이트 수ProfileEvent_DistrCacheObjectStorageWriteMicroseconds(UInt64) — Distributed Cache 쓰기 버퍼 이벤트. 객체 스토리지에 쓰는 데 소요된 시간ProfileEvent_DistrCacheObjectStorageWriteBytes(UInt64) — Distributed Cache 쓰기 버퍼 이벤트. 객체 스토리지에 기록된 바이트 수ProfileEvent_DistrCacheGetResponseMicroseconds(UInt64) — Distributed Cache 클라이언트 이벤트. Distributed Cache의 응답을 기다리는 데 소요된 시간ProfileEvent_DistrCacheMakeRequestErrors(UInt64) — Distributed Cache 클라이언트 이벤트. 요청을 보낼 때 발생한 Distributed Cache 오류 횟수ProfileEvent_DistrCacheReceiveResponseErrors(UInt64) — Distributed Cache 클라이언트 이벤트. 요청에 대한 응답을 수신할 때 발생한 Distributed Cache 오류 횟수ProfileEvent_DistrCacheReceivedDataPackets(UInt64) — Distributed Cache 클라이언트 이벤트. Distributed Cache에서 수신한 데이터 패킷의 총개수ProfileEvent_DistrCacheReceivedDataPacketsBytes(UInt64) — Distributed Cache 클라이언트 이벤트. Distributed Cache에서 수신한 데이터 패킷의 바이트 수ProfileEvent_DistrCacheReceivedOkPackets(UInt64) — Distributed Cache 클라이언트 이벤트. Distributed Cache에서 수신한 Ok 패킷의 총개수ProfileEvent_DistrCacheReceivedErrorPackets(UInt64) — Distributed Cache 클라이언트 이벤트. Distributed Cache에서 수신한 Error 패킷의 총 개수ProfileEvent_DistrCacheReceivedCredentialsRefreshPackets(UInt64) — Distributed Cache 클라이언트 이벤트. Distributed Cache에서 수신한 RefreshCredentials 패킷의 총 개수ProfileEvent_DistrCacheReceivedStopPackets(UInt64) — Distributed Cache 클라이언트 이벤트. Distributed Cache에서 수신한 Stop 패킷의 총 개수ProfileEvent_DistrCacheSentDataPackets(UInt64) — Distributed Cache 클라이언트 이벤트. Distributed Cache로 전송한 데이터 패킷의 총 개수ProfileEvent_DistrCacheSentDataPacketsBytes(UInt64) — Distributed Cache 클라이언트 이벤트. Distributed Cache로 전송한 데이터 패킷의 바이트 수ProfileEvent_DistrCacheUnusedPackets(UInt64) — Distributed Cache 클라이언트 이벤트. Distributed Cache에서 건너뛴 미사용 패킷 수ProfileEvent_DistrCacheUnusedDataPacketsBytes(UInt64) — Distributed Cache 클라이언트 이벤트. 무시된 데이터 패킷의 바이트 수ProfileEvent_DistrCacheUnusedPacketsBufferAllocations(UInt64) — Distributed Cache 클라이언트 이벤트. 기존 버퍼를 재사용할 수 없어서 추가로 발생한 버퍼 할당 수ProfileEvent_DistrCacheLockRegistryMicroseconds(UInt64) — Distributed Cache registry 이벤트. DistributedCacheRegistry 잠금을 획득하는 데 소요된 시간ProfileEvent_DistrCacheRegistryUpdateMicroseconds(UInt64) — Distributed Cache registry 이벤트. Distributed Cache registry를 갱신하는 데 소요된 시간ProfileEvent_DistrCacheRegistryUpdates(UInt64) — Distributed Cache registry 이벤트. Distributed Cache registry 갱신 횟수ProfileEvent_DistrCacheHashRingRebuilds(UInt64) — Distributed Cache registry 이벤트. Distributed Cache hash ring 재구성 횟수ProfileEvent_DistrCacheSuccessfulRegistryUpdates(UInt64) — Distributed Cache registry 이벤트. 성공한 서버 registry 갱신 횟수ProfileEvent_DistrCacheUnsuccessfulRegistryUpdates(UInt64) — Distributed Cache registry 이벤트. 실패한 서버 registry 갱신 횟수ProfileEvent_DistrCacheReadBytesFromFallbackBuffer(UInt64) — 분산 캐시 읽기 버퍼 이벤트. fallback buffer에서 읽은 바이트 수ProfileEvent_DistrCacheOpenedConnections(UInt64) — Distributed Cache connection 이벤트. Distributed Cache에 대해 열린 연결 수ProfileEvent_DistrCacheReusedConnections(UInt64) — Distributed Cache connection 이벤트. Distributed Cache에 대해 재사용된 연결 수ProfileEvent_DistrCacheStaleReconnections(UInt64) — Distributed Cache connection 이벤트. 오래된(피어에서 종료된) 풀 연결로 인해 재연결한 횟수ProfileEvent_DistrCacheRemoveOutdatedMicroseconds(UInt64) — Distributed Cache connection 이벤트. 풀에서 오래된 연결을 제거하는 데 소요된 시간ProfileEvent_DistrCacheOpenedConnectionsBypassingPool(UInt64) — Distributed Cache connection 이벤트. 풀을 우회해 Distributed Cache에 대해 열린 연결 수ProfileEvent_DistrCacheConnectMicroseconds(UInt64) — Distributed Cache connection 이벤트. Distributed Cache에 연결하는 데 소요된 시간ProfileEvent_DistrCacheConnectAttempts(UInt64) — Distributed Cache connection 이벤트. Distributed Cache에 대한 연결 시도 횟수ProfileEvent_DistrCacheSuccessfulConnectAttempts(UInt64) — Distributed Cache connection 이벤트. 성공한 Distributed Cache 연결 시도 횟수ProfileEvent_DistrCacheUnsuccessfulConnectAttempts(UInt64) — Distributed Cache connection 이벤트. 실패한 Distributed Cache 연결 시도 횟수ProfileEvent_DistrCacheGetClientMicroseconds(UInt64) — Distributed Cache connection 이벤트. Distributed Cache용 클라이언트를 가져오는 데 소요된 시간ProfileEvent_DistrCacheTemporaryFilesCreated(UInt64) — Distributed Cache connection event. Distributed Cache에서 생성된 임시 파일 수ProfileEvent_DistrCacheTemporaryFilesBytesWritten(UInt64) — Distributed Cache connection event. Distributed Cache에서 생성된 임시 파일에 기록된 바이트 수ProfileEvent_DistrCacheServerProcessRequestMicroseconds(UInt64) — Distributed Cache server event. DistributedCache 서버 측에서 요청 처리에 소요된 시간ProfileEvent_DistrCacheServerStartRequestPackets(UInt64) — Distributed Cache server event. DistributedCacheServer의 StartRequest 패킷 수ProfileEvent_DistrCacheServerContinueRequestPackets(UInt64) — Distributed Cache server event. DistributedCacheServer의 ContinueRequest 패킷 수ProfileEvent_DistrCacheServerEndRequestPackets(UInt64) — Distributed Cache server event. DistributedCacheServer의 EndRequest 패킷 수ProfileEvent_DistrCacheServerReceivedCredentialsRefreshPackets(UInt64) — Distributed Cache server event. DistributedCacheServer의 RefreshCredentials 클라이언트 패킷 수ProfileEvent_DistrCacheServerAckRequestPackets(UInt64) — Distributed Cache server event. DistributedCacheServer의 AckRequest 패킷 수ProfileEvent_DistrCacheServerNewS3CachedClients(UInt64) — Distributed Cache server event. 새로 캐시된 S3 클라이언트 수ProfileEvent_DistrCacheServerReusedS3CachedClients(UInt64) — Distributed Cache server event. 재사용된 캐시된 S3 클라이언트 수ProfileEvent_DistrCacheServerCredentialsRefresh(UInt64) — Distributed Cache server event. 만료된 자격 증명이 갱신된 횟수ProfileEvent_DistrCacheServerCachedReadBufferCacheHits(UInt64) — Distributed Cache server event. 파일 시스템 캐시에서 읽는 동안 Distributed Cache가 캐시에 적중한 횟수ProfileEvent_DistrCacheServerCachedReadBufferCacheMisses(UInt64) — Distributed Cache server event. 파일 시스템 캐시에서 읽는 동안 Distributed Cache가 캐시를 놓친 횟수ProfileEvent_DistrCacheServerCachedReadBufferCacheWrittenBytes(UInt64) — Distributed Cache server event. 파일 시스템 캐시에서 읽는 동안 Distributed Cache에서 캐시에 기록한 바이트 수ProfileEvent_DistrCacheServerCachedReadBufferCacheReadBytes(UInt64) — Distributed Cache server event. 파일 시스템 캐시에서 읽는 동안 Distributed Cache에서 캐시로부터 읽은 바이트 수ProfileEvent_DistrCacheServerCachedReadBufferObjectStorageReadBytes(UInt64) — Distributed Cache server event. 파일 시스템 캐시에서 읽는 동안 Distributed Cache에서 객체 스토리지로부터 읽은 바이트 수ProfileEvent_DistrCacheServerCachedReadBufferCachePredownloadBytes(UInt64) — Distributed Cache server event. 파일 시스템 캐시에서 읽는 동안 Distributed Cache에서 사전 다운로드를 위해 객체 스토리지로부터 읽은 바이트 수ProfileEvent_DistrCacheServerSkipped(UInt64) — Distributed Cache server event. 이전 connection 시도가 Failed 상태였기 때문에 Distributed Cache server를 건너뛴 횟수ProfileEvent_LogTest(UInt64) — Level이 Test인 로그 메시지 수ProfileEvent_LogTrace(UInt64) — Level이 Trace인 로그 메시지 수ProfileEvent_LogDebug(UInt64) — Level이 Debug인 로그 메시지 수ProfileEvent_LogInfo(UInt64) — Level이 Info인 로그 메시지 수ProfileEvent_LogWarning(UInt64) — Level이 Warning인 로그 메시지 수ProfileEvent_LogError(UInt64) — Level이 Error인 로그 메시지 수ProfileEvent_LogFatal(UInt64) — Level이 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) — 리더에 의한 가상 파트 업데이트 횟수ProfileEvent_SharedMergeTreeVirtualPartsUpdateMicroseconds(UInt64) — 가상 파트 업데이트에 소요된 시간(마이크로초)ProfileEvent_SharedMergeTreeVirtualPartsUpdatesFromZooKeeper(UInt64) — ZooKeeper로부터의 가상 파트 업데이트 횟수ProfileEvent_SharedMergeTreeVirtualPartsUpdatesFromZooKeeperMicroseconds(UInt64) — ZooKeeper로부터의 가상 파트 업데이트에 소요된 시간(마이크로초)ProfileEvent_SharedMergeTreeVirtualPartsUpdatesPeerNotFound(UInt64) — 피어를 찾지 못해 피어로부터의 가상 업데이트에 실패한 횟수ProfileEvent_SharedMergeTreeVirtualPartsUpdatesFromPeer(UInt64) — 피어로부터의 가상 파트 업데이트 횟수ProfileEvent_SharedMergeTreeVirtualPartsUpdatesFromPeerMicroseconds(UInt64) — 피어로부터의 가상 파트 업데이트에 소요된 시간(마이크로초)ProfileEvent_SharedMergeTreeVirtualPartsUpdatesForMergesOrStatus(UInt64) — 기본이 아닌 백그라운드 작업에서 발생한 가상 파트 업데이트ProfileEvent_SharedMergeTreeVirtualPartsUpdatesLeaderFailedElection(UInt64) — virtual parts updates 리더 선출에 실패한 횟수ProfileEvent_SharedMergeTreeVirtualPartsUpdatesLeaderSuccessfulElection(UInt64) — virtual parts updates 리더 선출에 성공한 횟수ProfileEvent_SharedMergeTreeMergeMutationAssignmentAttempt(UInt64) — 머지 또는 mutation 할당을 시도한 횟수ProfileEvent_SharedMergeTreeMergeMutationAssignmentFailedWithNothingToDo(UInt64) — 머지 또는 mutation 할당을 시도했지만 머지할 대상이 없어 실패한 횟수ProfileEvent_SharedMergeTreeMergeMutationAssignmentFailedWithConflict(UInt64) — 머지 또는 mutation 할당을 시도했지만 Keeper 충돌로 실패한 횟수ProfileEvent_SharedMergeTreeMergeMutationAssignmentSuccessful(UInt64) — 머지 또는 mutation 할당에 성공한 횟수ProfileEvent_SharedMergeTreeMergePartsMovedToOudated(UInt64) — outdated 디렉터리로 이동된 파트 수ProfileEvent_SharedMergeTreeMergePartsMovedToCondemned(UInt64) — 폐기 대상으로 지정된 디렉터리로 이동된 파트 수ProfileEvent_SharedMergeTreeOutdatedPartsConfirmationRequest(UInt64) — 오래된 파트를 확인하는 데 사용된 ZooKeeper 요청 수ProfileEvent_SharedMergeTreeOutdatedPartsConfirmationInvocations(UInt64) — 오래된 파트 확인을 위해 호출된 횟수ProfileEvent_SharedMergeTreeOutdatedPartsHTTPRequest(UInt64) — 오래된 파트를 확인하기 위해 전송된 HTTP 요청 수ProfileEvent_SharedMergeTreeOutdatedPartsHTTPResponse(UInt64) — 오래된 파트를 확인하기 위해 전송된 HTTP 응답 수ProfileEvent_SharedMergeTreeCondemnedPartsKillRequest(UInt64) — 폐기 대상으로 지정된 파트를 제거하는 데 사용된 ZooKeeper 요청 수ProfileEvent_SharedMergeTreeCondemnedPartsLockConflict(UInt64) — 충돌로 인해 잠금 획득에 실패한 횟수ProfileEvent_SharedMergeTreeCondemnedPartsRemoved(UInt64) — 제거된 폐기 대상으로 지정된 파트 수ProfileEvent_SharedMergeTreePartsKillerRuns(UInt64) — parts killer가 실행된 횟수ProfileEvent_SharedMergeTreePartsKillerMicroseconds(UInt64) — parts killer 메인 스레드에 소요된 시간(마이크로초)ProfileEvent_SharedMergeTreePartsKillerParts(UInt64) — killer에 의해 예약된 파트 수ProfileEvent_SharedMergeTreePartsKillerPartsMicroseconds(UInt64) — 파트 제거에 소요된 시간(마이크로초, 여러 스레드에서 실행됨)ProfileEvent_SharedMergeTreeMergeSelectingTaskMicroseconds(UInt64) — SMT의 머지 선택 작업에 소요된 시간(마이크로초)ProfileEvent_SharedMergeTreeReplicaSetUpdateTaskRuns(UInt64) — updateReplicaSetTask가 실행된 횟수ProfileEvent_SharedMergeTreeOptimizeAsync(UInt64) — 비동기 OPTIMIZE 쿼리 실행 횟수ProfileEvent_SharedMergeTreeOptimizeSync(UInt64) — 동기 OPTIMIZE 쿼리 실행 횟수ProfileEvent_SharedMergeTreeScheduleDataProcessingJob(UInt64) — scheduleDataProcessingJob이 호출된 횟수ProfileEvent_SharedMergeTreeScheduleDataProcessingJobNothingToScheduled(UInt64) — scheduleDataProcessingJob이 호출되었지만 수행할 작업이 없었던 횟수ProfileEvent_SharedMergeTreeScheduleDataProcessingJobMicroseconds(UInt64) — scheduleDataProcessingJob 실행 시간ProfileEvent_SharedMergeTreeHandleBlockingParts(UInt64) — scheduleDataProcessingJob에서 처리한 블로킹 파트 수ProfileEvent_SharedMergeTreeHandleBlockingPartsMicroseconds(UInt64) — scheduleDataProcessingJob에서 블로킹 파트를 처리하는 데 걸린 시간ProfileEvent_SharedMergeTreeHandleFetchPartsMicroseconds(UInt64) — scheduleDataProcessingJob에서 fetch한 파트를 처리하는 데 걸린 시간ProfileEvent_SharedMergeTreeHandleOutdatedParts(UInt64) — scheduleDataProcessingJob에서 처리한 오래된 파트 수ProfileEvent_SharedMergeTreeHandleOutdatedPartsMicroseconds(UInt64) — scheduleDataProcessingJob에서 오래된 파트를 처리하는 데 걸린 시간ProfileEvent_SharedMergeTreeSelectPartsForRendezvousFetchMicroseconds(UInt64) — selectPartsForRendezvousFetch 소요 시간ProfileEvent_SharedMergeTreeSelectPartsForRendezvousFetchParts(UInt64) — selectPartsForRendezvousFetch가 선택한 파트 수ProfileEvent_SharedMergeTreeSelectPartsForCoordinatedFetchMicroseconds(UInt64) — selectPartsForCoordinatedFetch 소요 시간ProfileEvent_SharedMergeTreeSelectPartsForCoordinatedFetchParts(UInt64) — selectPartsForCoordinatedFetch가 선택한 파트 수ProfileEvent_SharedMergeTreeSelectPartsForFullFetchMicroseconds(UInt64) — selectPartsForFullFetch 소요 시간ProfileEvent_SharedMergeTreeSelectPartsForFullFetchParts(UInt64) — selectPartsForFullFetch가 선택한 파트 수ProfileEvent_SharedMergeTreeTryUpdateDiskMetadataCacheForPartMicroseconds(UInt64) — scheduleDataProcessingJob에서 tryUpdateDiskMetadataCacheForPart에 걸린 시간ProfileEvent_SharedMergeTreeLoadChecksumAndIndexesMicroseconds(UInt64) — SharedMergeTree에서만 사용하는 loadColumnsChecksumsIndexes 소요 시간ProfileEvent_SharedMergeTreeSnapshotPartsCleanRequest(UInt64) — SnapshotCleanerThread가 파트 정리를 결정한 횟수ProfileEvent_SharedMergeTreeSnapshotPartsCleanerParts(UInt64) — SnapshotCleanerThread가 파트 정리를 시도한 시간ProfileEvent_SharedMergeTreeSnapshotPartsRemoved(UInt64) — SnapshotCleanerThread가 파트 정리를 성공적으로 수행한 횟수ProfileEvent_SharedMergeTreeSnapshotPartsCleanerRuns(UInt64) — SnapshotCleanerThread 실행 횟수ProfileEvent_SharedMergeTreeSnapshotPartsCleanerMicroseconds(UInt64) — SnapshotCleanerThread 총 실행 시간ProfileEvent_SharedMergeTreeSnapshotPartsCleanerPartsMicroseconds(UInt64) — SnapshotCleanerThread가 파트 정리에 걸린 시간ProfileEvent_SharedMergeTreeDataPartsFetchAttempt(UInt64) — 데이터 파트를 fetch하려고 시도한 횟수ProfileEvent_SharedMergeTreeDataPartsFetchFromPeer(UInt64) — peer에서 데이터 파트를 fetch한 횟수ProfileEvent_SharedMergeTreeDataPartsFetchFromPeerMicroseconds(UInt64) — peer에서 데이터 파트를 fetch하는 데 걸린 시간(마이크로초)ProfileEvent_SharedMergeTreeDataPartsFetchFromS3(UInt64) — S3에서 데이터 파트를 fetch한 횟수ProfileEvent_SharedMergeTreeReplicaSetUpdatesFromZooKeeper(UInt64) — ZooKeeper에서 레플리카 세트를 업데이트한 횟수ProfileEvent_SharedMergeTreeReplicaSetUpdatesFromZooKeeperRequests(UInt64) — 레플리카 세트를 업데이트하기 위해 수행한 전체 ZooKeeper 요청 수ProfileEvent_SharedMergeTreeReplicaSetUpdatesFromZooKeeperMicroseconds(UInt64) — 레플리카 세트 업데이트에 소요된 시간ProfileEvent_KeeperLogsEntryReadFromLatestCache(UInt64) — Keeper에서 최신 로그 캐시로부터 읽은 로그 항목 수ProfileEvent_KeeperLogsEntryReadFromCommitCache(UInt64) — Keeper에서 커밋 로그 캐시로부터 읽은 로그 항목 수ProfileEvent_KeeperLogsEntryReadFromFile(UInt64) — Keeper에서 changelog 파일로부터 직접 읽은 로그 항목 수ProfileEvent_KeeperLogsPrefetchedEntries(UInt64) — Keeper에서 changelog 파일로부터 프리페치한 로그 항목 수ProfileEvent_KeeperChangelogWrittenBytes(UInt64) — Keeper의 changelog에 기록된 바이트 수ProfileEvent_KeeperChangelogFileSyncMicroseconds(UInt64) — Keeper changelog에 대해 fsync에 소요된 시간(미압축 로그만 해당)ProfileEvent_KeeperSnapshotWrittenBytes(UInt64) — Keeper의 스냅샷 파일에 기록된 바이트 수ProfileEvent_KeeperSnapshotFileSyncMicroseconds(UInt64) — Keeper 스냅샷 파일에 대해 fsync에 소요된 시간ProfileEvent_StorageConnectionsCreated(UInt64) — 스토리지용으로 생성된 연결 수ProfileEvent_StorageConnectionsReused(UInt64) — 스토리지용으로 재사용된 연결 수ProfileEvent_StorageConnectionsReset(UInt64) — 스토리지용으로 재설정된 연결 수ProfileEvent_StorageConnectionsPreserved(UInt64) — 스토리지용으로 유지된 연결 수ProfileEvent_StorageConnectionsExpired(UInt64) — 스토리지용으로 만료된 연결 수ProfileEvent_StorageConnectionsErrors(UInt64) — 스토리지용 연결 생성이 실패한 횟수ProfileEvent_StorageConnectionsElapsedMicroseconds(UInt64) — 스토리지용 연결 생성에 소요된 총 시간ProfileEvent_DiskConnectionsCreated(UInt64) — 디스크용으로 생성된 연결 수ProfileEvent_DiskConnectionsReused(UInt64) — 디스크용으로 재사용된 연결 수ProfileEvent_DiskConnectionsReset(UInt64) — 디스크용으로 재설정된 연결 수ProfileEvent_DiskConnectionsPreserved(UInt64) — 디스크용으로 유지된 연결 수ProfileEvent_DiskConnectionsExpired(UInt64) — 디스크용으로 만료된 연결 수ProfileEvent_DiskConnectionsErrors(UInt64) — 디스크용 연결 생성이 실패한 횟수ProfileEvent_DiskConnectionsElapsedMicroseconds(UInt64) — 디스크용 연결 생성에 소요된 총 시간ProfileEvent_HTTPConnectionsCreated(UInt64) — 생성된 클라이언트 HTTP 연결 수ProfileEvent_HTTPConnectionsReused(UInt64) — 재사용된 클라이언트 HTTP 연결 수ProfileEvent_HTTPConnectionsReset(UInt64) — 재설정된 클라이언트 HTTP 연결 수ProfileEvent_HTTPConnectionsPreserved(UInt64) — 유지된 클라이언트 HTTP 연결 수ProfileEvent_HTTPConnectionsExpired(UInt64) — 만료된 클라이언트 HTTP 연결 수ProfileEvent_HTTPConnectionsErrors(UInt64) — 클라이언트 HTTP 연결 생성에 실패한 횟수ProfileEvent_HTTPConnectionsElapsedMicroseconds(UInt64) — 클라이언트 HTTP 연결 생성에 소요된 총 시간ProfileEvent_HTTPServerConnectionsCreated(UInt64) — 생성된 서버 HTTP 연결 수ProfileEvent_HTTPServerConnectionsReused(UInt64) — 재사용된 서버 HTTP 연결 수ProfileEvent_HTTPServerConnectionsPreserved(UInt64) — 유지된 서버 HTTP 연결 수. 연결이 Keep alive로 성공적으로 유지됨ProfileEvent_HTTPServerConnectionsExpired(UInt64) — 만료된 서버 HTTP 연결 수.ProfileEvent_HTTPServerConnectionsClosed(UInt64) — 종료된 서버 HTTP 연결 수. Keep alive가 협상되지 않음ProfileEvent_HTTPServerConnectionsReset(UInt64) — 재설정된 서버 HTTP 연결 수. 서버가 연결을 종료함ProfileEvent_AddressesDiscovered(UInt64) — HTTP 연결에 대한 DNS 조회 결과에서 새로 발견된 주소의 총개수ProfileEvent_AddressesExpired(UInt64) — HTTP 연결에 대한 DNS 조회 결과에 더 이상 나타나지 않는 만료된 주소의 총개수ProfileEvent_AddressesMarkedAsFailed(UInt64) — HTTP 연결의 연결 오류로 인해 실패로 표시된 주소의 총개수ProfileEvent_ReadWriteBufferFromHTTPRequestsSent(UInt64) — ReadWriteBufferFromHTTP가 전송한 HTTP 요청 수ProfileEvent_ReadWriteBufferFromHTTPBytes(UInt64) — ReadWriteBufferFromHTTP가 수신 및 전송한 페이로드 바이트의 총크기. HTTP 헤더는 포함되지 않습니다.ProfileEvent_WriteBufferFromHTTPRequestsSent(UInt64) — WriteBufferFromHTTP가 전송한 HTTP 요청 수ProfileEvent_WriteBufferFromHTTPBytes(UInt64) — WriteBufferFromHTTP가 수신 및 전송한 페이로드 바이트의 총크기. HTTP 헤더는 포함되지 않습니다.ProfileEvent_ConcurrencyControlSlotsGranted(UInt64) — 쿼리당 1개 스레드 보장에 따라, 그리고 설정 ‘use_concurrency_control’ = 0인 쿼리에 부여된 CPU 슬롯 수ProfileEvent_ConcurrencyControlSlotsDelayed(UInt64) — 처음에는 부여되지 않아 사용 가능한 CPU 슬롯을 기다려야 했던 CPU 슬롯 수ProfileEvent_ConcurrencyControlSlotsAcquired(UInt64) — 획득한 CPU 슬롯의 총수ProfileEvent_ConcurrencyControlSlotsAcquiredNonCompeting(UInt64) — 경쟁 없이 획득한 CPU 슬롯의 총수ProfileEvent_ConcurrencyControlQueriesDelayed(UInt64) — 슬롯을 확장하기 위해 슬롯을 기다려야 했던 CPU 슬롯 할당(쿼리)의 총수ProfileEvent_ConcurrencyControlWaitMicroseconds(UInt64) — 쿼리가 CPU 슬롯에 대한 리소스 요청을 기다린 총 시간.ProfileEvent_ConcurrencyControlPreemptedMicroseconds(UInt64) — CPU 슬롯 선점으로 인해 쿼리가 대기한 총 시간ProfileEvent_ConcurrencyControlPreemptions(UInt64) — CPU 선점의 총 횟수ProfileEvent_ConcurrencyControlUpscales(UInt64) — CPU 업스케일링 이벤트의 총 횟수ProfileEvent_ConcurrencyControlDownscales(UInt64) — CPU 다운스케일링 이벤트의 총 횟수ProfileEvent_ConcurrentQuerySlotsAcquired(UInt64) — 획득한 쿼리 슬롯의 총 개수ProfileEvent_ConcurrentQueryWaitMicroseconds(UInt64) — 쿼리 슬롯을 기다리며 대기한 총 시간ProfileEvent_CoordinatedMergesMergeCoordinatorUpdateCount(UInt64) — 머지 코디네이터 업데이트의 총 횟수ProfileEvent_CoordinatedMergesMergeCoordinatorUpdateMicroseconds(UInt64) — 머지 코디네이터 상태를 업데이트하는 데 소요된 총 시간ProfileEvent_CoordinatedMergesMergeCoordinatorFetchMetadataMicroseconds(UInt64) — 머지 코디네이터 내부에서 최신 metadata를 가져오는 데 소요된 총 시간ProfileEvent_CoordinatedMergesMergeCoordinatorFilterMicroseconds(UInt64) — 머지 코디네이터 내부에서 준비된 머지를 필터링하는 데 소요된 총 시간ProfileEvent_CoordinatedMergesMergeCoordinatorSelectMergesMicroseconds(UInt64) — 머지 코디네이터 내부에서 머지 선택기를 사용해 머지를 찾는 데 소요된 총 시간ProfileEvent_CoordinatedMergesMergeCoordinatorLockStateForShareCount(UInt64) — 코디네이터 상태 lock을 공유 모드로 획득한 총 횟수ProfileEvent_CoordinatedMergesMergeCoordinatorLockStateExclusivelyCount(UInt64) — 코디네이터 상태 lock을 배타 모드로 획득한 총 횟수ProfileEvent_CoordinatedMergesMergeCoordinatorLockStateForShareMicroseconds(UInt64) — 코디네이터 상태 뮤텍스를 공유 모드로 잠그는 데 소요된 총 시간ProfileEvent_CoordinatedMergesMergeCoordinatorLockStateExclusivelyMicroseconds(UInt64) — 코디네이터 상태 뮤텍스를 배타 모드로 잠그는 데 소요된 총 시간ProfileEvent_CoordinatedMergesMergeWorkerUpdateCount(UInt64) — 머지 워커 업데이트의 총 횟수ProfileEvent_CoordinatedMergesMergeWorkerUpdateMicroseconds(UInt64) — 워커에서 할당된 머지의 로컬 상태를 업데이트하는 데 소요된 총 시간ProfileEvent_CoordinatedMergesMergeAssignmentRequest(UInt64) — 머지 할당 요청의 총 횟수ProfileEvent_CoordinatedMergesMergeAssignmentResponse(UInt64) — 머지 할당 응답의 총 횟수ProfileEvent_CoordinatedMergesMergeAssignmentRequestMicroseconds(UInt64) — 머지 할당 클라이언트에서 소요된 총 시간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) — filter를 통과한 행의 총 개수ProfileEvent_ParquetColumnsFilterExpression(UInt64) — filter를 통과한 컬럼의 총 개수ProfileEvent_FilterTransformPassedRows(UInt64) — 쿼리에서 filter를 통과한 행 수ProfileEvent_FilterTransformPassedBytes(UInt64) — 쿼리에서 filter를 통과한 바이트 수ProfileEvent_QueryPreempted(UInt64) — 「priority」 설정으로 인해 작업이 일시 중지되어 대기한 횟수ProfileEvent_IndexBinarySearchAlgorithm(UInt64) — 인덱스 마크에 대해 이진 검색 알고리즘이 사용된 횟수ProfileEvent_IndexGenericExclusionSearchAlgorithm(UInt64) — 인덱스 마크에 대해 일반 제외 검색 알고리즘이 사용된 횟수ProfileEvent_ParallelReplicasQueryCount(UInt64) — 쿼리 실행 중 병렬 레플리카를 사용해 실행된 (하위)쿼리 수ProfileEvent_DistributedConnectionReconnectCount(UInt64) — distributed query execution 중 다른 서버에 재연결한 횟수입니다. 연결 풀에서 오래된 연결을 가져온 경우 발생할 수 있습니다ProfileEvent_DistributedConnectionConnectCount(UInt64) — distributed query execution 중 다른 서버에 연결한 횟수입니다. 풀의 기존 연결을 사용하는 대신 새 연결을 설정할 때 발생합니다.ProfileEvent_RefreshableViewRefreshSuccess(UInt64) — 갱신 가능 구체화 뷰가 갱신된 횟수ProfileEvent_RefreshableViewRefreshFailed(UInt64) — 갱신 가능 구체화 뷰의 갱신이 실패한 횟수ProfileEvent_RefreshableViewSyncReplicaSuccess(UInt64) — 갱신 가능 구체화 뷰에 대한 SELECT 수행 시 암시적 SYNC REPLICA가 수행된 횟수ProfileEvent_RefreshableViewSyncReplicaRetry(UInt64) — 갱신 가능 구체화 뷰에 대한 SELECT 수행 시 실패 후 암시적 SYNC REPLICA를 재시도한 횟수ProfileEvent_RefreshableViewLockTableRetry(UInt64) — 이전 테이블이 삭제되어 갱신 가능 구체화 뷰에 대한 SELECT 수행 시 새 테이블로 전환해야 했던 횟수ProfileEvent_AsyncLoggingConsoleTotalMessages(UInt64) — 콘솔 로그용 비동기 큐로 전송된 메시지 수(수락되었거나 삭제된 것 포함)ProfileEvent_AsyncLoggingFileLogTotalMessages(UInt64) — 파일 로그용 비동기 큐로 전송된 메시지 수(수락되었거나 삭제된 것 포함)ProfileEvent_AsyncLoggingErrorFileLogTotalMessages(UInt64) — 오류 파일 로그용 비동기 큐로 전송된 메시지 수(수락되었거나 삭제된 것 포함)ProfileEvent_AsyncLoggingSyslogTotalMessages(UInt64) — syslog용 비동기 큐로 전송된 메시지 수(수락되었거나 삭제된 것 포함)ProfileEvent_AsyncLoggingTextLogTotalMessages(UInt64) — text_log용 비동기 큐로 전송된 메시지 수(수락되었거나 삭제된 것 포함)ProfileEvent_AsyncLoggingConsoleDroppedMessages(UInt64) — 비동기 로그 큐가 가득 차 콘솔 로그에서 삭제된 메시지 수ProfileEvent_AsyncLoggingFileLogDroppedMessages(UInt64) — 비동기 로그 큐가 가득 차 파일 로그에서 삭제된 메시지 수ProfileEvent_AsyncLoggingErrorFileLogDroppedMessages(UInt64) — 비동기 로그 큐가 가득 차 오류 파일 로그에서 삭제된 메시지 수ProfileEvent_AsyncLoggingSyslogDroppedMessages(UInt64) — 비동기 로그 큐가 가득 차 syslog에서 삭제된 메시지 수ProfileEvent_AsyncLoggingTextLogDroppedMessages(UInt64) — 비동기 로그 큐가 가득 차 text_log에서 삭제된 메시지 수ProfileEvent_JemallocFailedAllocationSampleTracking(UInt64) — jemalloc allocation sample 추적이 실패한 총 횟수ProfileEvent_JemallocFailedDeallocationSampleTracking(UInt64) — jemalloc deallocation sample 추적이 실패한 총 횟수ProfileEvent_LoadedStatisticsMicroseconds(UInt64) — 파트에서 통계를 로드하는 데 걸린 시간ProfileEvent_RuntimeDataflowStatisticsInputBytes(UInt64) — 쿼리가 병렬 레플리카로 실행될 경우 레플리카가 읽게 될 바이트 수에 대해 수집된 통계ProfileEvent_RuntimeDataflowStatisticsOutputBytes(UInt64) — 쿼리가 병렬 레플리카로 실행될 경우 레플리카가 initiator로 전송하게 될 바이트 수에 대해 수집된 통계ProfileEvent_S3CachedCredentialsProvidersReused(UInt64) — cache에서 재사용된 자격 증명 provider의 총 수ProfileEvent_S3CachedCredentialsProvidersAdded(UInt64) — cache에 새로 추가된 자격 증명 provider의 총 수ProfileEvent_RuntimeFiltersCreated(UInt64) — 쿼리 내에서 생성된 고유한 JOIN Runtime Filters 수ProfileEvent_RuntimeFilterBlocksProcessed(UInt64) — JOIN Runtime Filters가 처리한 블록 수ProfileEvent_RuntimeFilterBlocksSkipped(UInt64) — 필터링 비율이 낮아 필터가 동적으로 비활성화되면서 JOIN Runtime Filters가 처리하지 않고 건너뛴 블록 수ProfileEvent_RuntimeFilterRowsChecked(UInt64) — JOIN Runtime Filters에서 검사한 행 수ProfileEvent_RuntimeFilterRowsPassed(UInt64) — JOIN Runtime Filters를 통과한 행 수(즉, 필터링되지 않은 행 수)ProfileEvent_RuntimeFilterRowsSkipped(UInt64) — JOIN Runtime Filters에 의해 건너뛴 블록 내 행 수ProfileEvent_JoinBuildPostProcessingMicroseconds(UInt64) — 오른쪽 JOIN 측을 빌드한 뒤 후처리 단계에 소요된 시간ProfileEvent_AIInputTokens(UInt64) — 쿼리의 모든 AI 함수 호출에서 사용된 전체 프롬프트 토큰 수ProfileEvent_AIOutputTokens(UInt64) — 쿼리의 모든 AI 함수 호출에서 사용된 전체 completion 토큰 수ProfileEvent_AIAPICalls(UInt64) — AI 프로바이더에 전달된 HTTP 요청 수ProfileEvent_AIRowsProcessed(UInt64) — AI 결과를 받은 행 수ProfileEvent_AIRowsSkipped(UInt64) — QUOTA 또는 오류로 인해 기본값을 받은 행 수
예시
관련 항목
- query_metric_log 설정 — 설정을 활성화하거나 비활성화합니다.
- query_metric_log_interval
- system.asynchronous_metrics — 주기적으로 계산되는 메트릭을 포함합니다.
- system.events — 발생한 여러 이벤트를 포함합니다.
- system.metrics — 즉시 계산되는 메트릭을 포함합니다.
- 모니터링 — ClickHouse 모니터링의 기본 개념을 설명합니다.