fix: extract snapshot data from chunks, reduce ClickHouse log noise
All checks were successful
CI / cleanup-branch (push) Has been skipped
CI / build (push) Successful in 1m11s
CI / docker (push) Successful in 41s
CI / deploy-feature (push) Has been skipped
CI / deploy (push) Successful in 37s

- ChunkAccumulator now extracts inputBody/outputBody/inputHeaders/outputHeaders
  from ExecutionChunk.inputSnapshot/outputSnapshot instead of storing empty strings
- Set ClickHouse server log level to warning (was trace by default)
- Update CLAUDE.md to document Ed25519 key derivation

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
hsiegeln
2026-04-03 17:58:54 +02:00
parent a9ec424d52
commit e1cb9d7872
3 changed files with 28 additions and 5 deletions

View File

@@ -114,6 +114,11 @@ data:
# Based on https://kb.altinity.com/altinity-kb-setup-and-maintenance/configure_clickhouse_for_low_mem_envs/
low-memory.xml: |
<clickhouse>
<!-- Reduce log verbosity (default is trace) -->
<logger>
<level>warning</level>
</logger>
<!-- Let OS page out binary segments instead of pinning them in RAM -->
<mlock_executable>false</mlock_executable>