-
Notifications
You must be signed in to change notification settings - Fork 0
/
config3.json
55 lines (40 loc) · 1.2 KB
/
config3.json
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
{
"src_db":{
"host":"localhost",
"user":"root",
"password":"root",
"database":"sakila"
},
"transformations":[
{
"source_table": "actor",
"source_column": ["first_name","last_name"],
"target_column": "full_name",
"operation": "concat"
},
{
"source_table": "film",
"source_column": ["title","special_features","original_language_id"],
"operation": [{"title":"to_camelcase"},{"special_features":"drop"},{"original_language_id":"drop"}]
},
{
"source_table":"film_actor",
"source_column":"last_update",
"to_format":"%d-%m-%Y",
"operation":"change_format"
},
{
"source_table":"language",
"source_column":"last_update",
"target_column":["date","time"],
"operation":"split"
},
{
"source_table":["actor","film_actor","film"],
"target_table":"actor_film",
"on":["actor_id","film_id"],
"operation":"join"
}
],
"target_db":"mysql+mysqlconnector://root:[email protected]:3306/target_db"
}