6535cf918b
* v4 helm chart * ignore packaged chart archives * chart publish prep * add helm chart release workflow * enable draft gh release * stateful services should be statefulsets * expose internal otel config * podAnnotations for all services * postgresql.extraArgs * postgresql -> postgres * add clickhouse vars as extraEnv examples * support external secrets * improve clickhouse config improve clickhouse config * disable internal otel config by default * allow nil internal config * fix gh release permission * fix validation step for ci * secrets.enabled * simplify secret keys * bump chart version * fix contents permission * remove redundant print steps * remove helm release heading * optimise clickhouse config * support wait-for-it.sh * fix ch overrides * add low-resource ch overrides to compose setup * supervisor bootstrap config * disable otel trace logging * retain shared volume * enable clickhouse for compose setup * disable trace logging * bump chart * add extraManifests * telemetry config * add repo namespace config * scope cluster role to namespace to support multiple installs * external s3 config * values tweaks * helm docs * bump chart * set contents read permission Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> * add object store root credentials warning * run init containers as uid 1000 * pass ch user creds with explicit flag * improve ingress anotation handling * remove duplicate colume claim block * trim htpasswd auth * lock curl images used for tests * add v4-beta package version warning * make schema and sslmode configurable * package tag info -> warning * improve secrets config example * update docs * bump version * bump webapp reqs to account for ch * make ch creds more easily configurable * publish ch http port * example point at latest beta chart * small docs tweaks --------- Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
20 lines
888 B
XML
20 lines
888 B
XML
<clickhouse>
|
|
<logger>
|
|
<!--
|
|
Possible levels: ["none", "fatal", "critical", "error", "warning", "notice", "information", "debug", "trace", "test"]
|
|
See: https://github.com/pocoproject/poco/blob/poco-1.9.4-release/Foundation/include/Poco/Logger.h#L105-L114
|
|
-->
|
|
<level>warning</level>
|
|
</logger>
|
|
<!-- Official recommendations for systems with <16GB RAM -->
|
|
<mark_cache_size>524288000</mark_cache_size> <!-- 500MB -->
|
|
<concurrent_threads_soft_limit_num>1</concurrent_threads_soft_limit_num>
|
|
<profiles>
|
|
<default>
|
|
<max_block_size>8192</max_block_size>
|
|
<max_download_threads>1</max_download_threads>
|
|
<input_format_parallel_parsing>0</input_format_parallel_parsing>
|
|
<output_format_parallel_formatting>0</output_format_parallel_formatting>
|
|
</default>
|
|
</profiles>
|
|
</clickhouse> |