-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsnapshot_v2_test.py
1820 lines (1684 loc) · 80.4 KB
/
snapshot_v2_test.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
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
from snowflake.connector import DictCursor, ProgrammingError
import logging
from util import run_and_fetchall, run, run_and_fetchall_own_connection, run_own_connection
from test_unique_compound_key import test_unique_compound_key
from snapshot_v2 import snapshot, create_scd_table, prep_batch, snapshot_partition, deploy_batch, clean_up_batch
def _is_okay_valid_date_sequence(rows, do_zombie_check):
rows = sorted(rows, key=lambda x: x['_scd_valid_from_timestamp'])
if not len(rows):
return True
last_row = rows.pop(0)
while rows:
current_row = rows.pop(0)
if last_row['_scd_valid_to_timestamp'] is None:
if not do_zombie_check:
if last_row['_scd_deleted_timestamp'] is None:
return False
else:
return False
else:
if current_row['_scd_valid_from_timestamp'] < last_row['_scd_valid_to_timestamp']:
return False # no overlaps
if current_row['_scd_valid_from_timestamp'] > last_row['_scd_valid_to_timestamp']:
return False # no gaps, either
last_row = current_row
return True
def _is_okay_rows_are_different(rows):
rows = sorted(rows, key=lambda x: x['_scd_valid_from_timestamp'])
if not len(rows):
return True
cols_to_compare = frozenset(rows[0].keys()) - frozenset(['_scd_valid_from_timestamp', '_scd_valid_to_timestamp', '_scd_is_most_recent', '_scd_id',
'_scd_normalised_key', '_scd_deleted_timestamp', '_scd_created_timestamp', '_scd_last_modified_timestamp',
'_scd_created_by', '_scd_last_modified_by', '_scd_last_dml_action'])
last_row = rows.pop(0)
while rows:
current_row = rows.pop(0)
if all([current_row[col] == last_row[col] for col in cols_to_compare]) and last_row['_scd_deleted_timestamp'] is None:
return False
last_row = current_row
return True
def _is_okay_invariants_scd_table(rows, do_zombie_check=True):
"""Stuff that always has to hold, looking at the scd table alone. These are candidates for DBT tests on real data as well, although then, they might take a while to run."""
is_scd_id_unique = (len(frozenset([row['_scd_id'] for row in rows])) == len(rows))
if not is_scd_id_unique:
return False
is_most_recent_agrees_with_valid_to = all([
(row['_scd_is_most_recent'] and row['_scd_valid_to_timestamp'] is None) \
or \
(not row['_scd_is_most_recent'] and row['_scd_valid_to_timestamp'] is not None) for row in rows
])
if not is_most_recent_agrees_with_valid_to:
return False
most_recent_rows = [row for row in rows if row['_scd_is_most_recent']]
if not do_zombie_check:
most_recent_rows = [row for row in most_recent_rows if row['_scd_deleted_timestamp'] is None]
is_normalised_key_unique_in_most_recent_rows = (len(frozenset([row['_scd_normalised_key'] for row in most_recent_rows])) == len(most_recent_rows))
if not is_normalised_key_unique_in_most_recent_rows:
return False
is_all_non_null_valid_from = not any([row['_scd_valid_from_timestamp'] is None for row in rows])
if not is_all_non_null_valid_from:
return False
normalised_keys = frozenset([row['_scd_normalised_key'] for row in rows])
is_okay_valid_date_sequences = all([_is_okay_valid_date_sequence([row for row in rows if row['_scd_normalised_key'] == key], do_zombie_check) for key in normalised_keys])
if not is_okay_valid_date_sequences:
return False
is_okay_rows_are_different = all([_is_okay_rows_are_different([row for row in rows if row['_scd_normalised_key'] == key]) for key in normalised_keys])
if not is_okay_valid_date_sequences:
return False
is_deleted_always_later_than_valid_from = all([row['_scd_deleted_timestamp'] is None or row['_scd_deleted_timestamp'] > row['_scd_valid_from_timestamp'] for row in rows])
if not is_deleted_always_later_than_valid_from:
print('deleted from not later than valid_from')
return False
is_valid_to_always_later_than_valid_from = all([row['_scd_valid_to_timestamp'] is None or row['_scd_valid_to_timestamp'] > row['_scd_valid_from_timestamp'] for row in rows])
if not is_valid_to_always_later_than_valid_from:
print('valid_to not later than valid from')
return False
return True
def create_tables(get_conn_callback, database, schema, ts_nodash_col, non_ts_nodash_columns, partition_columns=None):
drop_tables(get_conn_callback, database, schema) # in case previous test exited with error before cleaning up;
columns_str = '\n , '.join([f'{col} {type_}' for col, type_ in non_ts_nodash_columns.items()])
conn = get_conn_callback()
run(conn, 'USE DATABASE IDENTIFIER(%(database)s);', params={'database': database})
run(conn, 'USE SCHEMA IDENTIFIER(%(schema)s);', params={'schema': schema})
# Create input table
run(conn, f"""
CREATE OR REPLACE TABLE tmp_in (
{ts_nodash_col} VARCHAR NOT NULL
, {columns_str}
, _extracted_timestamp TIMESTAMP_NTZ NOT NULL DEFAULT SYSDATE() -- just here to test that it won't be used by any of the functions
)
;""")
conn.close()
column_types = [(col, type_) for col, type_ in non_ts_nodash_columns.items()] + [(ts_nodash_col, 'VARCHAR NOT NULL')]
scd_table = f'{database}.{schema}.tmp_scd'
batch_metadata_table = f'{database}.{schema}.tmp_batch_metadata'
create_scd_table(get_conn_callback, column_types, ts_nodash_col, scd_table, batch_metadata_table, partition_columns=partition_columns) # does a create if not exists
def drop_tables(get_conn_callback, database, schema):
conn = get_conn_callback()
run(conn, 'USE DATABASE IDENTIFIER(%(database)s);', params={'database': database})
run(conn, 'USE SCHEMA IDENTIFIER(%(schema)s);', params={'schema': schema})
# Drop input table
run(conn, f"""
DROP TABLE IF EXISTS tmp_in
;
""")
# Drop target SCD table
run(conn, f"""
DROP TABLE IF EXISTS tmp_scd
;
""")
# Drop target batch metadata table
run(conn, f"""
DROP TABLE IF EXISTS tmp_batch_metadata
;
""")
conn.close()
def is_scenario_1_success(database, schema, get_conn_callback) -> bool:
create_tables(get_conn_callback, database, schema, 't', {'x': 'INT', 'y': 'INT'})
run_own_connection(get_conn_callback, f"INSERT INTO {database}.{schema}.tmp_in (t, x, y) VALUES ('20210609T050000', 1, 2), ('20210609T050000', 2, 1);")
snapshot(
get_conn_callback,
f'{database}.{schema}',
'tmp_in',
f'{database}.{schema}.tmp_in',
f'{database}.{schema}.tmp_scd',
f'{database}.{schema}.tmp_batch_metadata',
'txy',
'xy',
't',
'20210609T050000'
)
rows = run_and_fetchall_own_connection(get_conn_callback, f'SELECT * FROM {database}.{schema}.tmp_scd')
drop_tables(get_conn_callback, database, schema)
print(rows)
is_two_rows = (len(rows) == 2)
is_most_recent_always_true = all([row['_scd_is_most_recent'] for row in rows])
return _is_okay_invariants_scd_table(rows) and is_two_rows and is_most_recent_always_true
def is_scenario_2_success(database, schema, get_conn_callback) -> bool:
create_tables(get_conn_callback, database, schema, 't', {'x': 'INT', 'y': 'INT'})
# introduce a duplicate row in the source table; only during the second step, where the changes are staged, will it be deduplicated.
run_own_connection(get_conn_callback, f"INSERT INTO {database}.{schema}.tmp_in (t, x, y) VALUES ('20210609T050000', 1, 2), ('20210609T050000', 2, 1), ('20210609T050000', 2, 1);")
snapshot(
get_conn_callback,
f'{database}.{schema}',
'tmp_in',
f'{database}.{schema}.tmp_in',
f'{database}.{schema}.tmp_scd',
f'{database}.{schema}.tmp_batch_metadata',
'txy',
'xy',
't',
'20210609T050000',
fail_on_duplicates=False
)
rows = run_and_fetchall_own_connection(get_conn_callback, f'SELECT * FROM {database}.{schema}.tmp_scd')
drop_tables(get_conn_callback, database, schema)
print(rows)
is_two_rows = (len(rows) == 2)
is_most_recent_always_true = all([row['_scd_is_most_recent'] for row in rows])
return _is_okay_invariants_scd_table(rows) and is_two_rows and is_most_recent_always_true
def is_scenario_3_success(database, schema, get_conn_callback) -> bool:
create_tables(get_conn_callback, database, schema, 't', {'x': 'INT', 'y': 'INT'}, partition_columns=('x',))
run_own_connection(get_conn_callback, f"INSERT INTO {database}.{schema}.tmp_in (t, x, y) VALUES ('20210609T050000', 1, 1), ('20210609T050000', 1, 2), ('20210609T050000', 2, 1);")
# use partitions
snapshot(
get_conn_callback,
f'{database}.{schema}',
'tmp_in',
f'{database}.{schema}.tmp_in',
f'{database}.{schema}.tmp_scd',
f'{database}.{schema}.tmp_batch_metadata',
'txy',
'xy',
't',
'20210609T050000',
partitions=({'x': 1},)
)
rows = run_and_fetchall_own_connection(get_conn_callback, f'SELECT * FROM {database}.{schema}.tmp_scd')
drop_tables(get_conn_callback, database, schema)
print(rows)
is_two_rows = (len(rows) == 2)
is_most_recent_always_true = all([row['_scd_is_most_recent'] for row in rows])
return _is_okay_invariants_scd_table(rows) and is_two_rows and is_most_recent_always_true
def is_scenario_4_success(database, schema, get_conn_callback) -> bool:
create_tables(get_conn_callback, database, schema, 't', {'x': 'INT', 'y': 'INT'})
run_own_connection(get_conn_callback, f"INSERT INTO {database}.{schema}.tmp_in (t, x, y) VALUES ('20210609T050000', 1, 2), ('20210609T050000', 2, 1);")
# use a column with values (y) that is not part of a unique key
snapshot(
get_conn_callback,
f'{database}.{schema}',
'tmp_in',
f'{database}.{schema}.tmp_in',
f'{database}.{schema}.tmp_scd',
f'{database}.{schema}.tmp_batch_metadata',
'txy',
'x',
't',
'20210609T050000'
)
rows = run_and_fetchall_own_connection(get_conn_callback, f'SELECT * FROM {database}.{schema}.tmp_scd')
drop_tables(get_conn_callback, database, schema)
print(rows)
is_two_rows = (len(rows) == 2)
is_most_recent_always_true = all([row['_scd_is_most_recent'] for row in rows])
return _is_okay_invariants_scd_table(rows) and is_two_rows and is_most_recent_always_true
def is_scenario_5_success(database, schema, get_conn_callback) -> bool:
create_tables(get_conn_callback, database, schema, 't', {'x': 'INT', 'y': 'INT'})
# now in this table there are two batches worth of data
run_own_connection(get_conn_callback, f"INSERT INTO {database}.{schema}.tmp_in (t, x, y) VALUES ('20210609T050000', 1, 2), ('20210609T050000', 2, 1), "
"('20210614T050000', 1, 1), ('20210614T050000', 2, 1);")
snapshot(
get_conn_callback,
f'{database}.{schema}',
'tmp_in',
f'{database}.{schema}.tmp_in',
f'{database}.{schema}.tmp_scd',
f'{database}.{schema}.tmp_batch_metadata',
'txy',
'x',
't',
'20210609T050000'
)
# a second round to stage the second batch
snapshot(
get_conn_callback,
f'{database}.{schema}',
'tmp_in',
f'{database}.{schema}.tmp_in',
f'{database}.{schema}.tmp_scd',
f'{database}.{schema}.tmp_batch_metadata',
'txy',
'x',
't',
'20210614T050000'
)
rows = run_and_fetchall_own_connection(get_conn_callback, f'SELECT * FROM {database}.{schema}.tmp_scd')
drop_tables(get_conn_callback, database, schema)
print(rows)
is_three_rows = (len(rows) == 3)
is_most_recent_not_always_true = not all([row['_scd_is_most_recent'] for row in rows])
return _is_okay_invariants_scd_table(rows) and is_three_rows and is_most_recent_not_always_true
def is_scenario_6_success(database, schema, get_conn_callback) -> bool:
create_tables(get_conn_callback, database, schema, 't', {'x': 'INT', 'y': 'INT'})
# introduce a deletion in the second batch (remember, each batch is considered to be a full load)
run_own_connection(get_conn_callback, f"INSERT INTO {database}.{schema}.tmp_in (t, x, y) VALUES ('20210609T050000', 1, 2), ('20210609T050000', 2, 1), "
"('20210614T050000', 1, 1);")
snapshot(
get_conn_callback,
f'{database}.{schema}',
'tmp_in',
f'{database}.{schema}.tmp_in',
f'{database}.{schema}.tmp_scd',
f'{database}.{schema}.tmp_batch_metadata',
'txy',
'x',
't',
'20210609T050000'
)
# a second round to stage the second batch
snapshot(
get_conn_callback,
f'{database}.{schema}',
'tmp_in',
f'{database}.{schema}.tmp_in',
f'{database}.{schema}.tmp_scd',
f'{database}.{schema}.tmp_batch_metadata',
'txy',
'x',
't',
'20210614T050000'
)
rows = run_and_fetchall_own_connection(get_conn_callback, f'SELECT * FROM {database}.{schema}.tmp_scd')
drop_tables(get_conn_callback, database, schema)
print(rows)
is_three_rows = (len(rows) == 3)
is_most_recent_not_always_true = not all([row['_scd_is_most_recent'] for row in rows])
is_a_deleted_row_present = any([row['_scd_deleted_timestamp'] for row in rows])
return _is_okay_invariants_scd_table(rows) and is_three_rows and is_most_recent_not_always_true and is_a_deleted_row_present
def is_scenario_7_success(database, schema, get_conn_callback) -> bool:
create_tables(get_conn_callback, database, schema, 't', {'x': 'INT', 'y': 'INT'})
# introduce a deletion in the second batch (remember, each batch is considered to be a full load)
# then, in the third batch, re-introduce a previously deleted row, without altering any of the values
run_own_connection(get_conn_callback, f"INSERT INTO {database}.{schema}.tmp_in (t, x, y) VALUES ('20210609T050000', 1, 2), ('20210609T050000', 2, 1), "
"('20210614T050000', 1, 1), "
"('20210619T050000', 1, 1), ('20210619T050000', 2, 1);")
snapshot(
get_conn_callback,
f'{database}.{schema}',
'tmp_in',
f'{database}.{schema}.tmp_in',
f'{database}.{schema}.tmp_scd',
f'{database}.{schema}.tmp_batch_metadata',
'txy',
'x',
't',
'20210609T050000'
)
# a second round to stage the second batch
snapshot(
get_conn_callback,
f'{database}.{schema}',
'tmp_in',
f'{database}.{schema}.tmp_in',
f'{database}.{schema}.tmp_scd',
f'{database}.{schema}.tmp_batch_metadata',
'txy',
'x',
't',
'20210614T050000'
)
# a third round to stage the third batch
snapshot(
get_conn_callback,
f'{database}.{schema}',
'tmp_in',
f'{database}.{schema}.tmp_in',
f'{database}.{schema}.tmp_scd',
f'{database}.{schema}.tmp_batch_metadata',
'txy',
'x',
't',
'20210619T050000'
)
rows = run_and_fetchall_own_connection(get_conn_callback, f'SELECT * FROM {database}.{schema}.tmp_scd')
drop_tables(get_conn_callback, database, schema)
print(rows)
is_four_rows = (len(rows) == 4)
is_most_recent_not_always_true = not all([row['_scd_is_most_recent'] for row in rows])
is_a_deleted_row_present = any([row['_scd_deleted_timestamp'] for row in rows])
is_a_deleted_invalidated_row_present = any([row['_scd_deleted_timestamp'] and not row['_scd_is_most_recent'] for row in rows])
return _is_okay_invariants_scd_table(rows) and is_four_rows and is_most_recent_not_always_true and is_a_deleted_row_present and is_a_deleted_invalidated_row_present
def is_scenario_8_success(database, schema, get_conn_callback) -> bool:
create_tables(get_conn_callback, database, schema, 't', {'x': 'INT', 'y': 'INT'})
# introduce NULL values in the values (y) and make sure it is not seen as an update (NULL = NULL evaluates to NULL in SQL)
run_own_connection(get_conn_callback, f"INSERT INTO {database}.{schema}.tmp_in (t, x, y) VALUES ('20210609T050000', 1, NULL), ('20210614T050000', 1, NULL);")
snapshot(
get_conn_callback,
f'{database}.{schema}',
'tmp_in',
f'{database}.{schema}.tmp_in',
f'{database}.{schema}.tmp_scd',
f'{database}.{schema}.tmp_batch_metadata',
'txy',
'x',
't',
'20210609T050000'
)
# a second round to stage the second batch
snapshot(
get_conn_callback,
f'{database}.{schema}',
'tmp_in',
f'{database}.{schema}.tmp_in',
f'{database}.{schema}.tmp_scd',
f'{database}.{schema}.tmp_batch_metadata',
'txy',
'x',
't',
'20210614T050000'
)
rows = run_and_fetchall_own_connection(get_conn_callback, f'SELECT * FROM {database}.{schema}.tmp_scd')
drop_tables(get_conn_callback, database, schema)
print(rows)
is_one_row = (len(rows) == 1)
is_most_recent_always_true = all([row['_scd_is_most_recent'] for row in rows])
return _is_okay_invariants_scd_table(rows) and is_one_row and is_most_recent_always_true
def is_scenario_9_success(database, schema, get_conn_callback) -> bool:
create_tables(get_conn_callback, database, schema, 't', {'x': 'INT', 'y': 'INT'})
# introduce NULL values in the unique compound key (x) and make sure it is treated as an actual value
# (Sadly, in real life tables sometimes have no unique compound key, and we have to include columns that can be null in a "guessed" unique compound key in order to make
# rows unique in data observed so far.)
run_own_connection(get_conn_callback, f"INSERT INTO {database}.{schema}.tmp_in (t, x, y) VALUES ('20210609T050000', NULL, 1);")
snapshot(
get_conn_callback,
f'{database}.{schema}',
'tmp_in',
f'{database}.{schema}.tmp_in',
f'{database}.{schema}.tmp_scd',
f'{database}.{schema}.tmp_batch_metadata',
'txy',
'x',
't',
'20210609T050000'
)
rows = run_and_fetchall_own_connection(get_conn_callback, f'SELECT * FROM {database}.{schema}.tmp_scd')
drop_tables(get_conn_callback, database, schema)
print(rows)
is_one_row = (len(rows) == 1)
is_most_recent_always_true = all([row['_scd_is_most_recent'] for row in rows])
return _is_okay_invariants_scd_table(rows) and is_one_row and is_most_recent_always_true
def is_scenario_10_success(database, schema, get_conn_callback) -> bool:
create_tables(get_conn_callback, database, schema, 't', {'x': 'INT', 'y': 'INT'})
# introduce NULL values in the unique compound key (x) and make sure it is treated as an actual value
# (Sadly, in real life tables sometimes have no unique compound key, and we have to include columns that can be null in a "guessed" unique compound key in order to make
# rows unique in data observed so far.)
# Also, add multiple rows with the same NULL compound key, and check that they are deduplicated as a single _scd_normalised_key (with an arbitrary row selected)
run_own_connection(get_conn_callback, f"INSERT INTO {database}.{schema}.tmp_in (t, x, y) VALUES ('20210609T050000', NULL, 1), ('20210609T050000', NULL, 2);")
snapshot(
get_conn_callback,
f'{database}.{schema}',
'tmp_in',
f'{database}.{schema}.tmp_in',
f'{database}.{schema}.tmp_scd',
f'{database}.{schema}.tmp_batch_metadata',
'txy',
'x',
't',
'20210609T050000',
fail_on_duplicates=False
)
rows = run_and_fetchall_own_connection(get_conn_callback, f'SELECT * FROM {database}.{schema}.tmp_scd')
drop_tables(get_conn_callback, database, schema)
print(rows)
is_one_row = (len(rows) == 1)
is_most_recent_always_true = all([row['_scd_is_most_recent'] for row in rows])
return _is_okay_invariants_scd_table(rows) and is_one_row and is_most_recent_always_true
def is_scenario_11_success(database, schema, get_conn_callback) -> bool:
create_tables(get_conn_callback, database, schema, 't', {'x': 'INT', 'y': 'INT'})
# introduce NULL values in the unique compound key (x) and make sure it is treated as an actual value
# (Sadly, in real life tables sometimes have no unique compound key, and we have to include columns that can be null in a "guessed" unique compound key in order to make
# rows unique in data observed so far.)
# Also, check if we can update rows with a NULL value in a column in the compound key
run_own_connection(get_conn_callback, f"INSERT INTO {database}.{schema}.tmp_in (t, x, y) VALUES ('20210609T050000', NULL, 1), ('20210614T050000', NULL, 2);")
snapshot(
get_conn_callback,
f'{database}.{schema}',
'tmp_in',
f'{database}.{schema}.tmp_in',
f'{database}.{schema}.tmp_scd',
f'{database}.{schema}.tmp_batch_metadata',
'txy',
'x',
't',
'20210609T050000'
)
# a second round to stage the second batch
snapshot(
get_conn_callback,
f'{database}.{schema}',
'tmp_in',
f'{database}.{schema}.tmp_in',
f'{database}.{schema}.tmp_scd',
f'{database}.{schema}.tmp_batch_metadata',
'txy',
'x',
't',
'20210614T050000'
)
rows = run_and_fetchall_own_connection(get_conn_callback, f'SELECT * FROM {database}.{schema}.tmp_scd')
drop_tables(get_conn_callback, database, schema)
print(rows)
is_two_rows = (len(rows) == 2)
is_most_recent_not_always_true = not all([row['_scd_is_most_recent'] for row in rows])
return _is_okay_invariants_scd_table(rows) and is_two_rows and is_most_recent_not_always_true
def is_scenario_12_success(database, schema, get_conn_callback) -> bool:
create_tables(get_conn_callback, database, schema, 't', {'x': 'INT', 'y': 'INT'}, partition_columns=('x',))
# Check that partitions are handled okay, and that, if they are used, only rows in scd_table from those partitions will ever be marked for deletion
run_own_connection(get_conn_callback, f"INSERT INTO {database}.{schema}.tmp_in (t, x, y) VALUES ('20210609T050000', 1, 1), ('20210614T050000', 2, 2);")
snapshot(
get_conn_callback,
f'{database}.{schema}',
'tmp_in',
f'{database}.{schema}.tmp_in',
f'{database}.{schema}.tmp_scd',
f'{database}.{schema}.tmp_batch_metadata',
'txy',
'xy',
't',
'20210609T050000',
partitions=({'x': 1},)
)
# a second round to stage the second batch
snapshot(
get_conn_callback,
f'{database}.{schema}',
'tmp_in',
f'{database}.{schema}.tmp_in',
f'{database}.{schema}.tmp_scd',
f'{database}.{schema}.tmp_batch_metadata',
'txy',
'xy',
't',
'20210614T050000',
partitions=({'x': 2},)
)
rows = run_and_fetchall_own_connection(get_conn_callback, f'SELECT * FROM {database}.{schema}.tmp_scd')
drop_tables(get_conn_callback, database, schema)
print(rows)
is_two_rows = (len(rows) == 2)
is_most_recent_always_true = all([row['_scd_is_most_recent'] for row in rows])
is_deleted_always_none = all([row['_scd_deleted_timestamp'] is None for row in rows])
return _is_okay_invariants_scd_table(rows) and is_two_rows and is_most_recent_always_true and is_deleted_always_none
def is_scenario_13_success(database, schema, get_conn_callback) -> bool:
create_tables(get_conn_callback, database, schema, 't', {'x': 'INT', 'y': 'INT'}, partition_columns=('x', 'y'))
run_own_connection(get_conn_callback, f"INSERT INTO {database}.{schema}.tmp_in (t, x, y) VALUES ('20210609T050000', 1, 2), ('20210609T050000', 3, 4), ('20210614T050000', 1, 2);")
snapshot(
get_conn_callback,
f'{database}.{schema}',
'tmp_in',
f'{database}.{schema}.tmp_in',
f'{database}.{schema}.tmp_scd',
f'{database}.{schema}.tmp_batch_metadata',
'txy',
'xy',
't',
'20210614T050000',
partitions=({'x': 1, 'y': 2},)
)
# a second round to stage the second set of partitions for a batch dated Jun 9; however, for one of the partitions in it a newer batch exists:
is_protection_okay = False
try:
snapshot(
get_conn_callback,
f'{database}.{schema}',
'tmp_in',
f'{database}.{schema}.tmp_in',
f'{database}.{schema}.tmp_scd',
f'{database}.{schema}.tmp_batch_metadata',
'txy',
'xy',
't',
'20210609T050000',
partitions=({'x': 1, 'y': 2}, {'x': 3, 'y': 4})
)
except ValueError as e:
print('--------------')
print(e)
print('--------------')
if 'no earlier' in str(e):
is_protection_okay = True
else:
raise
rows = run_and_fetchall_own_connection(get_conn_callback, f'SELECT * FROM {database}.{schema}.tmp_scd')
drop_tables(get_conn_callback, database, schema)
print(rows)
is_one_row = (len(rows) == 1)
is_most_recent_always_true = all([row['_scd_is_most_recent'] for row in rows])
is_deleted_always_none = all([row['_scd_deleted_timestamp'] is None for row in rows])
return _is_okay_invariants_scd_table(rows) and is_one_row and is_most_recent_always_true and is_deleted_always_none and is_protection_okay
def is_scenario_14_success(database, schema, get_conn_callback) -> bool:
create_tables(get_conn_callback, database, schema, 't', {'x': 'INT', 'y': 'INT'})
run_own_connection(get_conn_callback, f"INSERT INTO {database}.{schema}.tmp_in (t, x, y) VALUES ('20210609T050000', 1, 2), ('20210609T050000', 2, 1);")
snapshot(
get_conn_callback,
f'{database}.{schema}',
'tmp_in',
f'{database}.{schema}.tmp_in',
f'{database}.{schema}.tmp_scd',
f'{database}.{schema}.tmp_batch_metadata',
'txy',
'xy',
't',
'20210609T050000',
batch_metadata={'source': 'ONE_TIME_DUMP'}
)
rows = run_and_fetchall_own_connection(get_conn_callback, f'SELECT * FROM {database}.{schema}.tmp_scd')
drop_tables(get_conn_callback, database, schema)
print(rows)
is_two_rows = (len(rows) == 2)
is_most_recent_always_true = all([row['_scd_is_most_recent'] for row in rows])
return _is_okay_invariants_scd_table(rows) and is_two_rows and is_most_recent_always_true
def is_scenario_15_success(database, schema, get_conn_callback) -> bool:
create_tables(get_conn_callback, database, schema, 't', {'x': 'INT', 'y': 'INT'}, partition_columns=('x',))
run_own_connection(get_conn_callback, f"INSERT INTO {database}.{schema}.tmp_in (t, x, y) VALUES ('20210609T050000', 1, 1), ('20210609T050000', 1, 2), ('20210609T050000', 2, 1);")
# use partitions with batch metadata, this time multiple partitions
snapshot(
get_conn_callback,
f'{database}.{schema}',
'tmp_in',
f'{database}.{schema}.tmp_in',
f'{database}.{schema}.tmp_scd',
f'{database}.{schema}.tmp_batch_metadata',
'txy',
'xy',
't',
'20210609T050000',
partitions=({'x': 1}, {'x': 2}),
batch_metadata={'source': 'NEW_YORK_TIMES'},
run_id='my_test_run'
)
rows = run_and_fetchall_own_connection(get_conn_callback, f'SELECT * FROM {database}.{schema}.tmp_scd')
drop_tables(get_conn_callback, database, schema)
print(rows)
is_three_rows = (len(rows) == 3)
is_most_recent_always_true = all([row['_scd_is_most_recent'] for row in rows])
return _is_okay_invariants_scd_table(rows) and is_three_rows and is_most_recent_always_true
def is_scenario_16_success(database, schema, get_conn_callback) -> bool:
create_tables(get_conn_callback, database, schema, 't', {'x': 'INT', 'y': 'INT'}, partition_columns=('x', 'y'))
run_own_connection(get_conn_callback, f"INSERT INTO {database}.{schema}.tmp_in (t, x, y) VALUES ('20210609T050000', 1, 1), ('20210609T050000', 1, 2), ('20210609T050000', 2, 1);")
# use partitions, two partition columns this time
snapshot(
get_conn_callback,
f'{database}.{schema}',
'tmp_in',
f'{database}.{schema}.tmp_in',
f'{database}.{schema}.tmp_scd',
f'{database}.{schema}.tmp_batch_metadata',
'txy',
'xy',
't',
'20210609T050000',
partitions=({'x': 1, 'y': 2},),
batch_metadata={'source': 'WEEKLY'}
)
rows = run_and_fetchall_own_connection(get_conn_callback, f'SELECT * FROM {database}.{schema}.tmp_scd')
drop_tables(get_conn_callback, database, schema)
print(rows)
is_one_row = (len(rows) == 1)
is_most_recent_always_true = all([row['_scd_is_most_recent'] for row in rows])
return _is_okay_invariants_scd_table(rows) and is_one_row and is_most_recent_always_true
def is_scenario_17_success(database, schema, get_conn_callback) -> bool:
create_tables(get_conn_callback, database, schema, 't_', {'x': 'INT', 'y': 'INT'}, partition_columns=('x', 'y'))
run_own_connection(get_conn_callback, f"INSERT INTO {database}.{schema}.tmp_in (t_, x, y) VALUES ('20210609T050000', 1, 1), ('20210609T050000', 1, 2), ('20210609T050000', 2, 1);")
# Use lists or tuples (like we're supposed to) instead of strings that Python gladly iterates over (Python is a toy language)
# Also use a multi letter ts_nodash_col to surface a silly bug that existed once in snapshot
snapshot(
get_conn_callback,
f'{database}.{schema}',
'tmp_in',
f'{database}.{schema}.tmp_in',
f'{database}.{schema}.tmp_scd',
f'{database}.{schema}.tmp_batch_metadata',
('t_', 'x', 'y'),
('x', 'y'),
't_',
'20210609T050000',
partitions=({'x': 1, 'y': 2},),
batch_metadata={'source': 'WEEKLY'}
)
rows = run_and_fetchall_own_connection(get_conn_callback, f'SELECT * FROM {database}.{schema}.tmp_scd')
drop_tables(get_conn_callback, database, schema)
print(rows)
is_one_row = (len(rows) == 1)
is_most_recent_always_true = all([row['_scd_is_most_recent'] for row in rows])
return _is_okay_invariants_scd_table(rows) and is_one_row and is_most_recent_always_true
def is_scenario_18_success(database, schema, get_conn_callback) -> bool:
# use a NOT NULL constraint in one of the columns to surface a bug we had in inserting the deletions in the changes table
create_tables(get_conn_callback, database, schema, 't', {'x': 'INT NOT NULL', 'y': 'INT'})
# introduce a deletion in the second batch (remember, each batch is considered to be a full load)
run_own_connection(get_conn_callback, f"INSERT INTO {database}.{schema}.tmp_in (t, x, y) VALUES ('20210609T050000', 1, 2), ('20210609T050000', 2, 1), "
"('20210614T050000', 1, 1);")
snapshot(
get_conn_callback,
f'{database}.{schema}',
'tmp_in',
f'{database}.{schema}.tmp_in',
f'{database}.{schema}.tmp_scd',
f'{database}.{schema}.tmp_batch_metadata',
'txy',
'x',
't',
'20210609T050000'
)
# a second round to stage the second batch
snapshot(
get_conn_callback,
f'{database}.{schema}',
'tmp_in',
f'{database}.{schema}.tmp_in',
f'{database}.{schema}.tmp_scd',
f'{database}.{schema}.tmp_batch_metadata',
'txy',
'x',
't',
'20210614T050000'
)
rows = run_and_fetchall_own_connection(get_conn_callback, f'SELECT * FROM {database}.{schema}.tmp_scd')
drop_tables(get_conn_callback, database, schema)
print(rows)
is_three_rows = (len(rows) == 3)
is_most_recent_not_always_true = not all([row['_scd_is_most_recent'] for row in rows])
is_a_deleted_row_present = any([row['_scd_deleted_timestamp'] for row in rows])
return _is_okay_invariants_scd_table(rows) and is_three_rows and is_most_recent_not_always_true and is_a_deleted_row_present
def is_scenario_19_success(database, schema, get_conn_callback) -> bool:
create_tables(get_conn_callback, database, schema, 't', {'x': 'INT', 'y': 'INT'}, partition_columns=('x',))
# Check that a new row is only inserted for the partition it belongs to
run_own_connection(get_conn_callback, f"INSERT INTO {database}.{schema}.tmp_in (t, x, y) VALUES ('20210609T050000', 1, 1), ('20210614T050000', 2, 2), ('20210629T050000', 2, 2), ('20210629T050000', 2, 3);")
snapshot(
get_conn_callback,
f'{database}.{schema}',
'tmp_in',
f'{database}.{schema}.tmp_in',
f'{database}.{schema}.tmp_scd',
f'{database}.{schema}.tmp_batch_metadata',
'txy',
'xy',
't',
'20210609T050000',
partitions=({'x': 1},)
)
# a second round to stage the second batch
snapshot(
get_conn_callback,
f'{database}.{schema}',
'tmp_in',
f'{database}.{schema}.tmp_in',
f'{database}.{schema}.tmp_scd',
f'{database}.{schema}.tmp_batch_metadata',
'txy',
'xy',
't',
'20210614T050000',
partitions=({'x': 2},)
)
# a third round to stage the third batch
snapshot(
get_conn_callback,
f'{database}.{schema}',
'tmp_in',
f'{database}.{schema}.tmp_in',
f'{database}.{schema}.tmp_scd',
f'{database}.{schema}.tmp_batch_metadata',
'txy',
'xy',
't',
'20210629T050000',
partitions=({'x': 2},)
)
rows = run_and_fetchall_own_connection(get_conn_callback, f'SELECT * FROM {database}.{schema}.tmp_scd')
drop_tables(get_conn_callback, database, schema)
print(rows)
is_three_rows = (len(rows) == 3)
is_most_recent_always_true = all([row['_scd_is_most_recent'] for row in rows])
is_deleted_always_none = all([row['_scd_deleted_timestamp'] is None for row in rows])
return _is_okay_invariants_scd_table(rows) and is_three_rows and is_most_recent_always_true and is_deleted_always_none
def is_scenario_20_success(database, schema, get_conn_callback) -> bool:
create_tables(get_conn_callback, database, schema, 't', {'x': 'INT', 'y': 'INT'}, partition_columns=('x',))
# Check that a new but unchanged row does not cause an insert of the new row + an invalidation of the old row
run_own_connection(get_conn_callback, f"INSERT INTO {database}.{schema}.tmp_in (t, x, y) VALUES ('20210614T050000', 2, 2), ('20210629T050000', 2, 2);")
snapshot(
get_conn_callback,
f'{database}.{schema}',
'tmp_in',
f'{database}.{schema}.tmp_in',
f'{database}.{schema}.tmp_scd',
f'{database}.{schema}.tmp_batch_metadata',
'txy',
'xy',
't',
'20210614T050000',
partitions=({'x': 2},)
)
# a second round to stage the second batch
snapshot(
get_conn_callback,
f'{database}.{schema}',
'tmp_in',
f'{database}.{schema}.tmp_in',
f'{database}.{schema}.tmp_scd',
f'{database}.{schema}.tmp_batch_metadata',
'txy',
'xy',
't',
'20210629T050000',
partitions=({'x': 2},)
)
rows = run_and_fetchall_own_connection(get_conn_callback, f'SELECT * FROM {database}.{schema}.tmp_scd')
drop_tables(get_conn_callback, database, schema)
print(rows)
is_one_row = (len(rows) == 1)
is_most_recent_always_true = all([row['_scd_is_most_recent'] for row in rows])
is_deleted_always_none = all([row['_scd_deleted_timestamp'] is None for row in rows])
return _is_okay_invariants_scd_table(rows) and is_one_row and is_most_recent_always_true and is_deleted_always_none
# ========================================== #
# Run all scenario's also without zombie check
# ========================================== #
def is_scenario_21_success(database, schema, get_conn_callback) -> bool:
create_tables(get_conn_callback, database, schema, 't', {'x': 'INT', 'y': 'INT'})
run_own_connection(get_conn_callback, f"INSERT INTO {database}.{schema}.tmp_in (t, x, y) VALUES ('20210609T050000', 1, 2), ('20210609T050000', 2, 1);")
snapshot(
get_conn_callback,
f'{database}.{schema}',
'tmp_in',
f'{database}.{schema}.tmp_in',
f'{database}.{schema}.tmp_scd',
f'{database}.{schema}.tmp_batch_metadata',
'txy',
'xy',
't',
'20210609T050000',
do_zombie_check=False
)
rows = run_and_fetchall_own_connection(get_conn_callback, f'SELECT * FROM {database}.{schema}.tmp_scd')
drop_tables(get_conn_callback, database, schema)
print(rows)
is_two_rows = (len(rows) == 2)
is_most_recent_always_true = all([row['_scd_is_most_recent'] for row in rows])
return _is_okay_invariants_scd_table(rows, False) and is_two_rows and is_most_recent_always_true
def is_scenario_22_success(database, schema, get_conn_callback) -> bool:
create_tables(get_conn_callback, database, schema, 't', {'x': 'INT', 'y': 'INT'})
# introduce a duplicate row in the source table; only during the second step, where the changes are staged, will it be deduplicated.
run_own_connection(get_conn_callback, f"INSERT INTO {database}.{schema}.tmp_in (t, x, y) VALUES ('20210609T050000', 1, 2), ('20210609T050000', 2, 1), ('20210609T050000', 2, 1);")
snapshot(
get_conn_callback,
f'{database}.{schema}',
'tmp_in',
f'{database}.{schema}.tmp_in',
f'{database}.{schema}.tmp_scd',
f'{database}.{schema}.tmp_batch_metadata',
'txy',
'xy',
't',
'20210609T050000',
fail_on_duplicates=False,
do_zombie_check=False
)
rows = run_and_fetchall_own_connection(get_conn_callback, f'SELECT * FROM {database}.{schema}.tmp_scd')
drop_tables(get_conn_callback, database, schema)
print(rows)
is_two_rows = (len(rows) == 2)
is_most_recent_always_true = all([row['_scd_is_most_recent'] for row in rows])
return _is_okay_invariants_scd_table(rows, False) and is_two_rows and is_most_recent_always_true
def is_scenario_23_success(database, schema, get_conn_callback) -> bool:
create_tables(get_conn_callback, database, schema, 't', {'x': 'INT', 'y': 'INT'}, partition_columns=('x',))
run_own_connection(get_conn_callback, f"INSERT INTO {database}.{schema}.tmp_in (t, x, y) VALUES ('20210609T050000', 1, 1), ('20210609T050000', 1, 2), ('20210609T050000', 2, 1);")
# use partitions
snapshot(
get_conn_callback,
f'{database}.{schema}',
'tmp_in',
f'{database}.{schema}.tmp_in',
f'{database}.{schema}.tmp_scd',
f'{database}.{schema}.tmp_batch_metadata',
'txy',
'xy',
't',
'20210609T050000',
partitions=({'x': 1},),
do_zombie_check=False
)
rows = run_and_fetchall_own_connection(get_conn_callback, f'SELECT * FROM {database}.{schema}.tmp_scd')
drop_tables(get_conn_callback, database, schema)
print(rows)
is_two_rows = (len(rows) == 2)
is_most_recent_always_true = all([row['_scd_is_most_recent'] for row in rows])
return _is_okay_invariants_scd_table(rows, False) and is_two_rows and is_most_recent_always_true
def is_scenario_24_success(database, schema, get_conn_callback) -> bool:
create_tables(get_conn_callback, database, schema, 't', {'x': 'INT', 'y': 'INT'})
run_own_connection(get_conn_callback, f"INSERT INTO {database}.{schema}.tmp_in (t, x, y) VALUES ('20210609T050000', 1, 2), ('20210609T050000', 2, 1);")
# use a column with values (y) that is not part of a unique key
snapshot(
get_conn_callback,
f'{database}.{schema}',
'tmp_in',
f'{database}.{schema}.tmp_in',
f'{database}.{schema}.tmp_scd',
f'{database}.{schema}.tmp_batch_metadata',
'txy',
'x',
't',
'20210609T050000',
do_zombie_check=False
)
rows = run_and_fetchall_own_connection(get_conn_callback, f'SELECT * FROM {database}.{schema}.tmp_scd')
drop_tables(get_conn_callback, database, schema)
print(rows)
is_two_rows = (len(rows) == 2)
is_most_recent_always_true = all([row['_scd_is_most_recent'] for row in rows])
return _is_okay_invariants_scd_table(rows, False) and is_two_rows and is_most_recent_always_true
def is_scenario_25_success(database, schema, get_conn_callback) -> bool:
create_tables(get_conn_callback, database, schema, 't', {'x': 'INT', 'y': 'INT'})
# now in this table there are two batches worth of data
run_own_connection(get_conn_callback, f"INSERT INTO {database}.{schema}.tmp_in (t, x, y) VALUES ('20210609T050000', 1, 2), ('20210609T050000', 2, 1), "
"('20210614T050000', 1, 1), ('20210614T050000', 2, 1);")
snapshot(
get_conn_callback,
f'{database}.{schema}',
'tmp_in',
f'{database}.{schema}.tmp_in',
f'{database}.{schema}.tmp_scd',
f'{database}.{schema}.tmp_batch_metadata',
'txy',
'x',
't',
'20210609T050000',
do_zombie_check=False
)
# a second round to stage the second batch
snapshot(
get_conn_callback,
f'{database}.{schema}',
'tmp_in',
f'{database}.{schema}.tmp_in',
f'{database}.{schema}.tmp_scd',
f'{database}.{schema}.tmp_batch_metadata',
'txy',
'x',
't',
'20210614T050000',
do_zombie_check=False
)
rows = run_and_fetchall_own_connection(get_conn_callback, f'SELECT * FROM {database}.{schema}.tmp_scd')
drop_tables(get_conn_callback, database, schema)
print(rows)
is_three_rows = (len(rows) == 3)
is_most_recent_not_always_true = not all([row['_scd_is_most_recent'] for row in rows])
return _is_okay_invariants_scd_table(rows, False) and is_three_rows and is_most_recent_not_always_true
def is_scenario_26_success(database, schema, get_conn_callback) -> bool:
create_tables(get_conn_callback, database, schema, 't', {'x': 'INT', 'y': 'INT'})
# introduce a deletion in the second batch (remember, each batch is considered to be a full load)
run_own_connection(get_conn_callback, f"INSERT INTO {database}.{schema}.tmp_in (t, x, y) VALUES ('20210609T050000', 1, 2), ('20210609T050000', 2, 1), "
"('20210614T050000', 1, 1);")
snapshot(
get_conn_callback,
f'{database}.{schema}',
'tmp_in',
f'{database}.{schema}.tmp_in',
f'{database}.{schema}.tmp_scd',
f'{database}.{schema}.tmp_batch_metadata',
'txy',
'x',
't',
'20210609T050000',
do_zombie_check=False
)
# a second round to stage the second batch
snapshot(
get_conn_callback,
f'{database}.{schema}',
'tmp_in',
f'{database}.{schema}.tmp_in',
f'{database}.{schema}.tmp_scd',