Skip to content

Commit 0254ac1

Browse files
authored
Merge pull request #42 from dabapps/2.0-with-migrations
2.0 with migrations
2 parents caec32f + f5bb1dc commit 0254ac1

15 files changed

+105
-189
lines changed

.github/workflows/ci.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,12 @@ jobs:
99

1010
strategy:
1111
matrix:
12-
python: [3.6, 3.7, 3.8]
13-
django: [2.2]
12+
python: [3.6, 3.7, 3.8, 3.9]
13+
django: [3.1, 3.2]
1414
database_url:
1515
- postgres://runner:password@localhost/project
1616
- mysql://root:[email protected]/project
17+
- 'sqlite:///:memory:'
1718

1819
services:
1920
postgres:

.github/workflows/pypi.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Upload Python Package
2+
3+
on:
4+
release:
5+
types: [created]
6+
7+
jobs:
8+
deploy:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
- name: Set up Python
13+
uses: actions/setup-python@v2
14+
with:
15+
python-version: '3.8'
16+
- name: Install dependencies
17+
run: |
18+
python -m pip install --upgrade pip
19+
pip install setuptools wheel twine
20+
- name: Build and publish
21+
env:
22+
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
23+
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
24+
run: |
25+
python setup.py sdist bdist_wheel
26+
twine upload dist/*

README.md

+7-15
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,14 @@
11
django-db-queue
22
==========
3-
[![Build Status](https://travis-ci.org/dabapps/django-db-queue.svg)](https://travis-ci.org/dabapps/django-db-queue)
43
[![pypi release](https://img.shields.io/pypi/v/django-db-queue.svg)](https://pypi.python.org/pypi/django-db-queue)
54

6-
Simple databased-backed job queue. Jobs are defined in your settings, and are processed by management commands.
5+
Simple database-backed job queue. Jobs are defined in your settings, and are processed by management commands.
76

87
Asynchronous tasks are run via a *job queue*. This system is designed to support multi-step job workflows.
98

109
Supported and tested against:
11-
- Django 1.11 and 2.2
12-
- Python 3.5, 3.6, 3.7 and 3.8
13-
14-
This package may still work with older versions of Django and Python but they aren't explicitly supported.
10+
- Django 3.1 and 3.2
11+
- Python 3.6, 3.7, 3.8 and 3.9
1512

1613
## Getting Started
1714

@@ -28,6 +25,10 @@ Add `django_dbq` to your installed apps
2825
'django_dbq',
2926
)
3027

28+
### Upgrading from 1.x to 2.x
29+
30+
Note that version 2.x only supports Django 3.1 or newer. If you need support for Django 2.2, please stick with the latest 1.x release.
31+
3132
### Describe your job
3233

3334
In e.g. project.common.jobs:
@@ -209,15 +210,6 @@ jobs from the database which are in state `COMPLETE` or `FAILED` and were
209210
created more than 24 hours ago. This could be run, for example, as a cron task,
210211
to ensure the jobs table remains at a reasonable size.
211212

212-
##### manage.py create_job
213-
For debugging/development purposes, a simple management command is supplied to create jobs:
214-
215-
manage.py create_job <job_name> --queue_name 'my_queue_name' --workspace '{"key": "value"}'
216-
217-
The `workspace` flag is optional. If supplied, it must be a valid JSON string.
218-
219-
`queue_name` is optional and defaults to `default`
220-
221213
##### manage.py worker
222214
To start a worker:
223215

django_dbq/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.3.1"
1+
__version__ = "2.0.0"

django_dbq/management/commands/create_job.py

-59
This file was deleted.

django_dbq/management/commands/worker.py

+17-7
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
from django.utils import timezone
44
from django.utils.module_loading import import_string
55
from django_dbq.models import Job
6-
from simplesignals.process import WorkerProcessBase
76
from time import sleep
87
import logging
8+
import signal
99

1010

1111
logger = logging.getLogger(__name__)
@@ -74,17 +74,27 @@ def process_job(queue_name):
7474
raise
7575

7676

77-
class Worker(WorkerProcessBase):
78-
79-
process_title = "jobworker"
80-
77+
class Worker:
8178
def __init__(self, name, rate_limit_in_seconds):
8279
self.queue_name = name
8380
self.rate_limit_in_seconds = rate_limit_in_seconds
81+
self.alive = True
8482
self.last_job_finished = None
85-
super(Worker, self).__init__()
83+
self.init_signals()
84+
85+
def init_signals(self):
86+
signal.signal(signal.SIGINT, self.shutdown)
87+
signal.signal(signal.SIGQUIT, self.shutdown)
88+
signal.signal(signal.SIGTERM, self.shutdown)
89+
90+
def shutdown(self, signum, frame):
91+
self.alive = False
92+
93+
def run(self):
94+
while self.alive:
95+
self.process_job()
8696

87-
def do_work(self):
97+
def process_job(self):
8898
sleep(1)
8999
if (
90100
self.last_job_finished

django_dbq/migrations/0001_initial.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
from __future__ import unicode_literals
33

44
from django.db import models, migrations
5-
import jsonfield.fields
65
import uuid
76

87
from django.db.models import UUIDField
@@ -44,7 +43,7 @@ class Migration(migrations.Migration):
4443
),
4544
),
4645
("next_task", models.CharField(max_length=100, blank=True)),
47-
("workspace", jsonfield.fields.JSONField(null=True)),
46+
("workspace", models.TextField(null=True)),
4847
(
4948
"queue_name",
5049
models.CharField(db_index=True, max_length=20, default="default"),
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Generated by Django 3.2rc1 on 2021-08-18 02:47
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
("django_dbq", "0003_auto_20180713_1000"),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name="job",
15+
name="state",
16+
field=models.CharField(
17+
choices=[
18+
("NEW", "New"),
19+
("READY", "Ready"),
20+
("PROCESSING", "Processing"),
21+
("FAILED", "Failed"),
22+
("COMPLETE", "Complete"),
23+
],
24+
db_index=True,
25+
default="NEW",
26+
max_length=20,
27+
),
28+
),
29+
migrations.AlterField(
30+
model_name="job", name="workspace", field=models.JSONField(null=True),
31+
),
32+
]

django_dbq/models.py

+5-16
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
get_failure_hook_name,
77
get_creation_hook_name,
88
)
9-
from jsonfield import JSONField
10-
from django.db.models import UUIDField, Count
9+
from django.db.models import JSONField, UUIDField, Count, TextChoices
1110
import datetime
1211
import logging
1312
import uuid
@@ -74,27 +73,19 @@ def to_process(self, queue_name):
7473

7574

7675
class Job(models.Model):
77-
class STATES:
76+
class STATES(TextChoices):
7877
NEW = "NEW"
7978
READY = "READY"
8079
PROCESSING = "PROCESSING"
8180
FAILED = "FAILED"
8281
COMPLETE = "COMPLETE"
8382

84-
STATE_CHOICES = [
85-
(STATES.NEW, "NEW"),
86-
(STATES.READY, "READY"),
87-
(STATES.PROCESSING, "PROCESSING"),
88-
(STATES.FAILED, "FAILED"),
89-
(STATES.COMPLETE, "COMPLETE"),
90-
]
91-
9283
id = UUIDField(primary_key=True, default=uuid.uuid4, editable=False)
9384
created = models.DateTimeField(auto_now_add=True, db_index=True)
9485
modified = models.DateTimeField(auto_now=True)
9586
name = models.CharField(max_length=100)
9687
state = models.CharField(
97-
max_length=20, choices=STATE_CHOICES, default=STATES.NEW, db_index=True
88+
max_length=20, choices=STATES.choices, default=STATES.NEW, db_index=True
9889
)
9990
next_task = models.CharField(max_length=100, blank=True)
10091
workspace = JSONField(null=True)
@@ -107,9 +98,7 @@ class Meta:
10798
objects = JobManager()
10899

109100
def save(self, *args, **kwargs):
110-
is_new = not Job.objects.filter(pk=self.pk).exists()
111-
112-
if is_new:
101+
if self._state.adding:
113102
self.next_task = get_next_task_name(self.name)
114103
self.workspace = self.workspace or {}
115104

@@ -121,7 +110,7 @@ def save(self, *args, **kwargs):
121110
)
122111
return # cancel the save
123112

124-
return super(Job, self).save(*args, **kwargs)
113+
return super().save(*args, **kwargs)
125114

126115
def update_next_task(self):
127116
self.next_task = get_next_task_name(self.name, self.next_task) or ""

django_dbq/serializers.py

-29
This file was deleted.

0 commit comments

Comments
 (0)