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

# jemalloc_profile_* 세션 설정

> jemalloc_profile_* 자동 생성 그룹에 속하는 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="jemalloc_profile_text_collapsed_use_count">
  ## jemalloc\_profile\_text\_collapsed\_use\_count
</div>

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

<VersionHistory rows={[{"id": "row-1","items": [{"label": "26.2"},{"label": "0"},{"label": "collapsed jemalloc 힙 프로필 포맷에서 바이트 대신 할당 수를 기준으로 집계하는 새로운 설정"}]}]} />

jemalloc 힙 프로필에 `collapsed` 출력 형식을 사용할 때 바이트 대신 할당 수를 기준으로 집계합니다. false(기본값)인 경우 각 스택은 live bytes를 기준으로 가중치가 부여되고, true인 경우에는 live allocation count를 기준으로 가중치가 부여됩니다.

<div id="jemalloc_profile_text_output_format">
  ## jemalloc\_profile\_text\_output\_format
</div>

<SettingsInfoBlock type="JemallocProfileFormat" default_value="collapsed" />

<VersionHistory rows={[{"id": "row-1","items": [{"label": "26.2"},{"label": "collapsed"},{"label": "system.jemalloc_profile_text 테이블의 출력 형식을 제어하는 새로운 설정입니다. 가능한 값: 'raw', 'symbolized', 'collapsed'"}]}]} />

system.jemalloc\_profile\_text 테이블의 jemalloc 힙 프로필 출력 형식입니다. 값은 'raw'(원시 프로파일), 'symbolized'(심볼이 포함된 jeprof 형식), 또는 'collapsed'(플레임 그래프 형식)입니다.

<div id="jemalloc_profile_text_symbolize_with_inline">
  ## jemalloc\_profile\_text\_symbolize\_with\_inline
</div>

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

<VersionHistory rows={[{"id": "row-1","items": [{"label": "26.2"},{"label": "1"},{"label": "jemalloc 힙 프로필을 심볼화할 때 인라인 프레임을 포함할지 제어하는 새로운 설정입니다. 활성화하면 심볼화 속도가 느려지는 대신 인라인 프레임이 포함되며, 비활성화하면 더 빠른 출력을 위해 인라인 프레임을 건너뜁니다"}]}]} />

jemalloc 힙 프로필을 심볼화할 때 인라인 프레임을 포함할지 여부를 지정합니다. 활성화하면 인라인 프레임이 포함되어 심볼화 과정이 크게 느려질 수 있으며, 비활성화하면 인라인 프레임을 건너뜁니다. 'symbolized' 및 'collapsed' 출력 형식에만 영향을 줍니다.
