Distributed (Remote) Mode
Production‑ready deployment of Compozy with external Temporal and Redis.
Distributed ("remote") mode connects Compozy to external infrastructure for durability, scale, and security.
Comparison with Standalone
| Aspect | Distributed | Standalone |
|---|---|---|
| Use case | Production, staging, shared QA | Local dev, CI, demos |
| Temporal | External cluster (mode: remote) | Embedded server (mode: standalone) |
| Cache | External Redis (redis.mode: distributed) | Embedded compatible server (redis.mode: standalone) |
| Availability | Multi‑node, HA | Single process |
Recommended Configuration
mode: distributed
temporal:
mode: remote
host_port: temporal.prod.internal:7233
namespace: compozy-prod
redis:
mode: distributed
distributed:
addr: redis.prod.internal:6379
password: ${REDIS_PASSWORD}
tls:
enabled: trueMigration from Standalone
Follow the migration guide to plan, switch configuration, and validate.