forked from bersler/OpenLogReplicator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patholr-config.json
More file actions
49 lines (49 loc) · 941 Bytes
/
olr-config.json
File metadata and controls
49 lines (49 loc) · 941 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
42
43
44
45
46
47
48
49
{
"version": "1.9.0",
"log-level": 4,
"state": {
"type": "disk",
"path": "/olr-data/checkpoint",
"interval-s": 10,
"interval-mb": 1
},
"memory": {
"min-mb": 64,
"max-mb": 1024
},
"source": [
{
"alias": "SOURCE",
"name": "ORCLCDB",
"reader": {
"type": "online",
"path-mapping": ["/shared/redo", "/shared/redo"],
"user": "c##dbzuser",
"password": "dbz",
"server": "//racnodepc1-scan:1521/ORCLPDB"
},
"format": {
"type": "debezium",
"scn-type": 1,
"timestamp-type": 1,
"user-type": 0,
"redo-thread": 0
},
"filter": {
"table": [
{"owner": "OLR_TEST", "table": ".*"}
]
}
}
],
"target": [
{
"alias": "DEBEZIUM",
"source": "SOURCE",
"writer": {
"type": "network",
"uri": "0.0.0.0:5000"
}
}
]
}