> ## 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.

> S3 또는 Azure Blob Storage와 같은 원격 디스크에 저장된 데이터 파일에 대한 정보를 담고 있는 시스템 테이블입니다.

# system.remote_data_paths

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

원격 디스크(예: S3, Azure Blob Storage)에 저장된 데이터 파일 정보와 로컬 메타데이터 경로와 원격 blob 경로 간의 매핑 정보를 포함합니다.

각 행은 데이터 파일에 연결된 원격 blob 객체 1개를 나타냅니다.

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

* `disk_name` ([String](/ko/reference/data-types)) — 디스크 이름.
* `path` ([String](/ko/reference/data-types)) — 디스크 경로.
* `cache_base_path` ([String](/ko/reference/data-types)) — 캐시 파일의 기본 디렉터리.
* `local_path` ([String](/ko/reference/data-types)) — ClickHouse 파일의 경로로, 메타데이터 경로로도 사용됩니다.
* `remote_path` ([String](/ko/reference/data-types)) — ClickHouse 파일에 연결된 객체 스토리지의 blob 경로.
* `size` ([UInt64](/ko/reference/data-types)) — 파일 크기(압축됨).
* `common_prefix_for_blobs` ([String](/ko/reference/data-types)) — 객체 스토리지의 blob에 대한 공통 접두사.
* `cache_paths` ([Array(String)](/ko/reference/data-types)) — 해당 blob의 캐시 파일.

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

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

```text theme={null}
Row 1:
──────
disk_name:              s3
path:                   /var/lib/clickhouse/disks/s3/
cache_base_path:        /var/lib/clickhouse/disks/s3_cache/
local_path:             store/123/1234abcd-1234-1234-1234-1234abcd1234/all_0_0_0/data.bin
remote_path:            abc123/all_0_0_0/data.bin
size:                   1048576
common_prefix_for_blobs:
cache_paths:            ['/var/lib/clickhouse/disks/s3_cache/a1/b2/c3d4e5f6']
```

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

* [데이터 저장에 외부 스토리지 사용하기](/ko/reference/engines/table-engines/mergetree-family/mergetree#table_engine-mergetree-s3)
* [외부 스토리지 구성하기](/ko/concepts/features/configuration/server-config/storing-data#configuring-external-storage)
* [system.disks](/ko/reference/system-tables/disks)
