mirror of
https://github.com/ajvpot/meshexplorer.git
synced 2026-07-06 01:30:58 +02:00
a0ab900da3
Fixes a 25.x global memory-tracker drift where the tracker pinned at the max-memory cap (RSS far below it), causing the OvercommitTracker to kill every query (map/stats/neighbors all 500ing). Deployed in-place on prod over the existing data dir after a cold backup. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
11 lines
412 B
Docker
11 lines
412 B
Docker
FROM clickhouse/clickhouse-server:26.5.1.882
|
|
|
|
# Read-only user used by the web app / discord bot
|
|
COPY users.xml /etc/clickhouse-server/users.d/readonly_user.xml
|
|
|
|
# Access control configuration
|
|
COPY config.xml /etc/clickhouse-server/config.d/access_control.xml
|
|
|
|
# System log retention (TTLs + tame text_log) so diagnostics don't grow unbounded
|
|
COPY system-logs.xml /etc/clickhouse-server/config.d/system-logs.xml
|