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

# dead_blobs_* MergeTree 테이블 설정

> dead_blobs_* 생성 그룹에 속한 ClickHouse MergeTree 테이블 설정입니다.

export const VersionHistory = ({rows = []}) => {
  if (rows.length === 0) {
    return null;
  }
  const headers = ["버전", "기본값", "설명"];
  const border = "1px solid rgba(128, 128, 128, 0.3)";
  const cell = {
    border,
    padding: "0.25rem 0.5rem",
    textAlign: "start",
    verticalAlign: "top"
  };
  return <details className="not-prose" style={{
    border,
    borderRadius: "0.5rem",
    margin: "0.5rem 0",
    padding: "0.5rem 0.75rem",
    fontSize: "0.8125rem",
    lineHeight: "1.125rem"
  }}>
      <summary style={{
    cursor: "pointer",
    fontWeight: 600,
    opacity: 0.72
  }}>
        버전 이력
      </summary>
      <table style={{
    borderCollapse: "collapse",
    width: "100%",
    margin: "0.5rem 0 0"
  }}>
        <thead>
          <tr>
            {headers.map(header => <th key={header} style={{
    ...cell,
    fontWeight: 600,
    opacity: 0.72
  }}>
                {header}
              </th>)}
          </tr>
        </thead>
        <tbody>
          {rows.map((row, row_index) => <tr key={row.id ?? row_index}>
              {(row.items ?? []).map((item, item_index) => <td key={item_index} style={{
    ...cell,
    overflowWrap: "anywhere"
  }}>
                  {item?.label}
                </td>)}
            </tr>)}
        </tbody>
      </table>
    </details>;
};

export const SettingsInfoBlock = ({type, default_value, changeable_without_restart}) => {
  return <div className="not-prose" style={{
    display: "flex",
    flexWrap: "wrap",
    alignItems: "baseline",
    columnGap: "0.5rem",
    rowGap: "0.125rem",
    margin: "0.375rem 0",
    fontSize: "0.8125rem",
    lineHeight: "1.125rem"
  }}>
      <div style={{
    fontWeight: 600,
    opacity: 0.72
  }}>유형</div>
      <div style={{
    overflowWrap: "anywhere"
  }}>{type}</div>
      <div style={{
    fontWeight: 600,
    opacity: 0.72,
    marginInlineStart: "0.5rem"
  }}>기본값</div>
      <div style={{
    overflowWrap: "anywhere"
  }}>{default_value}</div>
      {changeable_without_restart && <div style={{
    fontWeight: 600,
    opacity: 0.72,
    marginInlineStart: "0.5rem"
  }}>
          재시작 없이 변경 가능
        </div>}
      {changeable_without_restart && <div style={{
    overflowWrap: "anywhere"
  }}>
          {changeable_without_restart}
        </div>}
    </div>;
};

이 설정은 [system.merge\_tree\_settings](/ko/reference/system-tables/merge_tree_settings)에서 확인할 수 있으며, ClickHouse 소스에서 자동으로 생성됩니다.

<div id="dead_blobs_to_delay_insert">
  ## dead\_blobs\_to\_delay\_insert
</div>

<SettingsInfoBlock type="UInt64" default_value="100000" />

테이블 디스크의 dead blobs 큐에서 삭제 대기 중인 blob 수가
`dead_blobs_to_delay_insert` 값을 초과하면 `INSERT`가 인위적으로 지연됩니다(`max_delay_to_insert`까지).

dead blobs 큐는 디스크에 속하며 해당 디스크의 모든 테이블이 이를 공유합니다(이미
삭제된 테이블의 blob 포함). 따라서 단일 테이블이 아니라 디스크 전체를 기준으로 임계값을 설정하십시오.

<Tip>
  서버가 blob을 충분히 빠르게 정리하지 못할 때 유용합니다.
</Tip>

가능한 값:

* 모든 양의 정수
* 0 — 비활성화됨

<div id="dead_blobs_to_throw_insert">
  ## dead\_blobs\_to\_throw\_insert
</div>

<SettingsInfoBlock type="UInt64" default_value="1000000" />

테이블 디스크의 dead blobs 큐에서 삭제 대기 중인 blob 수가
`dead_blobs_to_throw_insert` 값보다 많으면 `INSERT`가 다음 오류와 함께 중단됩니다.

> "테이블 디스크의 큐에 dead blob이 너무 많습니다 (N). Blob 정리 작업이
> 삽입보다 훨씬 느리게 처리되고 있습니다"

dead blobs 큐는 디스크에 속하며, 해당 디스크의 모든 테이블이 이를 공유합니다(이미
삭제된 테이블의 blob 포함). 따라서 임계값은 개별 테이블이 아니라 디스크 전체 기준으로 설정하십시오.

가능한 값:

* 모든 양의 정수.
* 0 — 비활성화됩니다.
