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

# stream_like_* 세션 설정

> stream_like_* 생성 그룹에 속한 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="stream_like_engine_allow_direct_select">
  ## stream\_like\_engine\_allow\_direct\_select
</div>

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

<VersionHistory rows={[{"id": "row-1","items": [{"label": "21.12"},{"label": "0"},{"label": "기본적으로 Kafka/RabbitMQ/FileLog에 대한 직접 SELECT를 허용하지 않음"}]}]} />

Kafka, RabbitMQ, FileLog, Redis Streams, S3Queue, AzureQueue 및 NATS 엔진에 대해 직접 SELECT 쿼리를 허용합니다. attached 상태인 구체화된 뷰(Materialized View)가 있으면 이 설정이 활성화되어 있어도 SELECT 쿼리는 허용되지 않습니다.
attached 상태인 구체화된 뷰(Materialized View)가 없으면 이 설정을 활성화하여 데이터를 읽을 수 있습니다. 일반적으로 읽은 데이터는 큐에서 제거되므로 주의하십시오. 읽은 데이터가 제거되지 않도록 하려면 관련 엔진 설정을 올바르게 구성해야 합니다.

<div id="stream_like_engine_insert_queue">
  ## stream\_like\_engine\_insert\_queue
</div>

stream-like 엔진이 여러 큐에서 읽는 경우, 쓰기 시 데이터를 삽입할 큐 하나를 선택해야 합니다. Redis Streams와 NATS에서 사용됩니다.
