-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.yml
88 lines (80 loc) · 1.78 KB
/
config.yml
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
databases:
source:
name: test_live
target:
name: temp_verify
testing:
test_live: test_live
temp_verify: temp_verify
verification_marker: "VERIFY_TEST_STRING_XYZ_"
cleanup_script: remove_verify_db.sh
export:
random_seed: 42
excluded_tables:
- training_config
- train_specific_data
verification:
logging:
directory: logs
prefix: verify_
checksums:
enabled: true
algorithm: md5sum
record_counts:
enabled: true
sample_tables:
- customers
- employees
scrubbing:
random_names:
- table: customers
fields: [first_name, last_name]
style: github
- table: employees
fields: [name]
style: github
- table: projects
fields: [project_name]
style: github
- table: repositories
fields: [repo_name]
style: github
standardize:
address:
value: "123 Training St, Test City, ST 12345"
fields:
- table: customers
field: address
- table: employees
field: address
phone:
value: "555-0123"
fields:
- table: customers
field: phone
- table: employees
field: phone
email:
value: "[email protected]"
fields:
- table: customers
field: email
- table: employees
field: email
combination_fields:
- table: projects
fields:
- source_field: name1
random_style: github
- source_field: name2
random_style: github
separator: " -&- "
target_field: combo_name
- table: repositories
fields:
- source_field: owner_name
random_style: github
- source_field: repo_name
random_style: github
separator: "/"
target_field: full_path