Scaling Opik
Opik is built to power mission-critical workloads at scale. Whether you're running a small proof of concept or a high-volume enterprise deployment, Opik adapts seamlessly to your needs. Its stateless architecture and powerful ClickHouse backed storage make it highly resilient, horizontally scalable, and future-proof for your data growth.
This guide outlines recommended configurations and best practices for running Opik in production.
Reference Deployment: Live Production Environment
Section titled “Reference Deployment: Live Production Environment”The following is based on an active, high-volume Opik deployment serving real users in production. Use it as a reference when planning your own infrastructure.
Workload Profile
Section titled “Workload Profile”| Metric | Value |
|---|---|
| Active users (daily) | ~600 |
| Traces ingested per day | 4–6 million |
| Weekly data ingestion | ~100 GB |
| Total traces stored | 40 million (400 GB) |
| Total spans stored | 250 million (3.1 TB) |
| Total data on disk | 5 TB |
| Select queries per second | ~80 |
| Insert queries per second | ~20 |
| Rows inserted per minute | Up to 75K |
Infrastructure
Section titled “Infrastructure”Opik Backend — 10 pods
- 3 CPU cores, 5 GB memory per pod
Opik Python Backend — 12 pods
- 1.5 CPU cores, 2 GB memory per pod
Opik Frontend — 3 pods
- Lightweight reverse proxy, minimal CPU and memory requirements
ClickHouse — 2 replicas, 1 shard
- 30 CPU cores, 230 GB memory per replica
- 15 TB gp3 SSD storage per replica (3000 IOPS, 250 MiB/s throughput)
Key Configuration
Section titled “Key Configuration”| Setting | Value |
|---|---|
| Async ClickHouse inserts | Enabled |
| Rate limiting | 10,000 events per 60 seconds per client |
| Max query execution time | 60 seconds |
| Max memory per query | 10 GB |
| Ingestion method | Batch endpoints (up to 1,000 items/request) |
This deployment runs comfortably at 10–20% average CPU utilization on ClickHouse, with headroom for traffic spikes up to 40–50%.
Built for Growth
Section titled “Built for Growth”Opik is designed with flexibility at its core. As your data grows and query volumes increase, Opik grows with you.
- Horizontal scaling - add more replicas of services to instantly handle more traffic
- Vertical scaling - increase CPU, memory, or storage to handle denser workloads
- Seamless elasticity - scale out during peak usage and scale back during quieter periods
For larger workloads, ClickHouse can be scaled to support enterprise-level deployments. A common configuration includes:
- 62 CPU cores
- 256 GB RAM
- 25 TB disk space
ClickHouse's read path can also scale horizontally by increasing replicas, ensuring Opik continues to deliver high performance as usage grows.
Resilient Services Cluster
Section titled “Resilient Services Cluster”Opik services are stateless and fault-tolerant, ensuring high availability across environments. Recommended resources:
| Environment | CPU (vCPU) | RAM (GB) |
|---|---|---|
| Development | 4 | 8 |
| Production | 13 | 32 |
Instance Guidance
Section titled “Instance Guidance”| Deployment | Instance | vCPUs | Memory (GiB) |
|---|---|---|---|
| Dev (small) | c7i.large | 2 | 4 |
| Dev | c7i.xlarge | 4 | 8 |
| Prod (small) | c7i.2xlarge | 8 | 16 |
| Prod | c7i.4xlarge | 16 | 32 |
Backend Service (Scales to Demand)
Section titled “Backend Service (Scales to Demand)”| Metric | Dev | Prod Small | Prod Large |
|---|---|---|---|
| Replicas | 2 | 5 | 7 |
| CPU cores | 1 | 2 | 2 |
| Memory (GiB) | 2 | 9 | 12 |
Frontend Service (Always Responsive)
Section titled “Frontend Service (Always Responsive)”| Metric | Dev | Prod Small | Prod Large |
|---|---|---|---|
| Replicas | 2 | 3 | 5 |
| CPU (millicores) | 5 | 50 | 50 |
| Memory (MiB) | 16 | 32 | 64 |
ClickHouse: High-Performance Storage
Section titled “ClickHouse: High-Performance Storage”At the heart of Opik's scalability is ClickHouse, a proven, high-performance analytical database designed for large-scale workloads. Opik leverages ClickHouse for storing traces and spans, ensuring fast queries, robust ingestion, and uncompromising reliability.
Instance Types
Section titled “Instance Types”Memory-optimized instances are recommended, with a minimum 4:1 memory-to-CPU ratio:
| Deployment | Instance |
|---|---|
| Small | m7i.2xlarge |
| Medium | m7i.4xlarge |
| Large | m7i.8xlarge |
Replication Strategy
Section titled “Replication Strategy”- Development: 1 replica
- Production: 2 replicas
Always scale vertically before adding more replicas for efficiency.
Internal Replication in Multi-Replica Deployments
Section titled “Internal Replication in Multi-Replica Deployments”ClickHouse's internal_replication setting controls how Distributed tables route writes across replicas:
-
When
internal_replication: true(recommended for 2+ replicas)- Distributed table writes to a single replica per shard
- ReplicatedMergeTree handles replication across replicas
- More efficient, reduces duplicate writes
-
When
internal_replication: false(default for single-replica)- Distributed table writes to all replicas
- Suitable for single-replica deployments only
How Opik applies this setting:
- When sharding is disabled (
clickhouse.sharding.enabled: false, the default): the ClickHouse operator automatically infersinternal_replicationfromreplicasCount > 1 - When sharding is enabled (
clickhouse.sharding.enabled: true) and you have 2+ replicas: Opik explicitly pinsinternal_replication: trueon each shard
Important Scope Note: This setting applies only to the operator-managed cluster defined in the Helm chart. If you create a Replicated-engine database outside this definition (e.g., CREATE DATABASE mydb ENGINE = Replicated(...)), that database auto-generates its own internal cluster with independent replication settings. Opik's cluster configuration does not govern those self-managed databases — their replication behavior is independent and must be configured separately if needed.
Fresh multi-replica installs: migrate first, then scale
Section titled “Fresh multi-replica installs: migrate first, then scale”A brand-new install running directly on 2 or more ClickHouse replicas cannot complete its analytics migrations. Opik's earliest migrations aren't cluster-aware, so on a fresh multi-replica cluster they only reach one replica; later migrations then fail with errors such as UNKNOWN_TABLE or UNKNOWN_DATABASE (a table or the opik database missing on one replica), and opik-backend never becomes ready. Install High-Availability deployments in two phases:
Install with
clickhouse.replicasCount: 1.Wait until
opik-backendisReady— all migrations are then applied on the single replica.Raise
clickhouse.replicasCount(e.g. to2) and upgrade. The ClickHouse operator provisions the new replica and copies the fully-migrated schema to it.
CPU & Memory Guidance
Section titled “CPU & Memory Guidance”Target 10–20% CPU utilization, with safe spikes up to 40–50%.
Maintain at least a 4:1 memory-to-CPU ratio (extend to 8:1 for very large environments).
| Deployment | CPU cores | Memory (GiB) |
|---|---|---|
| Minimum | 2 | 8 |
| Development | 4 | 16 |
| Production (small) | 6 | 24 |
| Production | 32 | 128 |
Disk Recommendations
Section titled “Disk Recommendations”To ensure reliable performance under heavy load:
| Volume | Value |
|---|---|
| Family | SSD |
| Type | gp3 |
| Size | 8–16 TiB (workload dependent) |
| IOPS | 3000 |
| Throughput | 250 MiB/s |
Opik's ClickHouse layer is resilient even under sustained, large-scale ingestion, ensuring queries stay fast.
Ingestion Best Practices
Section titled “Ingestion Best Practices”How you send data to Opik matters more than how much hardware you run. Optimizing your ingestion pattern is the single most impactful thing you can do for performance.
Use Batch Endpoints
Section titled “Use Batch Endpoints”Opik provides batch ingestion endpoints that accept up to 1,000 items per request:
POST /v1/private/traces/batchPOST /v1/private/spans/batch
Instead of sending 1,000 individual HTTP requests (each triggering a separate database insert), a single batch request handles them all at once. This dramatically reduces connection overhead and ClickHouse insert pressure.
Enable Async Inserts
Section titled “Enable Async Inserts”For production deployments, enable async ClickHouse inserts. This allows Opik to buffer writes and flush them in larger, more efficient batches rather than committing each insert individually.
Set Query Limits
Section titled “Set Query Limits”Protect your ClickHouse cluster from runaway queries:
| Setting | Recommended Value |
|---|---|
| Max execution time | 60 seconds |
| Max memory per query | 10 GB |
| Max concurrent queries per user | 2–4 |
These limits prevent a single expensive query from impacting ingestion performance or other users.
Monitor What Matters
Section titled “Monitor What Matters”Key metrics to watch for a healthy deployment:
- ClickHouse CPU utilization — target 10–20% average, safe spikes up to 40–50%
- Insert rate — rows inserted per minute, should be steady without drops
- Query duration — p95 and p99 query times; investigate if consistently above 10 seconds
- Pod restarts — frequent restarts may indicate health check timeouts under load
Managing System Tables
Section titled “Managing System Tables”System tables (e.g., system.opentelemetry_span_log) can grow quickly. To keep storage lean:
- Configure TTL settings in ClickHouse, or
- Perform periodic manual pruning
Why Opik Scales with Confidence
Section titled “Why Opik Scales with Confidence”- Enterprise-ready — built to support multi-terabyte data volumes
- Elastic & flexible — easily adjust resources to match workload demands
- Robust & reliable — designed for high availability and long-term stability
- Future-proof — proven to support growing usage without redesign
With Opik, you can start small and scale confidently, knowing your observability platform won't hold you back.