paperless-ngx/docker/wait-for-redis.py
2022-08-16 12:41:52 -07:00

52 lines
1.5 KiB
Python
Executable File

#!/usr/bin/env python3
"""
Simple script which attempts to ping the Redis broker as set in the environment for
a certain number of times, waiting a little bit in between
"""
import os
import sys
import time
import re
from typing import Final
from redis import Redis
if __name__ == "__main__":
MAX_RETRY_COUNT: Final[int] = 5
RETRY_SLEEP_SECONDS: Final[int] = 5
REDIS_URL: Final[str] = os.getenv("PAPERLESS_REDIS", "redis://localhost:6379")
matches = re.match(r"(?P<protocol>.*//)(?P<credentials>.*\@)?(?P<host>.*)", REDIS_URL)
credentials=""
if (matches.group("credentials") is not None):
credentials="xxx:xxx@"
redisurl="{0}{1}{2}".format(matches.group("protocol"), credentials, matches.group("host"))
print(f"Waiting for Redis: {redisurl}", flush=True)
attempt = 0
with Redis.from_url(url=REDIS_URL) as client:
while attempt < MAX_RETRY_COUNT:
try:
client.ping()
break
except Exception as e:
print(
f"Redis ping #{attempt} failed.\n"
f"Error: {str(e)}.\n"
f"Waiting {RETRY_SLEEP_SECONDS}s",
flush=True,
)
time.sleep(RETRY_SLEEP_SECONDS)
attempt += 1
if attempt >= MAX_RETRY_COUNT:
print(f"Failed to connect to: {redisurl}")
sys.exit(os.EX_UNAVAILABLE)
else:
print(f"Connected to Redis broker: {redisurl}")
sys.exit(os.EX_OK)