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

# enable_filesystem_* 세션 설정

> enable_filesystem_*로 생성된 그룹에 속한 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="enable_filesystem_cache">
  ## enable\_filesystem\_cache
</div>

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

원격 파일 시스템에 캐시를 사용합니다. 이 설정은 디스크의 캐시를 켜거나 끄는 기능은 아니며(디스크 구성에서 설정해야 함), 필요할 경우 일부 쿼리에서 캐시를 우회할 수 있도록 합니다.

<div id="enable_filesystem_cache_log">
  ## enable\_filesystem\_cache\_log
</div>

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

각 쿼리의 파일 시스템 캐싱 로그를 기록할 수 있습니다

<div id="enable_filesystem_cache_on_write_operations">
  ## enable\_filesystem\_cache\_on\_write\_operations
</div>

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

`write-through` 캐시를 활성화하거나 비활성화합니다. `false`로 설정하면 쓰기 작업에서 `write-through` 캐시가 비활성화됩니다. `true`로 설정하면 서버 구성의 캐시 디스크 구성 섹션에서 `cache_on_write_operations`가 활성화되어 있는 경우에만 `write-through` 캐시가 활성화됩니다.
자세한 내용은 ["로컬 캐시 사용"](/docs/ko/concepts/features/configuration/server-config/storing-data#using-local-cache)을 참조하십시오.

Cloud 기본값: `1`.

<div id="enable_filesystem_read_prefetches_log">
  ## enable\_filesystem\_read\_prefetches\_log
</div>

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

쿼리 중 system.filesystem prefetch\_log에 로그를 기록합니다. 테스트 또는 디버깅용으로만 사용해야 하며, 기본적으로 활성화하는 것은 권장되지 않습니다.
