> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-mintlify-8a08bda2.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> MergeTree 엔진 계열 테이블에서 현재 진행 중인 머지와 데이터 파트 뮤테이션 정보를 포함하는 시스템 테이블.

# system.merges

<Info>
  **ClickHouse Cloud에서 쿼리하기**

  이 시스템 테이블의 데이터는 ClickHouse Cloud의 각 노드에 로컬로 저장됩니다. 따라서 전체 데이터를 모두 확인하려면 `clusterAllReplicas` 함수를 사용해야 합니다. 자세한 내용은 [여기](/ko/reference/system-tables/overview#system-tables-in-clickhouse-cloud)를 참조하십시오.
</Info>

<div id="description">
  ## 설명
</div>

현재 진행 중인 MergeTree 엔진 계열 테이블의 머지 및 파트 뮤테이션 정보를 포함합니다.

<div id="columns">
  ## 컬럼
</div>

* `database` ([String](/ko/reference/data-types)) — 테이블이 속한 데이터베이스의 이름입니다.
* `table` ([String](/ko/reference/data-types)) — 테이블 이름입니다.
* `elapsed` ([Float64](/ko/reference/data-types)) — 머지가 시작된 후 경과한 시간(초)입니다.
* `progress` ([Float64](/ko/reference/data-types)) — 0부터 1까지의 완료 진행률입니다.
* `num_parts` ([UInt64](/ko/reference/data-types)) — 머지할 파트 수입니다.
* `source_part_names` ([Array(String)](/ko/reference/data-types)) — 원본 파트 이름 목록입니다.
* `result_part_name` ([String](/ko/reference/data-types)) — 머지 결과로 생성될 파트의 이름입니다.
* `source_part_paths` ([Array(String)](/ko/reference/data-types)) — 각 원본 파트의 경로 목록입니다.
* `result_part_path` ([String](/ko/reference/data-types)) — 머지 결과로 생성될 파트의 경로입니다.
* `partition_id` ([String](/ko/reference/data-types)) — 머지가 수행되는 파티션의 식별자입니다.
* `partition` ([String](/ko/reference/data-types)) — 파티션 이름입니다.
* `is_mutation` ([UInt8](/ko/reference/data-types)) — 이 프로세스가 파트 mutation이면 1입니다.
* `total_size_bytes_compressed` ([UInt64](/ko/reference/data-types)) — 병합된 청크의 압축 데이터 총크기입니다.
* `total_size_bytes_uncompressed` ([UInt64](/ko/reference/data-types)) — 병합된 청크의 비압축 데이터 총크기입니다.
* `total_size_marks` ([UInt64](/ko/reference/data-types)) — 병합된 파트의 마크 총개수입니다.
* `bytes_read_uncompressed` ([UInt64](/ko/reference/data-types)) — 읽은 비압축 바이트 수입니다.
* `rows_read` ([UInt64](/ko/reference/data-types)) — 읽은 행 수입니다.
* `bytes_written_uncompressed` ([UInt64](/ko/reference/data-types)) — 기록한 비압축 바이트 수입니다.
* `rows_written` ([UInt64](/ko/reference/data-types)) — 기록한 행 수입니다.
* `columns_written` ([UInt64](/ko/reference/data-types)) — 기록한 컬럼 수입니다(수직 병합 알고리즘의 경우).
* `memory_usage` ([UInt64](/ko/reference/data-types)) — 머지 프로세스의 메모리 사용량입니다.
* `thread_id` ([UInt64](/ko/reference/data-types)) — 머지 프로세스의 스레드 ID입니다.
* `merge_type` ([String](/ko/reference/data-types)) — 현재 머지의 유형입니다. mutation이면 비어 있습니다.
* `merge_algorithm` ([String](/ko/reference/data-types)) — 현재 머지에 사용되는 알고리즘입니다. mutation이면 비어 있습니다.
