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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
#!/usr/bin/python3
import asyncio
import asyncpg
import json
class JobQueue(object):
def __init__(self):
self._pool = None
async def connect(self, **args):
"""Connect the database."""
self._pool = await asyncpg.create_pool(**args)
async def setup(self):
"""Initialize the database."""
async with self._pool.acquire() as con:
await con.execute("""
CREATE TABLE IF NOT EXISTS
jobs (
id SERIAL,
priority INT DEFAULT 0,
status TEXT DEFAULT 'open',
type TEXT,
payload JSONB
)
""")
async def request(self, jobtype, payload, priority=0):
"""Create a new job and return its id."""
async with self._pool.acquire() as con:
return await con.fetchval("""
INSERT INTO jobs(type, payload, priority)
VALUES($1, $2, $3)
RETURNING id
""", jobtype, json.dumps(payload), priority)
async def acquire(self, jobtype):
"""Mark a job as running, return id, payload and priority.
Return (None, None, None) if no job is available."""
async with self._pool.acquire() as con:
while True:
try:
# do not allow async access
async with con.transaction(isolation="serializable"):
result = await con.fetchrow("""
SELECT id, payload, priority
FROM jobs WHERE
type=$1 AND status='open'
ORDER BY priority DESC
""", jobtype)
if result is None:
# no jobs available
return None, None, None
jobid, payload, priority = result
await con.execute("""
UPDATE jobs
SET status='running'
WHERE id=$1
""", jobid)
return jobid, json.loads(payload), priority
except asyncpg.exceptions.SerializationError:
# job is being picked up by another worker, try again
pass
async def status(self, jobid):
"""Return the status of a job."""
async with self._pool.acquire() as con:
return await con.fetchval("""
SELECT status
FROM jobs WHERE
id=$1
""", jobid)
async def finish(self, jobid):
"""Mark a job as completed."""
async with self._pool.acquire() as con:
while True:
try:
async with con.transaction(isolation="serializable"):
await con.execute("""
UPDATE jobs
SET status='finished'
WHERE id=$1
""", jobid)
return
except asyncpg.exceptions.SerializationError:
pass
async def fail(self, jobid, reason):
"""Mark a job as failed."""
async with self._pool.acquire() as con:
while True:
try:
async with con.transaction(isolation="serializable"):
await con.execute("""
UPDATE jobs
SET status='failed', payload=payload||$2::jsonb
WHERE id=$1
""", jobid, json.dumps({"error": reason}))
return
except asyncpg.exceptions.SerializationError:
pass
async def cleanup(self):
"""Reopen all unfinished jobs."""
async with self._pool.acquire() as con:
while True:
try:
async with con.transaction(isolation="serializable"):
await con.execute("""
UPDATE jobs
SET status='open'
WHERE status='running'
""")
return
except asyncpg.exceptions.SerializationError:
pass
|