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

# send_* セッション設定

> send_* グループに分類される 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="send_profile_events">
  ## send\_profile\_events
</div>

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

<VersionHistory rows={[{"id": "row-1","items": [{"label": "25.11"},{"label": "1"},{"label": "新しい設定。ProfileEvents をクライアントに送信するかどうかを指定します。"}]}]} />

[ProfileEvents](/docs/ja/resources/develop-contribute/native-protocol/server#profile-events) パケットをクライアントに送信するかどうかを有効または無効にします。

ProfileEvents を必要としないクライアントのネットワークトラフィックを削減するために、この設定を無効にできます。

設定可能な値:

* 0 — 無効。
* 1 — 有効。

<div id="send_progress_in_http_headers">
  ## send\_progress\_in\_http\_headers
</div>

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

`clickhouse-server` のレスポンスで、`X-ClickHouse-Progress` HTTP レスポンスヘッダーの有効／無効を切り替えます。

詳細については、[HTTP interface の説明](/docs/ja/concepts/features/interfaces/http)を参照してください。

設定可能な値:

* 0 — 無効。
* 1 — 有効。

<div id="send_table_structure_on_insert_with_inline_data">
  ## send\_table\_structure\_on\_insert\_with\_inline\_data
</div>

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

<VersionHistory rows={[{"id": "row-1","items": [{"label": "26.5"},{"label": "1"},{"label": "インラインデータを含む INSERT クエリに対して、サーバーがテーブル構造を送信するかどうかを制御する新しい設定。"}]}]} />

無効にすると、INSERT クエリにインラインデータが含まれている場合、サーバーはネイティブプロトコル経由でテーブル構造とカラムのデフォルト値をクライアントに返送しません。代わりに、サーバー自身がインラインデータを解析します。これにより、ネイティブプロトコル経由で多数の小さな insert を行う際のパフォーマンスが向上する場合があります。

<div id="send_timeout">
  ## send\_timeout
</div>

<SettingsInfoBlock type="Seconds" default_value="300" />

ネットワークへのデータ送信のタイムアウト時間です (秒) 。クライアントがデータを送信する必要があるにもかかわらず、この時間内に1バイトも送信できない場合は、例外がスローされます。この設定をクライアント側で指定すると、ソケットの 'receive\_timeout' もサーバー側の対応する connection endpoint に設定されます。
