forked from transferia/transferia
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtransfer.yaml
More file actions
41 lines (41 loc) · 853 Bytes
/
transfer.yaml
File metadata and controls
41 lines (41 loc) · 853 Bytes
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
id: test
type: INCREMENT_ONLY
src:
type: mysql
params: |
{
"Host": "mysql",
"User": "testuser",
"Password": "testpassword",
"Database": "testdb",
"Port": 3306,
"ReplicationFlushInterval": 5000000000
}
dst:
type: kafka
params: |
{
"ShowData": true,
"Connection": {
"TLS": "Disabled",
"Brokers": ["kafka:9092"]
},
"Auth": {
"Enabled": false
},
"ParralelWriterCount": 10,
"TopicPrefix": "cdc",
"FormatSettings": {
"Name": "Auto",
"Settings": {},
"SettingsKV": [],
"BatchingSettings": {
"Enabled": true,
"Interval": 100,
"MaxChangeItems": 0,
"MaxMessageSize": 0
}
},
"TopicConfigEntries": null,
"Compression": "UNCOMPRESSED"
}