Run Thermograph as a docker-compose stack (app + Postgres 18) and standardize the
data layer on Postgres, while keeping the test suite on SQLite.
- accounts/db.py: DSN-driven engines. On Postgres, a per-worker read-write +
read-only asyncpg pair (the RO engine pins read-only transactions, used by the
pure-GET endpoints) plus a sync psycopg engine for the notifier thread; the
SQLite path is preserved for tests/local (selected when THERMOGRAPH_DATABASE_URL
is unset). models.py: boolean server_default -> sa.false().
- store.py / metrics.py: dialect-flexible — Postgres UNLOGGED tables via psycopg
when configured, else the existing raw-sqlite3 paths byte-for-byte; sync
interfaces and every fail-soft contract preserved.
- Alembic (backend/alembic/) manages the accounts schema; the container entrypoint
runs `alembic upgrade head` before uvicorn (4 workers). migrate_accounts_to_pg.py
copies the accounts data SQLite->PG through the ORM (UUID/bool/JSON coerced),
skips access_token, and resets identity sequences.
- Dockerfile + docker-compose.yml: app image (uvicorn, 4 workers, loopback 8137)
and a Postgres 18 db (2 CPUs) running pg_duckdb (deploy/db/) so the parquet
climate cache is queryable in-DB via read_parquet('/parquet/cache/*.parquet').
- deploy.sh/thermograph.service rewired to manage the compose stack; env example,
Makefile targets (up/down/db-up), and deploy/POSTGRES-MIGRATION.md cutover runbook.
Tests stay on SQLite (dialect fallback) — 323 pass. The full Postgres stack was
verified via docker compose: alembic migrations, register/login, the RO endpoint,
store/metrics round-trips, and the accounts data migration.
26 lines
932 B
Bash
Executable file
26 lines
932 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Container entrypoint: bring the accounts schema up to head, then serve.
|
|
#
|
|
# Alembic runs before uvicorn so a fresh Postgres volume gets its tables. It is
|
|
# retried because `db` can still be finishing startup even though compose waits on
|
|
# its healthcheck — a cold volume's first connection may race the server becoming
|
|
# ready to accept the migration.
|
|
set -euo pipefail
|
|
|
|
cd /app/backend
|
|
|
|
max=10
|
|
tries=0
|
|
echo "==> Running database migrations (alembic upgrade head)"
|
|
until alembic upgrade head; do
|
|
tries=$((tries + 1))
|
|
if [ "$tries" -ge "$max" ]; then
|
|
echo "!! alembic upgrade head failed after ${max} attempts; giving up" >&2
|
|
exit 1
|
|
fi
|
|
echo " migration attempt ${tries}/${max} failed; retrying in 3s..." >&2
|
|
sleep 3
|
|
done
|
|
|
|
echo "==> Starting uvicorn on 0.0.0.0:${PORT:-8137} with ${WORKERS:-4} worker(s)"
|
|
exec uvicorn app:app --host 0.0.0.0 --port "${PORT:-8137}" --workers "${WORKERS:-4}"
|