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

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

* `query` ([String](/ko/reference/data-types)) — 쿼리 텍스트.
* `database` ([String](/ko/reference/data-types)) — 데이터베이스 이름.
* `table` ([String](/ko/reference/data-types)) — 테이블 이름.
* `format` ([String](/ko/reference/data-types)) — 포맷 이름.
* `first_update` ([DateTime64(6)](/ko/reference/data-types)) — 마이크로초 해상도의 최초 삽입 시각.
* `total_bytes` ([UInt64](/ko/reference/data-types)) — 큐에서 대기 중인 총 바이트 수.
* `entries.query_id` ([Array(String)](/ko/reference/data-types)) — 큐에서 대기 중인 삽입 작업의 쿼리 id 배열.
* `entries.bytes` ([Array(UInt64)](/ko/reference/data-types)) — 큐에서 대기 중인 각 삽입 쿼리의 바이트 배열.

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

```sql title="Query" theme={null}
SELECT * FROM system.asynchronous_inserts LIMIT 1 \G;
```

```text title="Response" theme={null}
Row 1:
──────
query:            INSERT INTO public.data_guess (user_id, datasource_id, timestamp, path, type, num, str) FORMAT CSV
database:         public
table:            data_guess
format:           CSV
first_update:     2023-06-08 10:08:54.199606
total_bytes:      133223
entries.query_id: ['b46cd4c4-0269-4d0b-99f5-d27668c6102e']
entries.bytes:    [133223]
```

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

* [system.query\_log](/ko/reference/system-tables/query_log) — 쿼리 실행에 대한 일반적인 정보를 담고 있는 `query_log` 시스템 테이블에 대한 설명입니다.
* [system.asynchronous\_insert\_log](/ko/reference/system-tables/asynchronous_insert_log) — 이 테이블에는 수행된 비동기 삽입(async inserts)에 대한 정보가 포함됩니다.
