forked from HHS/TANF-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wait_for_postgres.py
44 lines (35 loc) · 1.26 KB
/
wait_for_postgres.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
"""Wait for Postgres before starting application."""
import logging
import os
from time import sleep, time
import psycopg2
check_timeout = os.getenv("POSTGRES_CHECK_TIMEOUT", 30)
check_interval = os.getenv("POSTGRES_CHECK_INTERVAL", 1)
interval_unit = "second" if check_interval == 1 else "seconds"
config = {
"dbname": os.getenv("DB_NAME"),
"user": os.getenv("DB_USER"),
"password": os.getenv("DB_PASSWORD"),
"host": os.getenv("DB_HOST"),
}
start_time = time()
logger = logging.getLogger()
logger.setLevel(logging.INFO)
logger.addHandler(logging.StreamHandler())
def pg_isready(host, user, password, dbname):
"""Check to see if Postgres is ready."""
# The `check_timeout` env var must be converted from a string to a float.
while time() - start_time < float(check_timeout):
try:
conn = psycopg2.connect(**vars())
logger.info("Postgres is ready!")
conn.close()
return True
except psycopg2.OperationalError:
logger.info(
f"Postgres isn't ready. Waiting for {check_interval} {interval_unit}..."
)
sleep(check_interval)
logger.error(f"We could not connect to Postgres within {check_timeout} seconds.")
return False
pg_isready(**config)