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
|
#!/usr/bin/python3
import asyncio
import os
import glob
import logging
import json
import asyncpg
import joblib.worker
queue_db = {
"host": os.environ.get("POSTGRESQL_SOURCE_HOST") or "vaindock_postgres_raw",
"port": os.environ.get("POSTGRESQL_SOURCE_PORT") or 5532,
"user": os.environ.get("POSTGRESQL_SOURCE_USER") or "vainraw",
"password": os.environ.get("POSTGRESQL_SOURCE_PASSWORD") or "vainraw",
"database": os.environ.get("POSTGRESQL_SOURCE_DB") or "vainsocial-raw"
}
db_config = {
"host": os.environ.get("POSTGRESQL_DEST_HOST") or "vaindock_postgres_web",
"port": os.environ.get("POSTGRESQL_DEST_PORT") or 5432,
"user": os.environ.get("POSTGRESQL_DEST_USER") or "vainweb",
"password": os.environ.get("POSTGRESQL_DEST_PASSWORD") or "vainweb",
"database": os.environ.get("POSTGRESQL_DEST_DB") or "vainsocial-web"
}
class Compiler(joblib.worker.Worker):
def __init__(self):
self._con = None
self._queries = {}
super().__init__(jobtype="compile")
async def connect(self, dbconf, queuedb):
"""Connect to database."""
logging.warning("connecting to database")
await super().connect(**queuedb)
self._con = await asyncpg.connect(**dbconf)
async def setup(self):
"""Initialize the database."""
scriptroot = os.path.realpath(
os.path.join(os.getcwd(), os.path.dirname(__file__)))
for path in glob.glob(scriptroot + "/queries/*/*.sql"):
# utf-8-sig is used by pgadmin, doesn't hurt to specify
# directory names: web target table
table = os.path.basename(os.path.dirname(path))
with open(path, "r", encoding="utf-8-sig") as file:
try:
self._queries[table].append(file.read())
except KeyError:
self._queries[table] = [file.read()]
logging.info("loaded query '%s'", table)
async def _windup(self):
self._tr = self._con.transaction()
await self._tr.start()
async def _teardown(self, failed):
if failed:
await self._tr.rollback()
else:
await self._tr.commit()
async def _execute_job(self, jobid, payload, priority):
"""Finish a job."""
object_id = payload["id"]
table = payload["type"]
if table not in self._queries:
return
logging.debug("%s: compiling '%s' from '%s'",
jobid, object_id, table)
tasks = []
for query in self._queries[table]:
tasks.append(asyncio.ensure_future(
self._con.execute(query, object_id)))
await asyncio.gather(*tasks)
async def startup():
worker = Compiler()
await worker.connect(db_config, queue_db)
await worker.setup()
await worker.run(batchlimit=1000)
logging.basicConfig(level=logging.DEBUG)
loop = asyncio.get_event_loop()
loop.run_until_complete(startup())
|