| # Operator Map (Fast Navigation) |
|
|
| Use this as a quick index to the authoritative docs, contracts, and tools. |
|
|
| ## Bootstrapping |
| - Host namespacing: `tools/host_namespace_bootstrap.sh` |
| - Supervisor reread/update: `supervisorctl -s unix:///data/adaptai/platform/dbops/run/supervisor.sock reread && update` |
| - Local vs central connections: `tools/render_connections.py` (env: `DBOPS_MODE=local|central`) |
|
|
| ## Core Runbooks |
| - Qdrant: `docs/runbooks/qdrant.md` |
| - DragonFly: `docs/runbooks/dragonfly.md` |
| - Redis Cluster: `docs/runbooks/redis.md` |
| - JanusGraph: `docs/runbooks/janusgraph.md` |
| - Scylla/Proxy: `docs/runbooks/scylla.md` |
| - Supervisord: `docs/runbooks/supervisord.md` |
|
|
| ## Contracts (SLOs, persistence, supervisor) |
| - Qdrant: `contracts/qdrant.contract.yaml` |
| - DragonFly: `contracts/dragonfly.contract.yaml` |
| - Redis: `contracts/redis.contract.yaml` |
| - JanusGraph: `contracts/janusgraph.contract.yaml` |
| - Scylla: `contracts/scylla.contract.yaml` |
|
|
| ## Health & Monitoring |
| - Health checks: `checks/*.sh` → writes to `run/health/*.json` |
| - Connectivity: `tools/connectivity_report.py` (watcher via Supervisor) |
| - Log retention: see per‑program `stdout/stderr_logfile_*` in `supervisor/conf.d/*.conf` |
|
|
| ## Paths & Persistence |
| - Stable paths: `/data/adaptai/platform/dbops/{data,logs}` |
| - Backing (per host): `/data/adaptai/platform/dbops/b/<host_id>/{data,logs}` |
| - Binaries: `/data/adaptai/platform/dbops/binaries/*` (access via `run/*` symlinks) |
|
|
| ## Quick Commands |
| - Supervisor socket: `unix:///data/adaptai/platform/dbops/run/supervisor.sock` |
| - Start services: `supervisorctl -s <socket> start qdrant dragonfly-node1 redis-node1 ...` |
| - Verify Qdrant: `curl -sf http://127.0.0.1:17000/collections` |
| - Verify DragonFly: `redis-cli -a <pass> -p 18000 ping` |
| - Verify Redis cluster: `redis-cli -a <pass> -p 18010 cluster info | grep cluster_state:ok` |
| - Verify Gremlin: `nc -z 127.0.0.1 17002` |
|
|
| ## Notes |
| - Idempotent bootstrap: rerun safely if interrupted. |
| - Configs are host‑agnostic; attach a new server with bootstrap + reread. |
| - Local Scylla is optional; if enabled, use per‑host data dirs under `b/<host_id>/data/scylla`. |
|
|
|
|