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

> 현재 실행 중인 백그라운드 페치에 대한 정보를 포함하는 시스템 테이블입니다.

# system.replicated_fetches

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

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

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

현재 실행 중인 백그라운드 페치 정보를 제공합니다.

<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 사이의 값입니다.
* `result_part_name` ([String](/ko/reference/data-types)) — 현재 실행 중인 백그라운드 페치 표시의 결과로 생성될 파트의 이름입니다.
* `result_part_path` ([String](/ko/reference/data-types)) — 현재 실행 중인 백그라운드 페치 표시의 결과로 생성될 파트의 절대 경로입니다.
* `partition_id` ([String](/ko/reference/data-types)) — 파티션 ID입니다.
* `total_size_bytes_compressed` ([UInt64](/ko/reference/data-types)) — 결과 파트에 있는 압축된 데이터의 총 크기(바이트)입니다.
* `bytes_read_compressed` ([UInt64](/ko/reference/data-types)) — 결과 파트에서 읽은 압축 데이터의 바이트 수입니다.
* `source_replica_path` ([String](/ko/reference/data-types)) — 소스 레플리카의 절대 경로입니다.
* `source_replica_hostname` ([String](/ko/reference/data-types)) — 소스 레플리카의 호스트명입니다.
* `source_replica_port` ([UInt16](/ko/reference/data-types)) — 소스 레플리카의 포트 번호입니다.
* `interserver_scheme` ([String](/ko/reference/data-types)) — interserver 스킴 이름입니다.
* `URI` ([String](/ko/reference/data-types)) — Uniform Resource Identifier입니다.
* `to_detached` ([UInt8](/ko/reference/data-types)) — 현재 실행 중인 백그라운드 페치가 TO DETACHED 표현식을 사용해 수행되는지 여부를 나타내는 플래그입니다.
* `thread_id` ([UInt64](/ko/reference/data-types)) — 스레드 식별자입니다.

<div id="example">
  ## 예시
</div>

```sql theme={null}
SELECT * FROM system.replicated_fetches LIMIT 1 FORMAT Vertical;
```

```text theme={null}
Row 1:
──────
database:                    default
table:                       t
elapsed:                     7.243039876
progress:                    0.41832135995612835
result_part_name:            all_0_0_0
result_part_path:            /var/lib/clickhouse/store/700/70080a04-b2de-4adf-9fa5-9ea210e81766/all_0_0_0/
partition_id:                all
total_size_bytes_compressed: 1052783726
bytes_read_compressed:       440401920
source_replica_path:         /clickhouse/test/t/replicas/1
source_replica_hostname:     node1
source_replica_port:         9009
interserver_scheme:          http
URI:                         http://node1:9009/?endpoint=DataPartsExchange%3A%2Fclickhouse%2Ftest%2Ft%2Freplicas%2F1&part=all_0_0_0&client_protocol_version=4&compress=false
to_detached:                 0
thread_id:                   54
```

<div id="see-also">
  ## 관련 항목
</div>

* [ReplicatedMergeTree 테이블 관리](/ko/reference/statements/system#managing-replicatedmergetree-tables)
