> ## 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` 関数を使用する必要があります。詳細については、[こちら](/ja/reference/system-tables/overview#system-tables-in-clickhouse-cloud)を参照してください。
</Info>

<div id="description">
  ## 説明
</div>

現在実行中のバックグラウンドフェッチに関する情報が含まれています。

<div id="columns">
  ## カラム
</div>

* `database` ([String](/ja/reference/data-types)) — データベース名。
* `table` ([String](/ja/reference/data-types)) — テーブル名。
* `elapsed` ([Float64](/ja/reference/data-types)) — 現在実行中のバックグラウンドフェッチの表示が開始されてからの経過時間 (秒) 。
* `progress` ([Float64](/ja/reference/data-types)) — 完了した作業の割合 (0 ～ 1) 。
* `result_part_name` ([String](/ja/reference/data-types)) — 現在実行中のバックグラウンドフェッチの表示結果として生成されるパートの名前。
* `result_part_path` ([String](/ja/reference/data-types)) — 現在実行中のバックグラウンドフェッチの表示結果として生成されるパートへの絶対パス。
* `partition_id` ([String](/ja/reference/data-types)) — パーティション ID。
* `total_size_bytes_compressed` ([UInt64](/ja/reference/data-types)) — 結果パート内の圧縮データの合計サイズ (バイト単位) 。
* `bytes_read_compressed` ([UInt64](/ja/reference/data-types)) — 結果パートから読み取られた圧縮済みデータのバイト数。
* `source_replica_path` ([String](/ja/reference/data-types)) — ソースレプリカへの絶対パス。
* `source_replica_hostname` ([String](/ja/reference/data-types)) — ソースレプリカのホスト名。
* `source_replica_port` ([UInt16](/ja/reference/data-types)) — ソースレプリカのポート番号。
* `interserver_scheme` ([String](/ja/reference/data-types)) — インターサーバースキームの名前。
* `URI` ([String](/ja/reference/data-types)) — URI (Uniform Resource Identifier) 。
* `to_detached` ([UInt8](/ja/reference/data-types)) — 現在実行中のバックグラウンドフェッチが `TO DETACHED` 式を使用して実行されているかどうかを示すフラグです。
* `thread_id` ([UInt64](/ja/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 テーブルの管理](/ja/reference/statements/system#managing-replicatedmergetree-tables)
