> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-mintlify-8a08bda2.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> `BACKUP` 및 `RESTORE` 작업 정보가 포함된 로그 항목을 담고 있는 시스템 테이블.

# system.backups

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

현재 상태와 기타 속성을 포함한 모든 `BACKUP` 또는 `RESTORE` 작업의 목록이 들어 있습니다. 이 테이블은 영구적으로 유지되지 않으며, 마지막 서버 재시작 이후에 실행된 작업만 표시합니다.

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

* `id` ([String](/ko/reference/data-types)) — 작업 ID입니다. `SETTINGS id=...`로 전달하거나 무작위로 생성된 UUID일 수 있습니다.
* `name` ([String](/ko/reference/data-types)) — 작업 이름입니다. `Disk('backups', 'my_backup')`와 같은 문자열입니다.
* `base_backup_name` ([String](/ko/reference/data-types)) — 기준 백업 작업 이름입니다. `Disk('backups', 'my_base_backup')`와 같은 문자열입니다.
* `query_id` ([String](/ko/reference/data-types)) — 백업을 시작한 쿼리의 쿼리 ID입니다.
* `status` ([Enum8('CREATING\_BACKUP' = 0, 'BACKUP\_CREATED' = 1, 'BACKUP\_FAILED' = 2, 'RESTORING' = 3, 'RESTORED' = 4, 'RESTORE\_FAILED' = 5, 'BACKUP\_CANCELLED' = 6, 'RESTORE\_CANCELLED' = 7)](/ko/reference/data-types)) — 백업 또는 복원 작업의 상태입니다.
* `error` ([String](/ko/reference/data-types)) — 오류 메시지입니다(있는 경우).
* `start_time` ([DateTime64(6)](/ko/reference/data-types)) — 작업이 시작된 시각입니다.
* `end_time` ([DateTime64(6)](/ko/reference/data-types)) — 작업이 완료된 시각입니다.
* `num_files` ([UInt64](/ko/reference/data-types)) — 백업에 저장된 파일 수입니다.
* `total_size` ([UInt64](/ko/reference/data-types)) — 백업에 저장된 파일의 총 크기입니다.
* `num_entries` ([UInt64](/ko/reference/data-types)) — 백업의 항목 수입니다. 즉, 백업이 폴더로 저장된 경우 폴더 내부의 파일 수입니다.
* `uncompressed_size` ([UInt64](/ko/reference/data-types)) — 백업의 압축되지 않은 크기입니다.
* `compressed_size` ([UInt64](/ko/reference/data-types)) — 백업의 압축된 크기입니다.
* `files_read` ([UInt64](/ko/reference/data-types)) — 이 백업에서 RESTORE 중 읽은 파일 수를 반환합니다.
* `bytes_read` ([UInt64](/ko/reference/data-types)) — 이 백업에서 RESTORE 중 읽은 파일의 총 크기를 반환합니다.
* `ProfileEvents` ([Map(LowCardinality(String), UInt64)](/ko/reference/data-types)) — 이 작업 중 수집된 모든 profile events입니다.
