signoz fix
This commit is contained in:
parent
c3a20a1107
commit
b163fbdd0f
3 changed files with 9 additions and 7 deletions
|
|
@ -17,7 +17,6 @@
|
||||||
<max_connections>4096</max_connections>
|
<max_connections>4096</max_connections>
|
||||||
<keep_alive_timeout>3</keep_alive_timeout>
|
<keep_alive_timeout>3</keep_alive_timeout>
|
||||||
<max_concurrent_queries>100</max_concurrent_queries>
|
<max_concurrent_queries>100</max_concurrent_queries>
|
||||||
<allow_experimental_parameterized_queries>1</allow_experimental_parameterized_queries>
|
|
||||||
<max_server_memory_usage>0</max_server_memory_usage>
|
<max_server_memory_usage>0</max_server_memory_usage>
|
||||||
<max_thread_pool_size>10000</max_thread_pool_size>
|
<max_thread_pool_size>10000</max_thread_pool_size>
|
||||||
<max_server_memory_usage_to_ram_ratio>0.9</max_server_memory_usage_to_ram_ratio>
|
<max_server_memory_usage_to_ram_ratio>0.9</max_server_memory_usage_to_ram_ratio>
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,7 @@
|
||||||
<default>
|
<default>
|
||||||
<max_memory_usage>10000000000</max_memory_usage>
|
<max_memory_usage>10000000000</max_memory_usage>
|
||||||
<load_balancing>random</load_balancing>
|
<load_balancing>random</load_balancing>
|
||||||
|
<allow_experimental_parameterized_queries>1</allow_experimental_parameterized_queries>
|
||||||
</default>
|
</default>
|
||||||
<readonly><readonly>1</readonly></readonly>
|
<readonly><readonly>1</readonly></readonly>
|
||||||
</profiles>
|
</profiles>
|
||||||
|
|
|
||||||
|
|
@ -50,9 +50,9 @@ services:
|
||||||
# Hardcode linux/amd64 for Unraid x86_64 (uname may be unavailable in slim image)
|
# Hardcode linux/amd64 for Unraid x86_64 (uname may be unavailable in slim image)
|
||||||
node_os="linux"
|
node_os="linux"
|
||||||
node_arch="amd64"
|
node_arch="amd64"
|
||||||
echo "Fetching histogram-binary for ${node_os}/${node_arch}"
|
echo "Fetching histogram-binary for $${node_os}/$${node_arch}"
|
||||||
cd /tmp
|
cd /tmp
|
||||||
wget -O histogram-quantile.tar.gz "https://github.com/SigNoz/signoz/releases/download/histogram-quantile%2F${version}/histogram-quantile_${node_os}_${node_arch}.tar.gz" || true
|
wget -O histogram-quantile.tar.gz "https://github.com/SigNoz/signoz/releases/download/histogram-quantile%2F$${version}/histogram-quantile_$${node_os}_$${node_arch}.tar.gz" || true
|
||||||
tar -xvzf histogram-quantile.tar.gz 2>/dev/null || true
|
tar -xvzf histogram-quantile.tar.gz 2>/dev/null || true
|
||||||
mv histogram-quantile /var/lib/clickhouse/user_scripts/histogramQuantile 2>/dev/null || true
|
mv histogram-quantile /var/lib/clickhouse/user_scripts/histogramQuantile 2>/dev/null || true
|
||||||
echo "Done (non-critical if download failed — migrator will handle it)."
|
echo "Done (non-critical if download failed — migrator will handle it)."
|
||||||
|
|
@ -153,8 +153,6 @@ services:
|
||||||
pipeline:
|
pipeline:
|
||||||
aliases:
|
aliases:
|
||||||
- signoz
|
- signoz
|
||||||
- otel
|
|
||||||
- lgtm
|
|
||||||
# swag:
|
# swag:
|
||||||
# aliases:
|
# aliases:
|
||||||
# - signoz
|
# - signoz
|
||||||
|
|
@ -196,8 +194,12 @@ services:
|
||||||
max-size: 50m
|
max-size: 50m
|
||||||
max-file: "3"
|
max-file: "3"
|
||||||
networks:
|
networks:
|
||||||
- signoz
|
signoz: {}
|
||||||
- pipeline
|
pipeline:
|
||||||
|
aliases:
|
||||||
|
- signoz-otel-collector
|
||||||
|
- otel
|
||||||
|
- lgtm
|
||||||
|
|
||||||
# ===========================================================================
|
# ===========================================================================
|
||||||
# Telemetry Store Migrator — runs ClickHouse migrations
|
# Telemetry Store Migrator — runs ClickHouse migrations
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue