-
Notifications
You must be signed in to change notification settings - Fork 0
/
definition.yml
236 lines (202 loc) · 7.37 KB
/
definition.yml
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
fileVersion: 1
id: "298"
isDisabled: false
metadata:
defaultStorageLocation: null
error: null
nodeMetadataSpec: |
capitalized: External Table
short: 'EXT'
tagColor: '#C39BD3'
isDisabled: false
plural: External Tables
deployStrategy: advanced
isColumnResyncEnabled: true
config:
- groupName: General Options
items:
- displayName: InferSchema
attributeName: inferschema
type: toggleButton
default: false
- type: toggleButton
displayName: Partition by
attributeName: partclause
default: false
enableIf: "{% if config.inferschema %} false {% else %} true {% endif %}"
- type: label
displayName: A partition column must evaluate as an expression that parses the path and/or filename information in the METADATA$FILENAME
enableIf: "{% if (config.partclause) %} true {% else %} false {% endif %}"
- type: textBox
displayName: Partition by Expression
attributeName: cpartexpression
default: "Ex:split_part(metadata$filename,'/',2)"
isRequired: false
enableIf: "{% if (config.partclause) %} true {% else %} false {% endif %}"
- groupName: File Location
items:
- displayName: Coalesce Storage Location of Stage
attributeName: stageStorageLocationName
type: textBox
default: 'Enter Storage Location name'
isRequired: true
- displayName: Stage Name
attributeName: stageName
type: textBox
default: 'stage_name/folder/'
isRequired: true
- displayName: File Name(s) (Ex:'a.csv','b.csv' )
attributeName: fileNames
type: textBox
enableIf: "{% if config.inferschema %} true {% else %} false {% endif %}"
isRequired: false
- displayName: File Pattern
attributeName: filePattern
type: textBox
enableIf: "{% if config.inferschema %} false {% else %} true {% endif %}"
default: ".*[.]json"
- groupName: File Format
items:
- displayName: File Format Definition
attributeName: fileFormatType
type: dropdownSelector
default: "File Format Name"
enableIf: "{% if config.inferschema == true %} false {% else %} true {% endif %}"
options:
- File Format Name
- File Format Values
- displayName: Coalesce Storage Location of File Format
attributeName: fileFormatLoc
type: textBox
default: ""
enableIf: "{% if config.fileFormatType == 'File Format Name' %} true {% else %} false {% endif %}"
- displayName: File Format Name
attributeName: fileFormatName
type: textBox
default: ""
isRequired: false
enableIf: "{% if config.fileFormatType == 'File Format Name' %} true {% else %} false {% endif %}"
- displayName: File Type
attributeName: fileType
type: dropdownSelector
enableIf: "{% if config.inferschema == true %} false {% else %} true {% endif %}"
default: JSON
options:
- "CSV"
- "PARQUET"
- "JSON"
- "AVRO"
- "ORC"
isRequired: true
- displayName: Compression
attributeName: compression
enableIf: "{% if (config.fileFormatType != 'File Format Name' and config.fileType in ('CSV','JSON')) %} true {% else %} false {% endif %}"
type: dropdownSelector
default: "AUTO"
options:
- "AUTO"
- "GZIP"
- "BZ2"
- "BROTLI"
- "ZSTD"
- "DEFLATE"
- "RAW_DEFLATE"
- "NONE"
isRequired: false
- displayName: Record delimiter
attributeName: recDelim
type: textBox
enableIf: "{% if (config.fileFormatType != 'File Format Name' and config.fileType in ('CSV')) %} true {% else %} false {% endif %}"
default: "\n"
isRequired: false
- displayName: Field delimiter
attributeName: fieldDelim
type: textBox
enableIf: "{% if (config.fileFormatType != 'File Format Name' and config.fileType in ('CSV')) %} true {% else %} false {% endif %}"
default: ","
isRequired: false
- displayName: Field optionally enclosed by
attributeName: fieldEnclosed
type: textBox
enableIf: "{% if (config.fileFormatType != 'File Format Name' and config.fileType in ('CSV')) %} true {% else %} false {% endif %}"
default: "\\042"
isRequired: false
- displayName: Number of header lines to skip
attributeName: skipHeader
type: textBox
enableIf: "{% if (config.fileFormatType != 'File Format Name' and config.fileType in ('CSV')) %} true {% else %} false {% endif %}"
default: "1"
isRequired: false
- displayName: Skip blank lines
attributeName: skipBlankLines
enableIf: "{% if (config.fileFormatType != 'File Format Name' and config.fileType in ('CSV')) %} true {% else %} false {% endif %}"
type: toggleButton
default: true
isRequired: false
- displayName: Trim space
attributeName: trimSpace
enableIf: "{% if (config.fileFormatType != 'File Format Name' and config.fileType in ('CSV')) %} true {% else %} false {% endif %}"
type: toggleButton
default: true
isRequired: false
- displayName: Replace invalid characters
attributeName: replaceinvalidcharacters
enableIf: "{% if (config.fileFormatType != 'File Format Name') %} true {% else %} false {% endif %}"
type: toggleButton
default: false
isRequired: false
- displayName: Strip Outer Array
attributeName: stripouterarray
enableIf: "{% if (config.fileFormatType != 'File Format Name' and config.fileType in ('JSON')) %} true {% else %} false {% endif %}"
type: toggleButton
default: false
isRequired: false
- groupName: Additional Options
items:
- displayName: Auto Refresh
attributeName: autoRefresh
type: toggleButton
default: false
isRequired: false
- displayName: Cloud Provider
attributeName: cloudProvider
type: dropdownSelector
default: "AWS"
options:
- "AWS"
- "Azure"
- "GCP"
enableIf: "{{ config.autoRefresh }}"
- displayName: AWS SNS Topic
attributeName: snsTopic
type: textBox
enableIf: "{% if config.autoRefresh == true and config.cloudProvider == 'AWS' %} true {% else %} false {% endif %}"
default: "arn:aws:sns:us-east-1:121674918127:prod-emea-s3-notification"
isRequired: false
- displayName: Integration
attributeName: integration
type: textBox
isRequired: false
enableIf: "{% if config.autoRefresh == true and config.cloudProvider != 'AWS' %} true {% else %} false {% endif %}"
- groupName: Hidden config
enableIf: "false"
items:
- displayName: Type
type: materializationSelector
default: table
options:
- table
isRequired: true
systemColumns:
- displayName: 'VALUE'
attributeName: 'VALUE'
transform: ''
dataType: VARIANT
placement: beginning
- displayName: FILENAME
transform: 'METADATA$FILENAME'
dataType: STRING
placement: end
attributeName: sysFlNm
name: External Table
type: NodeType