forked from douglascoimbra/test-sample-pipeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenericpipe.json
108 lines (108 loc) · 2.77 KB
/
genericpipe.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"defaults": {
"cronExpressions": [
"0 */5 0 ? * * *"
],
"prepareScripts": [
"prepare.sql"
]
},
"pipelines": [
{
"pipelineName": "newunifproduct_main",
"pipelineDescription": "Pipeline for the product table, that uses staging nlp_product",
"outputDataModelName": "mdmproduct",
"checkExistsDataToProcess": true,
"overlapDeltaMinutes": 120,
"saveToCds": true,
"saveToUnified": true,
"saveToRealtime": true,
"shouldFanOut": true,
"sendToSubscriptions": true,
"useBatchNotification": true,
"tempTableRetentionPeriodDays": 1,
"cronExpressions": [
"0 0 0 1 1 ? 2099"
],
"processScript": "audproduct.csql",
"sourceEntities": {
"dataModels": [
{
"dataModelName": "mdmproduct"
}
],
"stagings": [
{
"connectorName": "nlp",
"stagingName": "product"
}
]
}
},
{
"pipelineName": "purchaseorder_main",
"pipelineDescription": "Pipeline for the purchase table, that uses staging nlp_product",
"outputDataModelName": "mdmpurchaseorder",
"overlapDeltaMinutes": 130,
"saveToCds": true,
"saveToUnified": true,
"saveToRealtime": true,
"shouldFanOut": true,
"checkExistsDataToProcess": true,
"useBatchNotification": true,
"tempTableRetentionPeriodDays": 10,
"sendToSubscriptions": false,
"cronExpressions": [
"0 0 0 1 1 ? 2099"
],
"processScript": "audpurchase.csql",
"sourceEntities": {
"dataModels": [
{
"dataModelName": "mdmpurchaseorder"
}
],
"stagings": [
{
"connectorName": "nlp",
"stagingName": "purchaseorder"
}
]
}
},
{
"pipelineName": "newfarhorizon_main",
"pipelineDescription": "Far Horizon Data Model, that uses staging nlp_product",
"outputDataModelName": "mdmfarhorizon",
"overlapDeltaMinutes": 130,
"saveToCds": true,
"saveToUnified": true,
"saveToRealtime": true,
"sendToSubscriptions": true,
"checkExistsDataToProcess": true,
"useBatchNotification": true,
"tempTableRetentionPeriodDays": 9,
"cronExpressions": [
"0 0 0 1 1 ? 2099"
],
"processScript": "farhorizonv2.csql",
"sourceEntities": {
"dataModels": [
{
"dataModelName": "mdmfarhorizon"
}
],
"stagings": [
{
"connectorName": "nlp",
"stagingName": "product"
},
{
"connectorName": "nlp",
"stagingName": "purchaseorder"
}
]
}
}
]
}