Troubleshooting

Common issues and how to fix them. Always start with the health endpoint:

curl http://localhost:3300/health
# {"service":"dakera","status":"healthy","version":"0.11.104"}

Server not starting

Check container logs first: docker logs dakera --tail 50. Common causes:

Authentication errors (401)

All authenticated requests need: Authorization: Bearer <your-api-key>. In SDKs, pass via DAKERA_API_KEY env var or the constructor parameter. Verify the key matches DAKERA_ROOT_API_KEY on the server.

No memories returned from recall

Slow queries

Connection refused

MCP server not connecting

Embedding failures

Dakera uses a built-in ONNX embedding model. Common failure modes:

# Check embedding model in use
curl http://localhost:3300/health
# → {"status":"ok","embedding_model":"nomic-embed-text-v1.5",...}

Docker networking

Common container networking issues:

# Test connectivity between containers
docker exec my-app-container curl -s http://dakera:3300/health

Rate limiting (429 Too Many Requests)

Dakera applies per-key rate limits. If you're hitting 429s:

Storage and data issues

API key issues

High-availability issues

When running multiple Dakera nodes, retrieval inconsistencies are usually caused by embedding model mismatches or HNSW cache divergence:

Knowledge graph not extracting entities

Entity extraction runs automatically on every stored memory by default. If entities aren't appearing:

Cross-agent recall not working

Cross-agent memory sharing requires explicit configuration and a compatible memory stored in the source agent's namespace:

Memory decay not working as expected

# Check namespace decay configuration
curl http://localhost:3300/v1/namespaces/my-namespace/policy \
  -H "Authorization: Bearer dk-your-key"
# → {"decay_half_life_hours":168,"decay_enabled":true,"min_importance_threshold":0.15,...}

Performance profiling

Use GET /admin/stats to identify bottlenecks before tuning:

curl http://localhost:3300/admin/stats -H "Authorization: Bearer dk-your-key"
# → {"memory_count":42801,"p50_recall_ms":12,"p99_recall_ms":87,"cache_hit_rate":0.91,...}

Backup and restore issues

TLS and certificate issues

Getting help

If these steps don't resolve your issue:

Issue resolved? Check what's next

Once you're running smoothly, explore decay strategies in the concepts guide or lock in cloud hosting (zero ops, guaranteed SLA) by joining the waitlist.

Core Concepts → Join Cloud Waitlist →
Stay sharp on agent memory
Benchmark results, SDK releases, and production patterns. Under 500 words per issue.
✓ You're in. First issue lands soon — watch for Dakera in your inbox.
Dakera Cloud — zero-ops deployment, guaranteed SLA, team dashboards. Early access open.Get early access →