Skip to content

Commit 1492fb8

Browse files
authored
Feature/upgrade flask celery (#5)
updates
1 parent de94575 commit 1492fb8

39 files changed

+159
-201
lines changed

.DS_Store

10 KB
Binary file not shown.

.coveragerc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[run]
2+
omit =
3+
tests/*

.env/.dev-sample

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
FLASK_ENV=development
1+
FLASK_DEBUG=1
22
FLASK_CONFIG=development
33
DATABASE_URL=postgresql://flask_celery:flask_celery@db/flask_celery
44
SECRET_KEY=my_precious
55
CELERY_BROKER_URL=redis://redis:6379/0
66
CELERY_RESULT_BACKEND=redis://redis:6379/0
7-
SOCKETIO_MESSAGE_QUEUE=redis://redis:6379/0
8-
7+
SOCKETIO_MESSAGE_QUEUE=redis://redis:6379/0

.env/.prod-sample

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FLASK_ENV=production
1+
FLASK_DEBUG=0
22
FLASK_CONFIG=production
33
DATABASE_URL=postgresql://flask_celery:flask_celery@db/flask_celery
44
SECRET_KEY=my_precious

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1+
/venv/
12
upload
2-

README.md

-1
This file was deleted.

REEADME.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Source code for the [The Definitive Guide to Celery and Flask](https://testdriven.io/courses/flask-celery/) course by [Michael Yin](https://github.com/michael-yin/)

celery_app.py

-13
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,3 @@
33

44
app = create_app()
55
celery = ext_celery.celery
6-
7-
8-
@app.cli.command("celery_worker")
9-
def celery_worker():
10-
from watchgod import run_process
11-
import subprocess
12-
13-
def run_worker():
14-
subprocess.call(
15-
['celery', '-A', 'celery_app.celery', 'worker', '--loglevel=info', '-Q', 'high_priority,default']
16-
)
17-
18-
run_process('./project', run_worker)

compose/auto_deploy_do.sh

-26
This file was deleted.

compose/local/flask/celery/worker/start

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@
33
set -o errexit
44
set -o nounset
55

6-
# celery -A app.celery worker --loglevel=info
7-
flask celery_worker
6+
watchfiles \
7+
--filter python \
8+
'celery -A celery_app.celery worker --loglevel=info -Q high_priority,default'

compose/local/flask/start

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ set -o nounset
66

77
flask db upgrade
88
# flask run --host=0.0.0.0
9-
python app.py
9+
python app.py

compose/production/flask/celery/beat/start

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
set -o errexit
44
set -o nounset
55

6-
celery -A celery_app.celery beat -l info
6+
exec celery -A project.wsgi.celery beat -l info

compose/production/flask/celery/flower/start

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ until worker_ready; do
1313
done
1414
>&2 echo 'Celery workers is available'
1515

16-
celery -A celery_app.celery \
16+
exec celery -A project.wsgi.celery \
1717
--broker="${CELERY_BROKER_URL}" \
1818
flower \
1919
--basic_auth="${CELERY_FLOWER_USER}:${CELERY_FLOWER_PASSWORD}" \

compose/production/flask/celery/worker/start

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
set -o errexit
44
set -o nounset
55

6-
celery -A project.wsgi.celery worker --loglevel=info
6+
exec celery -A project.wsgi.celery worker --loglevel=info

compose/production/nginx/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM nginx:1.19-alpine
1+
FROM nginx:1.23-alpine
22

33
RUN rm /etc/nginx/conf.d/default.conf
44
COPY nginx.conf /etc/nginx/conf.d

compose/production/nginx/nginx.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ server {
2020
client_max_body_size 20M;
2121
}
2222
location /upload/ {
23-
alias /app/uploadfiles/;
23+
alias /app/upload/;
2424
}
2525

2626
location /socket.io {

docker-compose.prod.yml

+23-25
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ services:
2020
dockerfile: ./compose/production/flask/Dockerfile
2121
command: /start
2222
volumes:
23-
2423
- mediafiles:/app/upload
2524
env_file:
2625
- ./.env/.prod-sample
@@ -29,7 +28,7 @@ services:
2928
- db
3029

3130
db:
32-
image: postgres:13.0-alpine
31+
image: postgres:14.0-alpine
3332
volumes:
3433
- postgres_data:/var/lib/postgresql/data/
3534
environment:
@@ -38,7 +37,7 @@ services:
3837
- POSTGRES_PASSWORD=flask_celery
3938

4039
redis:
41-
image: redis:6-alpine
40+
image: redis:7-alpine
4241

4342
rabbitmq:
4443
image: rabbitmq:3-management
@@ -88,29 +87,28 @@ services:
8887
- redis
8988
- db
9089

91-
prometheus:
92-
image: prom/prometheus
93-
ports:
94-
- 9090:9090
95-
command:
96-
- --config.file=/etc/prometheus/prometheus.yml
97-
volumes:
98-
- ./prometheus.yml:/etc/prometheus/prometheus.yml:ro
99-
depends_on:
100-
- cadvisor
101-
102-
cadvisor:
103-
image: google/cadvisor
104-
container_name: cadvisor
105-
volumes:
106-
- /:/rootfs:ro
107-
- /var/run:/var/run:rw
108-
- /sys:/sys:ro
109-
- /var/lib/docker/:/var/lib/docker:ro
110-
- /var/run/docker.sock:/var/run/docker.sock:ro
111-
90+
# prometheus:
91+
# image: prom/prometheus
92+
# ports:
93+
# - 9090:9090
94+
# command:
95+
# - --config.file=/etc/prometheus/prometheus.yml
96+
# volumes:
97+
# - ./prometheus.yml:/etc/prometheus/prometheus.yml:ro
98+
# depends_on:
99+
# - cadvisor
100+
#
101+
# cadvisor:
102+
# image: gcr.io/cadvisor/cadvisor
103+
# container_name: cadvisor
104+
# volumes:
105+
# - /:/rootfs:ro
106+
# - /var/run:/var/run:rw
107+
# - /sys:/sys:ro
108+
# - /var/lib/docker/:/var/lib/docker:ro
109+
# - /var/run/docker.sock:/var/run/docker.sock:ro
112110

113111
volumes:
114112
postgres_data:
115113
mediafiles:
116-
flower_db:
114+
flower_db:

docker-compose.yml

+3-8
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ services:
2323
- db
2424

2525
db:
26-
image: postgres:13-alpine
26+
image: postgres:14-alpine
2727
volumes:
2828
- postgres_data:/var/lib/postgresql/data/
2929
environment:
@@ -32,7 +32,7 @@ services:
3232
- POSTGRES_PASSWORD=flask_celery
3333

3434
redis:
35-
image: redis:6-alpine
35+
image: redis:7-alpine
3636

3737
celery_worker:
3838
build:
@@ -42,11 +42,6 @@ services:
4242
command: /start-celeryworker
4343
volumes:
4444
- .:/app
45-
# logging:
46-
# driver: syslog
47-
# options:
48-
# syslog-address: "tcp+tls://logs2.papertrailapp.com:45883"
49-
# tag: "{{.Name}}/{{.ID}}"
5045
env_file:
5146
- .env/.dev-sample
5247
environment:
@@ -75,7 +70,7 @@ services:
7570
build:
7671
context: .
7772
dockerfile: ./compose/local/flask/Dockerfile
78-
image: flask_celery_example_celey_flower
73+
image: flask_celery_example_celery_flower
7974
command: /start-flower
8075
volumes:
8176
- .:/app

migrations/env.py

+9-3
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,20 @@
2424
'sqlalchemy.url',
2525
str(current_app.extensions['migrate'].db.get_engine().url).replace(
2626
'%', '%%'))
27-
target_metadata = current_app.extensions['migrate'].db.metadata
27+
target_db = current_app.extensions['migrate'].db
2828

2929
# other values from the config, defined by the needs of env.py,
3030
# can be acquired:
3131
# my_important_option = config.get_main_option("my_important_option")
3232
# ... etc.
3333

3434

35+
def get_metadata():
36+
if hasattr(target_db, 'metadatas'):
37+
return target_db.metadatas[None]
38+
return target_db.metadata
39+
40+
3541
def run_migrations_offline():
3642
"""Run migrations in 'offline' mode.
3743
@@ -46,7 +52,7 @@ def run_migrations_offline():
4652
"""
4753
url = config.get_main_option("sqlalchemy.url")
4854
context.configure(
49-
url=url, target_metadata=target_metadata, literal_binds=True
55+
url=url, target_metadata=get_metadata(), literal_binds=True
5056
)
5157

5258
with context.begin_transaction():
@@ -76,7 +82,7 @@ def process_revision_directives(context, revision, directives):
7682
with connectable.connect() as connection:
7783
context.configure(
7884
connection=connection,
79-
target_metadata=target_metadata,
85+
target_metadata=get_metadata(),
8086
process_revision_directives=process_revision_directives,
8187
**current_app.extensions['migrate'].configure_args
8288
)

migrations/versions/7309fc8782a7_.py migrations/versions/bcb268967ba0_.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
"""empty message
22
3-
Revision ID: 7309fc8782a7
4-
Revises: 69fd8a9d569e
5-
Create Date: 2021-09-17 01:42:45.564119
3+
Revision ID: bcb268967ba0
4+
Revises: de643eb1222c
5+
Create Date: 2022-12-19 03:32:06.930018
66
77
"""
88
from alembic import op
99
import sqlalchemy as sa
1010

1111

1212
# revision identifiers, used by Alembic.
13-
revision = '7309fc8782a7'
14-
down_revision = '69fd8a9d569e'
13+
revision = 'bcb268967ba0'
14+
down_revision = 'de643eb1222c'
1515
branch_labels = None
1616
depends_on = None
1717

migrations/versions/69fd8a9d569e_initial_migration.py migrations/versions/de643eb1222c_initial_migration.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
"""Initial migration.
22
3-
Revision ID: 69fd8a9d569e
3+
Revision ID: de643eb1222c
44
Revises:
5-
Create Date: 2021-09-16 09:29:54.931254
5+
Create Date: 2022-12-16 22:47:33.117492
66
77
"""
88
from alembic import op
99
import sqlalchemy as sa
1010

1111

1212
# revision identifiers, used by Alembic.
13-
revision = '69fd8a9d569e'
13+
revision = 'de643eb1222c'
1414
down_revision = None
1515
branch_labels = None
1616
depends_on = None

project/celery_utils.py

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import functools
22

3+
from flask import has_app_context
34
from celery import current_app as current_celery_app
45
from celery import Task, shared_task
56
from celery.utils.time import get_exponential_backoff_interval
@@ -25,8 +26,10 @@ class AppContextTask(Task):
2526

2627
def __call__(self, *args, **kwargs):
2728
# self.app is the Celery app instance
29+
if has_app_context():
30+
return Task.__call__(self, *args, **kwargs)
2831
with self.app.flask_app.app_context():
29-
Task.__call__(self, *args, **kwargs)
32+
return Task.__call__(self, *args, **kwargs)
3033

3134

3235
class custom_celery_task:
@@ -47,8 +50,7 @@ def __call__(self, func):
4750
@functools.wraps(func)
4851
def wrapper_func(*args, **kwargs):
4952
try:
50-
with task_func.app.flask_app.app_context():
51-
return func(*args, **kwargs)
53+
return func(*args, **kwargs)
5254
except self.EXCEPTION_BLOCK_LIST:
5355
# do not retry for those exceptions
5456
raise
@@ -60,7 +62,6 @@ def wrapper_func(*args, **kwargs):
6062
task_func = shared_task(*self.task_args, **self.task_kwargs)(wrapper_func)
6163
return task_func
6264

63-
6465
def _get_retry_countdown(self, task_func):
6566
retry_backoff = int(
6667
self.task_kwargs.get('retry_backoff', True)

0 commit comments

Comments
 (0)