This repository has been archived by the owner on Sep 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 39
/
db_sync.py
594 lines (491 loc) · 25.2 KB
/
db_sync.py
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
import json
import sys
import psycopg2
import psycopg2.extras
import inflection
import re
import uuid
import itertools
import time
from collections.abc import MutableMapping
from singer import get_logger
# pylint: disable=missing-function-docstring,missing-class-docstring
def validate_config(config):
errors = []
required_config_keys = [
'host',
'port',
'user',
'password',
'dbname'
]
# Check if mandatory keys exist
for k in required_config_keys:
if not config.get(k, None):
errors.append("Required key is missing from config: [{}]".format(k))
# Check target schema config
config_default_target_schema = config.get('default_target_schema', None)
config_schema_mapping = config.get('schema_mapping', None)
if not config_default_target_schema and not config_schema_mapping:
errors.append("Neither 'default_target_schema' (string) nor 'schema_mapping' (object) keys set in config.")
return errors
# pylint: disable=fixme
def column_type(schema_property):
property_type = schema_property['type']
property_format = schema_property['format'] if 'format' in schema_property else None
col_type = 'character varying'
if 'object' in property_type or 'array' in property_type:
col_type = 'jsonb'
# Every date-time JSON value is currently mapped to TIMESTAMP WITHOUT TIME ZONE
#
# TODO: Detect if timezone postfix exists in the JSON and find if TIMESTAMP WITHOUT TIME ZONE or
# TIMESTAMP WITH TIME ZONE is the better column type
elif property_format == 'date-time':
col_type = 'timestamp without time zone'
elif property_format == 'time':
col_type = 'time without time zone'
elif 'number' in property_type:
col_type = 'double precision'
elif 'integer' in property_type and 'string' in property_type:
col_type = 'character varying'
elif 'integer' in property_type:
if 'maximum' in schema_property:
if schema_property['maximum'] <= 32767:
col_type = 'smallint'
elif schema_property['maximum'] <= 2147483647:
col_type = 'integer'
elif schema_property['maximum'] <= 9223372036854775807:
col_type = 'bigint'
else:
col_type = 'numeric'
elif 'boolean' in property_type:
col_type = 'boolean'
get_logger('target_postgres').debug("schema_property: %s -> col_type: %s", schema_property, col_type)
return col_type
def safe_column_name(name):
return '"{}"'.format(name).lower()
def column_clause(name, schema_property):
return '{} {}'.format(safe_column_name(name), column_type(schema_property))
def flatten_key(k, parent_key, sep):
full_key = parent_key + [k]
inflected_key = full_key.copy()
reducer_index = 0
while len(sep.join(inflected_key)) >= 63 and reducer_index < len(inflected_key):
reduced_key = re.sub(r'[a-z]', '', inflection.camelize(inflected_key[reducer_index]))
inflected_key[reducer_index] = \
(reduced_key if len(reduced_key) > 1 else inflected_key[reducer_index][0:3]).lower()
reducer_index += 1
return sep.join(inflected_key)
# pylint: disable=dangerous-default-value,invalid-name
def flatten_schema(d, parent_key=[], sep='__', level=0, max_level=0):
items = []
if 'properties' not in d:
return {}
for k, v in d['properties'].items():
new_key = flatten_key(k, parent_key, sep)
if 'type' in v.keys():
if 'object' in v['type'] and 'properties' in v and level < max_level:
items.extend(flatten_schema(v, parent_key + [k], sep=sep, level=level + 1, max_level=max_level).items())
else:
items.append((new_key, v))
else:
if len(v.values()) > 0:
if list(v.values())[0][0]['type'] == 'string':
list(v.values())[0][0]['type'] = ['null', 'string']
items.append((new_key, list(v.values())[0][0]))
elif list(v.values())[0][0]['type'] == 'array':
list(v.values())[0][0]['type'] = ['null', 'array']
items.append((new_key, list(v.values())[0][0]))
elif list(v.values())[0][0]['type'] == 'object':
list(v.values())[0][0]['type'] = ['null', 'object']
items.append((new_key, list(v.values())[0][0]))
key_func = lambda item: item[0]
sorted_items = sorted(items, key=key_func)
for k, g in itertools.groupby(sorted_items, key=key_func):
if len(list(g)) > 1:
raise ValueError('Duplicate column name produced in schema: {}'.format(k))
return dict(sorted_items)
# pylint: disable=redefined-outer-name
def _should_json_dump_value(key, value, flatten_schema=None):
if isinstance(value, (dict, list)):
return True
if flatten_schema and key in flatten_schema and 'type' in flatten_schema[key]\
and set(flatten_schema[key]['type']) == {'null', 'object', 'array'}:
return True
return False
# pylint: disable-msg=too-many-arguments
def flatten_record(d, flatten_schema=None, parent_key=[], sep='__', level=0, max_level=0):
items = []
for k, v in d.items():
new_key = flatten_key(k, parent_key, sep)
if isinstance(v, MutableMapping) and level < max_level:
items.extend(flatten_record(v, flatten_schema, parent_key + [k], sep=sep, level=level + 1,
max_level=max_level).items())
else:
items.append((new_key, json.dumps(v) if _should_json_dump_value(k, v, flatten_schema) else v))
return dict(items)
def primary_column_names(stream_schema_message):
return [safe_column_name(p) for p in stream_schema_message['key_properties']]
def stream_name_to_dict(stream_name, separator='-'):
catalog_name = None
schema_name = None
table_name = stream_name
# Schema and table name can be derived from stream if it's in <schema_nama>-<table_name> format
s = stream_name.split(separator)
if len(s) == 2:
schema_name = s[0]
table_name = s[1]
if len(s) > 2:
catalog_name = s[0]
schema_name = s[1]
table_name = '_'.join(s[2:])
return {
'catalog_name': catalog_name,
'schema_name': schema_name,
'table_name': table_name
}
# pylint: disable=too-many-public-methods,too-many-instance-attributes
class DbSync:
def __init__(self, connection_config, stream_schema_message=None):
"""
connection_config: Postgres connection details
stream_schema_message: An instance of the DbSync class is typically used to load
data only from a certain singer tap stream.
The stream_schema_message holds the destination schema
name and the JSON schema that will be used to
validate every RECORDS messages that comes from the stream.
Schema validation happening before creating CSV and before
uploading data into Postgres.
If stream_schema_message is not defined then we can use
the DbSync instance as a generic purpose connection to
Postgres and can run individual queries. For example
collecting catalog information from Postgres for caching
purposes.
"""
self.connection_config = connection_config
self.stream_schema_message = stream_schema_message
# logger to be used across the class's methods
self.logger = get_logger('target_postgres')
# Validate connection configuration
config_errors = validate_config(connection_config)
# Exit if config has errors
if len(config_errors) > 0:
self.logger.error("Invalid configuration:\n * %s", '\n * '.join(config_errors))
sys.exit(1)
self.schema_name = None
self.grantees = None
# Init stream schema
if stream_schema_message is not None:
# Define initial list of indices to created
self.hard_delete = self.connection_config.get('hard_delete')
if self.hard_delete:
self.indices = ['_sdc_deleted_at']
else:
self.indices = []
# Define target schema name.
# --------------------------
# Target schema name can be defined in multiple ways:
#
# 1: 'default_target_schema' key : Target schema is the same for every incoming stream if
# not specified explicitly for a given stream in the `schema_mapping` object
# 2: 'schema_mapping' key : Target schema defined explicitly for a given stream.
# Example config.json:
# "schema_mapping": {
# "my_tap_stream_id": {
# "target_schema": "my_postgres_schema",
# "target_schema_select_permissions": [ "role_with_select_privs" ],
# "indices": ["column_1", "column_2s"]
# }
# }
config_default_target_schema = self.connection_config.get('default_target_schema', '').strip()
config_schema_mapping = self.connection_config.get('schema_mapping', {})
stream_name = stream_schema_message['stream']
stream_schema_name = stream_name_to_dict(stream_name)['schema_name']
stream_table_name = stream_name_to_dict(stream_name)['table_name']
if config_schema_mapping and stream_schema_name in config_schema_mapping:
self.schema_name = config_schema_mapping[stream_schema_name].get('target_schema')
# Get indices to create for the target table
indices = config_schema_mapping[stream_schema_name].get('indices', {})
if stream_table_name in indices:
self.indices.extend(indices.get(stream_table_name, []))
elif config_default_target_schema:
self.schema_name = config_default_target_schema
if not self.schema_name:
raise Exception("Target schema name not defined in config. Neither 'default_target_schema' (string)"
"nor 'schema_mapping' (object) defines target schema for {} stream."
.format(stream_name))
# Define grantees
# ---------------
# Grantees can be defined in multiple ways:
#
# 1: 'default_target_schema_select_permissions' key : USAGE and SELECT privileges will be granted on
# every table to a given role for every incoming stream if not specified explicitly in the
# `schema_mapping` object
# 2: 'target_schema_select_permissions' key : Roles to grant USAGE and SELECT privileges defined
# explicitly for a given stream.
# Example config.json:
# "schema_mapping": {
# "my_tap_stream_id": {
# "target_schema": "my_postgres_schema",
# "target_schema_select_permissions": [ "role_with_select_privs" ]
# }
# }
self.grantees = self.connection_config.get('default_target_schema_select_permissions')
if config_schema_mapping and stream_schema_name in config_schema_mapping:
self.grantees = config_schema_mapping[stream_schema_name].get('target_schema_select_permissions',
self.grantees)
self.data_flattening_max_level = self.connection_config.get('data_flattening_max_level', 0)
self.flatten_schema = flatten_schema(stream_schema_message['schema'],
max_level=self.data_flattening_max_level)
def open_connection(self):
conn_string = "host='{}' dbname='{}' user='{}' password='{}' port='{}'".format(
self.connection_config['host'],
self.connection_config['dbname'],
self.connection_config['user'],
self.connection_config['password'],
self.connection_config['port']
)
if 'ssl' in self.connection_config and self.connection_config['ssl'] == 'true':
conn_string += " sslmode='require'"
return psycopg2.connect(conn_string)
def query(self, query, params=None):
self.logger.debug("Running query: %s", query)
with self.open_connection() as connection:
with connection.cursor(cursor_factory=psycopg2.extras.DictCursor) as cur:
cur.execute(
query,
params
)
if cur.rowcount > 0:
return cur.fetchall()
return []
def table_name(self, stream_name, is_temporary=False, without_schema=False):
stream_dict = stream_name_to_dict(stream_name)
table_name = stream_dict['table_name']
pg_table_name = table_name.replace('.', '_').replace('-', '_').lower()
if is_temporary:
return 'tmp_{}'.format(str(uuid.uuid4()).replace('-', '_'))
if without_schema:
return f'"{pg_table_name.lower()}"'
return f'{self.schema_name}."{pg_table_name.lower()}"'
def record_primary_key_string(self, record):
if len(self.stream_schema_message['key_properties']) == 0:
return None
flatten = flatten_record(record, self.flatten_schema, max_level=self.data_flattening_max_level)
try:
key_props = [str(flatten[p]) for p in self.stream_schema_message['key_properties']]
except Exception as exc:
self.logger.info("Cannot find %s primary key(s) in record: %s",
self.stream_schema_message['key_properties'],
flatten)
raise exc
return ','.join(key_props)
def record_to_csv_line(self, record):
flatten = flatten_record(record, self.flatten_schema, max_level=self.data_flattening_max_level)
return ','.join(
[
json.dumps(flatten[name], ensure_ascii=False)
if name in flatten and (flatten[name] == 0 or flatten[name]) else ''
for name in self.flatten_schema
]
)
def load_csv(self, file, count, size_bytes):
stream_schema_message = self.stream_schema_message
stream = stream_schema_message['stream']
self.logger.info("Loading %d rows into '%s'", count, self.table_name(stream, False))
with self.open_connection() as connection:
with connection.cursor(cursor_factory=psycopg2.extras.DictCursor) as cur:
inserts = 0
updates = 0
temp_table = self.table_name(stream_schema_message['stream'], is_temporary=True)
cur.execute(self.create_table_query(table_name=temp_table, is_temporary=True))
copy_sql = "COPY {} ({}) FROM STDIN WITH (FORMAT CSV, ESCAPE '\\')".format(
temp_table,
', '.join(self.column_names())
)
self.logger.debug(copy_sql)
with open(file, "rb") as f:
cur.copy_expert(copy_sql, f)
if len(self.stream_schema_message['key_properties']) > 0:
cur.execute(self.update_from_temp_table(temp_table))
updates = cur.rowcount
cur.execute(self.insert_from_temp_table(temp_table))
inserts = cur.rowcount
self.logger.info('Loading into %s: %s',
self.table_name(stream, False),
json.dumps({'inserts': inserts, 'updates': updates, 'size_bytes': size_bytes}))
# pylint: disable=duplicate-string-formatting-argument
def insert_from_temp_table(self, temp_table):
stream_schema_message = self.stream_schema_message
columns = self.column_names()
table = self.table_name(stream_schema_message['stream'])
if len(stream_schema_message['key_properties']) == 0:
return """INSERT INTO {} ({})
(SELECT s.* FROM {} s)
""".format(table,
', '.join(columns),
temp_table)
return """INSERT INTO {} ({})
(SELECT s.* FROM {} s LEFT OUTER JOIN {} t ON {} WHERE {})
""".format(table,
', '.join(columns),
temp_table,
table,
self.primary_key_condition('t'),
self.primary_key_null_condition('t'))
def update_from_temp_table(self, temp_table):
stream_schema_message = self.stream_schema_message
columns = self.column_names()
table = self.table_name(stream_schema_message['stream'])
return """UPDATE {} SET {} FROM {} s
WHERE {}
""".format(table,
', '.join(['{}=s.{}'.format(c, c) for c in columns]),
temp_table,
self.primary_key_condition(table))
def primary_key_condition(self, right_table):
stream_schema_message = self.stream_schema_message
names = primary_column_names(stream_schema_message)
return ' AND '.join(['s.{} = {}.{}'.format(c, right_table, c) for c in names])
def primary_key_null_condition(self, right_table):
stream_schema_message = self.stream_schema_message
names = primary_column_names(stream_schema_message)
return ' AND '.join(['{}.{} is null'.format(right_table, c) for c in names])
def column_names(self):
return [safe_column_name(name) for name in self.flatten_schema]
def create_table_query(self, table_name=None, is_temporary=False):
stream_schema_message = self.stream_schema_message
columns = [
column_clause(
name,
schema
)
for (name, schema) in self.flatten_schema.items()
]
primary_key = ["PRIMARY KEY ({})".format(', '.join(primary_column_names(stream_schema_message)))] \
if len(stream_schema_message['key_properties']) > 0 else []
if not table_name:
gen_table_name = self.table_name(stream_schema_message['stream'], is_temporary=is_temporary)
return 'CREATE {}TABLE IF NOT EXISTS {} ({})'.format(
'TEMP ' if is_temporary else '',
table_name if table_name else gen_table_name,
', '.join(columns + primary_key)
)
def grant_usage_on_schema(self, schema_name, grantee):
query = "GRANT USAGE ON SCHEMA {} TO GROUP {}".format(schema_name, grantee)
self.logger.info("Granting USAGE privilege on '%s' schema to '%s'... %s", schema_name, grantee, query)
self.query(query)
def grant_select_on_all_tables_in_schema(self, schema_name, grantee):
query = "GRANT SELECT ON ALL TABLES IN SCHEMA {} TO GROUP {}".format(schema_name, grantee)
self.logger.info("Granting SELECT ON ALL TABLES privilege on '%s' schema to '%s'... %s",
schema_name,
grantee,
query)
self.query(query)
@classmethod
def grant_privilege(cls, schema, grantees, grant_method):
if isinstance(grantees, list):
for grantee in grantees:
grant_method(schema, grantee)
elif isinstance(grantees, str):
grant_method(schema, grantees)
def create_index(self, stream, column):
table = self.table_name(stream)
table_without_schema = self.table_name(stream, without_schema=True)
index_name = 'i_{}_{}'.format(table_without_schema[:30].replace(' ', '').replace('"', ''),
column.replace(',', '_'))
query = "CREATE INDEX IF NOT EXISTS {} ON {} ({})".format(index_name, table, column)
self.logger.info("Creating index on '%s' table on '%s' column(s)... %s", table, column, query)
self.query(query)
def create_indices(self, stream):
if isinstance(self.indices, list):
for index in self.indices:
self.create_index(stream, index)
def delete_rows(self, stream):
table = self.table_name(stream)
query = "DELETE FROM {} WHERE _sdc_deleted_at IS NOT NULL RETURNING _sdc_deleted_at".format(table)
self.logger.info("Deleting rows from '%s' table... %s", table, query)
self.logger.info("DELETE %s", len(self.query(query)))
def create_schema_if_not_exists(self, table_columns_cache=None):
schema_name = self.schema_name
schema_rows = 0
# table_columns_cache is an optional pre-collected list of available objects in postgres
if table_columns_cache:
schema_rows = list(filter(lambda x: x['TABLE_SCHEMA'] == schema_name, table_columns_cache))
# Query realtime if not pre-collected
else:
schema_rows = self.query(
'SELECT LOWER(schema_name) schema_name FROM information_schema.schemata WHERE LOWER(schema_name) = %s',
(schema_name.lower(),)
)
if len(schema_rows) == 0:
query = "CREATE SCHEMA IF NOT EXISTS {}".format(schema_name)
self.logger.info("Schema '%s' does not exist. Creating... %s", schema_name, query)
self.query(query)
self.grant_privilege(schema_name, self.grantees, self.grant_usage_on_schema)
def get_tables(self):
return self.query(
'SELECT table_name FROM information_schema.tables WHERE table_schema = %s',
(self.schema_name,)
)
def get_table_columns(self, table_name):
return self.query("""SELECT column_name, data_type
FROM information_schema.columns
WHERE lower(table_name) = %s AND lower(table_schema) = %s""", (table_name.replace("\"", "").lower(),
self.schema_name.lower()))
def update_columns(self):
stream_schema_message = self.stream_schema_message
stream = stream_schema_message['stream']
table_name = self.table_name(stream, without_schema=True)
columns = self.get_table_columns(table_name)
columns_dict = {column['column_name'].lower(): column for column in columns}
columns_to_add = [
column_clause(
name,
properties_schema
)
for (name, properties_schema) in self.flatten_schema.items()
if name.lower() not in columns_dict
]
for column in columns_to_add:
self.add_column(column, stream)
columns_to_replace = [
(safe_column_name(name), column_clause(
name,
properties_schema
))
for (name, properties_schema) in self.flatten_schema.items()
if name.lower() in columns_dict and
columns_dict[name.lower()]['data_type'].lower() != column_type(properties_schema).lower()
]
for (column_name, column) in columns_to_replace:
self.version_column(column_name, stream)
self.add_column(column, stream)
def drop_column(self, column_name, stream):
drop_column = "ALTER TABLE {} DROP COLUMN {}".format(self.table_name(stream), column_name)
self.logger.info('Dropping column: %s', drop_column)
self.query(drop_column)
def version_column(self, column_name, stream):
version_column = "ALTER TABLE {} RENAME COLUMN {} TO \"{}_{}\"".format(self.table_name(stream, False),
column_name,
column_name.replace("\"", ""),
time.strftime("%Y%m%d_%H%M"))
self.logger.info('Versioning column: %s', version_column)
self.query(version_column)
def add_column(self, column, stream):
add_column = "ALTER TABLE {} ADD COLUMN {}".format(self.table_name(stream), column)
self.logger.info('Adding column: %s', add_column)
self.query(add_column)
def sync_table(self):
stream_schema_message = self.stream_schema_message
stream = stream_schema_message['stream']
table_name = self.table_name(stream, without_schema=True)
found_tables = [table for table in (self.get_tables()) if f'"{table["table_name"].lower()}"' == table_name]
if len(found_tables) == 0:
query = self.create_table_query()
self.logger.info("Table '%s' does not exist. Creating... %s", table_name, query)
self.query(query)
self.grant_privilege(self.schema_name, self.grantees, self.grant_select_on_all_tables_in_schema)
else:
self.logger.info("Table '%s' exists", table_name)
self.update_columns()