-
Notifications
You must be signed in to change notification settings - Fork 99
feat(docker): add ClickHouse service for local development #1807
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(docker): add ClickHouse service for local development #1807
Conversation
Deploying with
|
| Status | Name | Latest Commit | Updated (UTC) |
|---|---|---|---|
| ✅ Deployment successful! View logs |
v2-docs | 145ccd6 | Jan 09 2026, 03:31 AM |
This stack of pull requests is managed by Graphite. Learn more about stacking. |
812fcfb to
51f6895
Compare
b375648 to
195effa
Compare
️✅ There are no secrets present in this pull request anymore.If these secrets were true positive and are still valid, we highly recommend you to revoke them. 🦉 GitGuardian detects secrets in your source code to help developers and security teams secure the modern development process. You are seeing this because you or someone else with access to this repository has authorized GitGuardian to scan your pull request. |
195effa to
e3af912
Compare
e3af912 to
84bbe68
Compare
237a2c3 to
409e497
Compare
0ead3c4 to
39630ec
Compare
8a09180 to
af7802b
Compare
af7802b to
f304bba
Compare
f304bba to
b48b0e8
Compare
a12104c to
c402f9b
Compare
b48b0e8 to
f7e727e
Compare
ff98703 to
b99dbd3
Compare
c402f9b to
094c363
Compare
b99dbd3 to
3bd2c0e
Compare
094c363 to
3963ed9
Compare
Merge activity
|
3963ed9 to
fc202da
Compare
3bd2c0e to
03c0acf
Compare
03c0acf to
c95780a
Compare
c95780a to
145ccd6
Compare

Add ClickHouse for Analytics
TL;DR
Add ClickHouse database for analytics with tables for spans and annotations.
What changed?
spans_analyticstable with optimized structure for OLAP queriesannotations_analyticstable to track span annotationsThe spans table includes:
How to test?
Start the ClickHouse service:
Connect to ClickHouse using the web interface at http://localhost:8123 or CLI client
Verify tables were created:
Stop the service when done:
Why make this change?
This adds analytical capabilities to support complex queries across span data without impacting the performance of the transactional PostgreSQL database. ClickHouse's columnar storage is optimized for OLAP workloads, enabling efficient aggregation and filtering across large volumes of trace data.