-
Notifications
You must be signed in to change notification settings - Fork 11
/
cdc-job.json
42 lines (42 loc) · 1.13 KB
/
cdc-job.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
{
"partitions": 1,
"maxPartitionsPerClusterMember": 1,
"pipeline": {
"stages": [
{
"database": {
"credentialsDirectoryPath" : "/opt/redislabs/redis-connect/config/samples/credentials",
"databaseURL": "redis://127.0.0.1:14000",
"databaseType": "REDIS",
"customConfiguration": {
"redis.connection.sslEnabled": false,
"truststore": "/opt/redislabs/redis-connect/config/samples/credentials/client-truststore.jks"
}
},
"index": 1,
"stageName": "REDIS_STRING_SINK",
"checkpointStageIndicator": true,
"metricsEnabled" : true
}
]
},
"source": {
"database": {
"credentialsDirectoryPath": "/opt/redislabs/redis-connect/config/samples/credentials",
"databaseType": "GEMFIRE",
"customConfiguration": {
"pool.locator.host": "localhost",
"pool.locator.port": "10334"
}
},
"tables": {
"session": {
"initialLoad": {
"partitions": 4,
"maxPartitionsPerClusterMember": 1
},
"autoConfigColumnsEnabled": true
}
}
}
}