> ## Documentation Index
> Fetch the complete documentation index at: https://clickhouse.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# materialize_* 세션 설정

> materialize_* 자동 생성 그룹의 ClickHouse 세션 설정입니다.

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.settings](/docs/ko/reference/system-tables/settings)에서 확인할 수 있으며 [소스 코드](https://github.com/ClickHouse/ClickHouse/blob/master/src/Core/Settings.cpp)를 기반으로 자동 생성됩니다.

<div id="materialize_skip_indexes_on_insert">
  ## materialize\_skip\_indexes\_on\_insert
</div>

<SettingsInfoBlock type="Bool" default_value="1" />

<VersionHistory rows={[{"id": "row-1","items": [{"label": "24.6"},{"label": "1"},{"label": "삽입 시 스킵 인덱스 머티리얼라이즈를 비활성화할 수 있는 새로운 설정이 추가되었습니다"}]}]} />

INSERT 시 스킵 인덱스를 생성하고 저장할지 지정합니다. 비활성화하면 스킵 인덱스는 [머지 중](/docs/ko/reference/settings/merge-tree-settings#materialize_skip_indexes_on_merge) 또는 명시적인 [MATERIALIZE INDEX](/docs/ko/reference/statements/alter/skipping-index#materialize-index)를 통해서만 생성되고 저장됩니다.

관련 항목: [exclude\_materialize\_skip\_indexes\_on\_insert](/docs/ko/reference/settings/session-settings/other#exclude_materialize_skip_indexes_on_insert).

<div id="materialize_statistics_on_insert">
  ## materialize\_statistics\_on\_insert
</div>

<SettingsInfoBlock type="Bool" default_value="0" />

<VersionHistory rows={[{"id": "row-1","items": [{"label": "26.4"},{"label": "0"},{"label": "기본적으로 INSERT 시 통계를 생성하지 않으며, 대신 머지에 의존합니다"}]}, {"id": "row-2","items": [{"label": "24.6"},{"label": "1"},{"label": "INSERT 시 통계 머티리얼라이즈를 비활성화할 수 있는 새로운 설정이 추가되었습니다"}]}]} />

INSERT 시 통계를 생성하고 삽입할지 여부를 지정합니다. 비활성화하면 통계는 머지 중 또는 명시적으로 MATERIALIZE STATISTICS를 실행할 때 생성되어 저장됩니다

<div id="materialize_ttl_after_modify">
  ## materialize\_ttl\_after\_modify
</div>

<SettingsInfoBlock type="Bool" default_value="1" />

ALTER MODIFY TTL 쿼리 후 기존 데이터에 TTL을 적용합니다
