-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathfirst_pipeline.orch.yaml
More file actions
115 lines (115 loc) · 2.27 KB
/
Copy pathfirst_pipeline.orch.yaml
File metadata and controls
115 lines (115 loc) · 2.27 KB
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
109
110
111
112
113
114
115
type: "orchestration"
version: "1.0"
pipeline:
components:
Start:
type: "start"
transitions:
unconditional:
- "Create Table Demographic"
parameters:
componentName: "Start"
Create Table Demographic:
type: "create-table-v2"
parameters:
componentName: "Create Table Demographic"
createMethod: "Create If Not Exists"
database: "DEMO_DATABASE"
schema: "DEMO_SCHEMA"
table: "CUSTOMER"
snowflakeTableType: "Permanent"
columns:
- - "AGE_DESC"
- "VARCHAR"
- "20"
- ""
- ""
- "No"
- "No"
- ""
- ""
- - "MARITAL_STATUS_CODE"
- "VARCHAR"
- "5"
- ""
- ""
- "No"
- "No"
- ""
- ""
- - "INCOME_DESC"
- "VARCHAR"
- "40"
- ""
- ""
- "No"
- "No"
- ""
- ""
- - "HOMEOWNER_DESC"
- "VARCHAR"
- "40"
- ""
- ""
- "No"
- "No"
- ""
- ""
- - "HH_COMP_DESC"
- "VARCHAR"
- "50"
- ""
- ""
- "No"
- "No"
- ""
- ""
- - "HOUSEHOLD_SIZE_DESC"
- "VARCHAR"
- "50"
- ""
- ""
- "No"
- "No"
- ""
- ""
- - "KID_CATEGORY_DESC"
- "VARCHAR"
- "40"
- ""
- ""
- "No"
- "No"
- ""
- ""
- - "HOUSEHOLD_KEY"
- "NUMBER"
- ""
- ""
- ""
- "No"
- "Yes"
- ""
- ""
defaultDdlCollation:
primaryKeys:
- "HOUSEHOLD_KEY"
clusteringKeys:
- "HOUSEHOLD_KEY"
dataRetentionTimeInDays:
comment: "Creating Demographic Table"
postProcessing:
updateOutputMessage:
updateScalarVariables:
design:
components:
Start:
position:
x: -510
"y": -120
tempMetlId: 1
Create Table Demographic:
position:
x: -350
"y": -240
tempMetlId: 2