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

> 이 테이블에는 ClickHouse 서버의 경고 메시지가 포함되어 있습니다.

# system.warnings

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

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

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

이 테이블은 ClickHouse 서버에 대한 경고를 표시합니다.
같은 유형의 경고는 하나로 합쳐집니다.
예를 들어 attached 상태인 데이터베이스 수 N이 구성 가능한 임계값 T를 초과하면, N개의 개별 항목 대신 현재 값 N이 포함된 단일 항목이 표시됩니다.
현재 값이 임계값 아래로 내려가면 해당 항목은 테이블에서 제거됩니다.

이 테이블은 다음 설정으로 구성할 수 있습니다.

* [max\_table\_num\_to\_warn](/ko/reference/settings/server-settings/settings#max_table_num_to_warn)
* [max\_database\_num\_to\_warn](/ko/reference/settings/server-settings/settings#max_database_num_to_warn)
* [max\_dictionary\_num\_to\_warn](/ko/reference/settings/server-settings/settings#max_dictionary_num_to_warn)
* [max\_view\_num\_to\_warn](/ko/reference/settings/server-settings/settings#max_view_num_to_warn)
* [max\_part\_num\_to\_warn](/ko/reference/settings/server-settings/settings#max_part_num_to_warn)
* [max\_pending\_mutations\_to\_warn](/ko/reference/settings/server-settings/settings#max_pending_mutations_to_warn)
* [max\_pending\_mutations\_execution\_time\_to\_warn](/ko/reference/settings/server-settings/settings#max_pending_mutations_execution_time_to_warn)
* [max\_named\_collection\_num\_to\_warn](/ko/reference/settings/server-settings/settings#max_named_collection_num_to_warn)
* [resource\_overload\_warnings](/ko/concepts/features/configuration/settings/server-overload#resource-overload-warnings)

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

* `message` ([String](/ko/reference/data-types/string)) — 경고 메시지입니다.
* `message_format_string` ([LowCardinality(String)](/ko/reference/data-types/string)) — 메시지 서식을 지정하는 데 사용되는 포맷 문자열입니다.

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

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

```text title="Response" theme={null}
Row 1:
──────
message:               The number of active parts is more than 10.
message_format_string: The number of active parts is more than {}.

Row 2:
──────
message:               The number of attached databases is more than 2.
message_format_string: The number of attached databases is more than {}.
```
