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

# dictionary_* セッション設定

> dictionary_* グループに分類される 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/ja/reference/system-tables/settings) で確認でき、[ソースコード](https://github.com/ClickHouse/ClickHouse/blob/master/src/Core/Settings.cpp) から自動生成されています。

<div id="dictionary_lazy_load">
  ## dictionary\_lazy\_load
</div>

<SettingsInfoBlock type="BoolAuto" default_value="auto" />

<VersionHistory rows={[{"id": "row-1","items": [{"label": "26.7"},{"label": "auto"},{"label": "個別の Dictionary に対して、server setting `dictionaries_lazy_load` を上書きする新しい設定。"}]}]} />

`CREATE DICTIONARY` の `SETTINGS` clause で指定した場合の Dictionary の読み込みを制御します。`1` は初回使用時まで読み込みを遅延し、`0` は作成時に Dictionary を読み込み、`'auto'` は server setting `dictionaries_lazy_load` に従います。session または クエリ レベルで設定しても効果はありません。

<div id="dictionary_use_async_executor">
  ## dictionary\_use\_async\_executor
</div>

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

Dictionary ソースの読み取り用パイプラインを複数スレッドで実行します。ローカルのCLICKHOUSEソースを持つ Dictionary でのみサポートされます。

<div id="dictionary_validate_primary_key_type">
  ## dictionary\_validate\_primary\_key\_type
</div>

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

<VersionHistory rows={[{"id": "row-1","items": [{"label": "24.7"},{"label": "0"},{"label": "Dictionary の主キーの型を検証します。デフォルトでは、simple layout の id 型は暗黙的に UInt64 に変換されます。"}]}]} />

Dictionary の主キーの型を検証します。デフォルトでは、simple layout の id 型は暗黙的に UInt64 に変換されます。
