forked from wgzhao/Addax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstream2postgresql.json
54 lines (54 loc) · 1.13 KB
/
stream2postgresql.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
{
"job": {
"content": [
{
"writer": {
"name": "postgresqlwriter",
"parameter": {
"column": [
"id","subid","msg"
],
"connection": [
{
"jdbcUrl": "jdbc:postgresql://127.0.0.1:5432/pgtest"
,
"table": [
"addax_tbl"
]
}
],
"username": "pgtest",
"password": "pgtest",
"writeMode": "update(id, subid)"
}
},
"reader": {
"name": "streamreader",
"parameter": {
"column": [
{
"random": "100,1000",
"type": "long"
},
{
"random": "110,1100",
"type": "long"
},
{
"value": "update",
"type": "string"
}
],
"sliceRecordCount": 1
}
}
}
],
"setting": {
"speed": {
"bytes": -1,
"channel": 1
}
}
}
}