Cluster resource requirements per selected component · Based on Helm chart v0.16+ defaults
Profile: Low→Med/Low→Med · 20% scheduling overhead included
| Service | Replicas | CPU req | RAM req |
|---|---|---|---|
| backend | 4 | 4.0 | 8.0 Gi |
| platform-backend | 3 | 3.0 | 6.0 Gi |
| ingest-queue | 4 | 4.0 | 8.0 Gi |
| frontend | 2 | 1.0 | 2.0 Gi |
| ace-backend | 1 | 1.0 | 2.0 Gi |
| playground | 1 | 0.5 | 1.0 Gi |
| queue | 1 | 1.0 | 2.0 Gi |
| Services total | — | 14.5 | 29.0 Gi |
| Database | Runs | CPU req | RAM req | Storage | |
|---|---|---|---|---|---|
| LangSmith PostgreSQLscales with the sizing profile | external | 4 | 32 Gi | 50 Gi | ▸ |
| ClickHouse | single | 6 | 17 Gi | 84 Gi | |
| LangSmith Redisscales with write load | external | 2 | 9 Gi | — | ▸ |
| In-cluster DB total | — | 6.0 | 17.0 Gi | — |
# ═══════════════════════════════════════════════════════════════════════ # REFERENCE GUIDANCE ONLY — not a production-ready values.yaml. # This snippet shows which keys to configure and rough sizing based on your # inputs. Review against the current chart defaults, fill in real secrets/ # connection strings, and validate in a staging environment before deploying. # ═══════════════════════════════════════════════════════════════════════ # ── langsmith chart ──────────────────────── config: blobStorage: enabled: true # ── Scaled services ───────────────────────── frontend: deployment: replicas: 2 platformBackend: deployment: replicas: 3 ingestQueue: deployment: replicas: 4 autoscaling: keda: enabled: true minReplicaCount: 3 maxReplicaCount: 4 backend: deployment: replicas: 4 # ── PostgreSQL ────────────────────────────── postgres: external: enabled: true connectionUrl: "<postgres-connection-url>" # Required: 4 vCPU / 32 GiB / 50 GiB storage with autoexpansion (terraform Production profile) # Floor from the scale guide: 2 vCPU / 8 GiB / 10 GiB, flat at every load # PostgreSQL 14 or newer, admin user able to create: btree_gin, btree_gist, pgcrypto, citext, ltree, pg_trgm # ── Redis ─────────────────────────────────── redis: external: enabled: true existingSecretName: langsmith-redis-secret # Required: ≥9 GiB, 2 vCPU, Redis 5 or newer, or Valkey 8 # Dedicated to this installation — never shared with another LangSmith installation # ── ClickHouse / SmithDB ──────────────────── clickhouse: statefulSet: persistence: size: 84Gi resources: requests: cpu: "6" memory: "17Gi" limits: cpu: "12" memory: "26Gi"