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
|
#!/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."""
async with self._pool.acquire() as con:
await con.execute("""
INSERT INTO jobs(type, payload, priority)
VALUES($1, $2, $3)
""", jobtype, json.dumps(payload), priority)
async def acquire(self, jobtype):
"""Mark a job as running, return payload and return id.
Return (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
FROM jobs WHERE
type=$1 AND status='open'
ORDER BY priority DESC
""", jobtype)
if result is None:
# no jobs available
return None, None
jobid, payload = result
await con.execute("""
UPDATE jobs
SET status='running'
WHERE id=$1
""", jobid)
return jobid, json.loads(payload)
except asyncpg.exceptions.SerializationError:
# job is being picked up by another worker, try again
pass
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 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
|