Skip to content

QoS Oracle V2 Clickhouse approach #15

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

Open
wants to merge 20 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
fb21f1d
feat: added most of the basic implementation for the docker/clickhous…
juanmardefago Mar 20, 2025
4dde0e4
fix: schema issues with test producer
juanmardefago Mar 20, 2025
88eddc4
feat: added README.md, bunch of improvements to clickhouse setting, g…
juanmardefago Mar 24, 2025
f8661f4
feat: update Cargo files
juanmardefago Mar 25, 2025
9caaf3a
feat: remove need for length delimiter by using ProtobufSingle
juanmardefago Mar 25, 2025
ecd55f7
fix: all sort of build errors, added debug statements to test producer
juanmardefago Mar 25, 2025
fd57d48
feat: add grafana and prometheus to stack (#14)
cjorge-graphops Mar 31, 2025
5402cd9
feat: upgraded clickhouse server to 25.3
juanmardefago Mar 31, 2025
5fd13dd
fix: graphql clickhouse request not working
juanmardefago Apr 1, 2025
8d202dc
feat: added basic Allocation, Deployment and Indexer aggregation reso…
juanmardefago Apr 2, 2025
4f963a1
feat: added all aggregation fields
juanmardefago Apr 2, 2025
71d62fb
feat: added graceful shutdown logic
juanmardefago Apr 3, 2025
d36b6ac
feat: simplified raw data table, removed unnecessary resolvers
juanmardefago Apr 3, 2025
6f78105
feat: added filtering, sorting, default arguments to graphql api
juanmardefago Apr 3, 2025
bae04dc
feat: add better input sanitization and improved timeRange filtering
juanmardefago Apr 3, 2025
aef572e
feat: update README.md
juanmardefago Apr 3, 2025
4f78d9e
feat: added table optimizations for ClickHouse
juanmardefago Apr 8, 2025
d13d30d
feat: simplified and optimized tables
juanmardefago Apr 8, 2025
a9f54b9
feat: improvements for test producer and kafka engine settings
juanmardefago Apr 8, 2025
5bd0c76
feat: update README.md
juanmardefago Apr 9, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Docker volumes data
*data/
*.volume

# Rust build artifacts
/target/
*/target/
**/target/
**/*.rs.bk

# Logs
*.log
/logs/

# Environment variables
.env
.env.*
!.env.example

# IDE - Common
.vscode/
.idea/
*.iml
.DS_Store

# ClickHouse specific
preprocessed_configs/
clickhouse-server.err.log
clickhouse-server.log

# Temporary files
*~
*.swp
*.swo
/tmp/
Loading