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

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

* `hostname` ([LowCardinality(String)](/ko/reference/data-types/lowcardinality)) — 크래시가 발생한 호스트명입니다.
* `event_date` ([Date](/ko/reference/data-types/date)) — 크래시가 발생한 날짜입니다.
* `event_time` ([DateTime](/ko/reference/data-types/datetime)) — 크래시가 발생한 시각입니다.
* `timestamp_ns` ([UInt64](/ko/reference/data-types/int-uint)) — 나노초 단위의 이벤트 타임스탬프입니다.
* `signal` ([Int32](/ko/reference/data-types/int-uint)) — 시그널 번호입니다.
* `signal_code` ([Int32](/ko/reference/data-types/int-uint)) — 시그널 코드입니다. 시그널 원인에 대한 추가 정보를 제공합니다.
* `thread_id` ([UInt64](/ko/reference/data-types/int-uint)) — 스레드 ID입니다.
* `query_id` ([String](/ko/reference/data-types/string)) — 쿼리 ID입니다.
* `query` ([String](/ko/reference/data-types/string)) — 크래시가 발생했을 때 실행 중이던 쿼리 텍스트입니다.
* `trace` ([Array(UInt64)](/ko/reference/data-types/array)) — 크래시 시점의 스택 트레이스입니다. 각 요소는 ClickHouse 서버 프로세스 내부의 가상 메모리 주소입니다.
* `trace_full` ([Array(String)](/ko/reference/data-types/array)) — 크래시 시점의 스택 트레이스입니다. 각 요소에는 ClickHouse 서버 프로세스 내부에서 호출된 메서드가 들어 있습니다.
* `fault_address` ([Nullable(UInt64)](/ko/reference/data-types/nullable)) — 오류를 일으킨 메모리 주소입니다.
* `fault_access_type` ([String](/ko/reference/data-types/string)) — 오류를 일으킨 메모리 접근 유형입니다(예: 'read', 'write').
* `signal_description` ([String](/ko/reference/data-types/string)) — signal\_code를 기반으로 한 사람이 읽을 수 있는 설명입니다(예: 'Address not mapped to object').
* `current_exception_trace_full` ([Array(String)](/ko/reference/data-types/array)) — 심볼 정보가 포함된 현재 예외 스택 트레이스입니다(`std::terminate` 크래시에만 해당).
* `version` ([String](/ko/reference/data-types/string)) — ClickHouse 서버 버전입니다.
* `revision` ([UInt32](/ko/reference/data-types/int-uint)) — ClickHouse 서버 리비전입니다.
* `build_id` ([String](/ko/reference/data-types/string)) — 컴파일러가 생성한 Build ID입니다.
* `git_hash` ([String](/ko/reference/data-types/string)) — ClickHouse 소스 코드의 Git 커밋 해시입니다.
* `architecture` ([String](/ko/reference/data-types/string)) — CPU 아키텍처입니다(예: x86\_64, aarch64).

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

```sql title="Query" theme={null}
SELECT * FROM system.crash_log ORDER BY event_time DESC LIMIT 1;
```

```text title="Response" theme={null}
Row 1:
──────
hostname:     clickhouse.eu-central1.internal
event_date:   2020-10-14
event_time:   2020-10-14 15:47:40
timestamp_ns: 1602679660271312710
signal:       11
thread_id:    23624
query_id:     428aab7c-8f5c-44e9-9607-d16b44467e69
trace:        [188531193,...]
trace_full:   ['3. DB::(anonymous namespace)::FunctionFormatReadableTimeDelta::executeImpl(std::__1::vector<DB::ColumnWithTypeAndName, std::__1::allocator<DB::ColumnWithTypeAndName> >&, std::__1::vector<unsigned long, std::__1::allocator<unsigned long> > const&, unsigned long, unsigned long) const @ 0xb3cc1f9 in /home/username/work/ClickHouse/build/programs/clickhouse',...]
version:      ClickHouse 20.11.1.1
revision:     54442
build_id:
```

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

* [trace\_log](/ko/reference/system-tables/trace_log) 시스템 테이블
