Dragonfly Cloud
Managed Dragonfly — data store row drawer, Redis-compatible Connection URI, TLS passkey, private network prod.
Dragonfly Cloud runs the same multi-threaded engine as the
Dragonfly image, with a managed endpoint.
drivers.store.kv stays redis.
The one rule
Click the data store row to open the side drawer — copy the Redis-compatible Connection
URI (includes passkey). Paste it as REDIS_URL.
Find credentials (current console)
- Open Dragonfly Cloud → Data Stores.
- Wait until Status is Active.
- Click the data store row (opens the configuration drawer).
- Copy:
- Redis-compatible Connection URI (e.g.
rediss://default:PASS@….dragonflydb.cloud:6385) - or host / port /
defaultuser / passkey separately
- Redis-compatible Connection URI (e.g.
- Paste the URI into
REDIS_URLunchanged when it already usesrediss://.
REDIS_URL=rediss://default:PASSKEY@xxxxx.dragonflydb.cloud:6385Smoke-check: redis-cli -u "$REDIS_URL" PING.
Production guidance
| Topic | Guidance |
|---|---|
| Public network | TLS + passkey on by default — leave TLS enabled |
| Private network | Recommended for production (peering) — passkey still required on public |
| HA | Enable high availability in the data store settings before you need failover |
| Driver | Same redis driver as self-hosted Dragonfly |
| Port | Drawer URI often uses 6385 (not 6379) — copy the URI wholesale |
Self-hosting comparison: the Dragonfly image needs
OKE_STORE_KV_PASSWORD + memlock; Cloud replaces that with the drawer passkey.
Do not reuse a self-hosted REDIS_URL without rediss:// when the drawer shows TLS.
Real gotcha — connecting before Active
The drawer is visible while the store is still provisioning; clients get connection errors until Status = Active. Wait for Active before wiring CI or app boot.
Troubleshooting
Provisioning. Retry when the console shows Active. Do not rotate the passkey yet — confirm status first.
URI missing the passkey, or passkey rotated in the drawer without updating env. Re-copy the Connection URI from the data store drawer after any rotation.
Learn more
- Dragonfly (image) — self-hosted peer
- Store · KV
- Upstash — serverless alternative