-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #427 from sjoerdie/feature/celery-health-check
🩺 add celery healthcheck
- Loading branch information
Showing
4 changed files
with
86 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,6 +36,15 @@ services: | |
- DEMO_TOKEN=demo-random-string | ||
- DEMO_PERSON=Demo | ||
- [email protected] | ||
healthcheck: | ||
test: ["CMD", "python", "-c", "import requests; exit(requests.head('http://localhost:8000/admin/').status_code not in [200, 302])"] | ||
interval: 30s | ||
timeout: 5s | ||
retries: 3 | ||
# This should allow for enough time for migrations to run before the max | ||
# retries have passed. This healthcheck in turn allows other containers | ||
# to wait for the database migrations. | ||
start_period: 30s | ||
ports: | ||
- 8000:8000 | ||
depends_on: | ||
|
@@ -59,9 +68,15 @@ services: | |
build: *web_build | ||
environment: *web_env | ||
command: /celery_worker.sh | ||
healthcheck: | ||
test: ["CMD", "python", "/app/bin/check_celery_worker_liveness.py"] | ||
interval: 30s | ||
timeout: 5s | ||
retries: 3 | ||
start_period: 10s | ||
depends_on: | ||
- db | ||
- redis | ||
web: | ||
condition: service_healthy | ||
volumes: *web_volumes | ||
|
||
celery-flower: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,72 @@ | ||
from celery import Celery | ||
from pathlib import Path | ||
|
||
from django.conf import settings | ||
|
||
from celery import Celery, bootsteps | ||
from celery.signals import setup_logging, worker_ready, worker_shutdown | ||
|
||
from .setup import setup_env | ||
|
||
setup_env() | ||
|
||
app = Celery("objects") | ||
app.config_from_object("django.conf:settings", namespace="CELERY") | ||
app.conf.ONCE = { | ||
"backend": "celery_once.backends.Redis", | ||
"settings": { | ||
"url": settings.CELERY_BROKER_URL, | ||
"default_timeout": 60 * 60, # one hour | ||
}, | ||
} | ||
|
||
app.autodiscover_tasks() | ||
|
||
|
||
# Use django's logging settings as these are reset by Celery by default | ||
@setup_logging.connect() | ||
def config_loggers(*args, **kwargs): | ||
from logging.config import dictConfig | ||
|
||
dictConfig(settings.LOGGING) | ||
|
||
|
||
HEARTBEAT_FILE = Path(settings.BASE_DIR) / "tmp" / "celery_worker_heartbeat" | ||
READINESS_FILE = Path(settings.BASE_DIR) / "tmp" / "celery_worker_ready" | ||
|
||
|
||
# | ||
# Utilities for checking the health of celery workers | ||
# | ||
class LivenessProbe(bootsteps.StartStopStep): | ||
requires = {"celery.worker.components:Timer"} | ||
|
||
def __init__(self, worker, **kwargs): | ||
self.requests = [] | ||
self.tref = None | ||
|
||
def start(self, worker): | ||
self.tref = worker.timer.call_repeatedly( | ||
10.0, | ||
self.update_heartbeat_file, | ||
(worker,), | ||
priority=10, | ||
) | ||
|
||
def stop(self, worker): | ||
HEARTBEAT_FILE.unlink(missing_ok=True) | ||
|
||
def update_heartbeat_file(self, worker): | ||
HEARTBEAT_FILE.touch() | ||
|
||
|
||
@worker_ready.connect | ||
def worker_ready(**_): | ||
READINESS_FILE.touch() | ||
|
||
|
||
@worker_shutdown.connect | ||
def worker_shutdown(**_): | ||
READINESS_FILE.unlink(missing_ok=True) | ||
|
||
|
||
app.steps["worker"].add(LivenessProbe) |