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

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

세그먼트로 전송하기 위해 큐에 대기 중인 로컬 파일에 관한 정보를 포함합니다. 이러한 로컬 파일에는 비동기 모드에서 분산 테이블에 새 데이터를 삽입할 때 생성되는 새 파트가 들어 있습니다.

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

* `database` ([String](/ko/reference/data-types)) — 데이터베이스 이름입니다.
* `table` ([String](/ko/reference/data-types)) — 테이블 이름입니다.
* `data_path` ([String](/ko/reference/data-types)) — 로컬 파일이 있는 폴더의 경로입니다.
* `is_blocked` ([UInt8](/ko/reference/data-types)) — 로컬 파일의 서버 전송이 차단되었는지 여부를 나타내는 플래그입니다.
* `error_count` ([UInt64](/ko/reference/data-types)) — 오류 수입니다.
* `data_files` ([UInt64](/ko/reference/data-types)) — 폴더 내 로컬 파일 수입니다.
* `data_compressed_bytes` ([UInt64](/ko/reference/data-types)) — 로컬 파일에 있는 압축 데이터 크기(바이트)입니다.
* `broken_data_files` ([UInt64](/ko/reference/data-types)) — 오류로 인해 손상된 것으로 표시된 파일 수입니다.
* `broken_data_compressed_bytes` ([UInt64](/ko/reference/data-types)) — 손상된 파일에 있는 압축 데이터 크기(바이트)입니다.
* `last_exception` ([String](/ko/reference/data-types)) — 마지막으로 발생한 오류에 대한 텍스트 메시지입니다(있는 경우).
* `last_exception_time` ([DateTime](/ko/reference/data-types)) — 마지막 예외가 발생한 시각입니다.

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

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

```text theme={null}
Row 1:
──────
database:              default
table:                 dist
data_path:             ./store/268/268bc070-3aad-4b1a-9cf2-4987580161af/default@127%2E0%2E0%2E2:9000/
is_blocked:            1
error_count:           0
data_files:            1
data_compressed_bytes: 499
last_exception:
```

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

* [분산 테이블 엔진](/ko/reference/engines/table-engines/special/distributed)
