-
Notifications
You must be signed in to change notification settings - Fork 4.5k
Expand file tree
/
Copy pathpytransform.yaml
More file actions
159 lines (152 loc) · 5.32 KB
/
pytransform.yaml
File metadata and controls
159 lines (152 loc) · 5.32 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
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
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
fixtures:
- name: TEMP_DIR
type: "tempfile.TemporaryDirectory"
pipelines:
# Simple PyTransform using __constructor__
- pipeline:
type: chain
transforms:
- type: Create
config:
elements:
- {price: 1.29, produce: 'Apple'}
- {price: 0.29, produce: 'Apricot'}
- {price: 0.02, produce: 'Blueberry'}
- {price: 0.19, produce: 'Date'}
- type: PyTransform
config:
constructor: __constructor__
kwargs:
source: |
def increase(inc):
return beam.Map(lambda x: beam.Row(price=x.price + inc, produce=x.produce))
inc: 0.30
- type: AssertEqual
config:
elements:
- {price: 1.59, produce: 'Apple'}
- {price: 0.59, produce: 'Apricot'}
- {price: 0.32, produce: 'Blueberry'}
- {price: 0.49, produce: 'Date'}
# Simple PyTransform using __constructor__ beam.PTransform
- pipeline:
type: chain
transforms:
- type: Create
config:
elements:
- {price: 1.29, produce: 'Apple'}
- {price: 0.29, produce: 'Apricot'}
- {price: 0.02, produce: 'Blueberry'}
- {price: 0.19, produce: 'Date'}
- type: PyTransform
config:
constructor: __constructor__
kwargs:
source: |
class MyPTransform(beam.PTransform):
def __init__(self, inc):
self._inc = inc
def expand(self, pcoll):
return pcoll | beam.Map(lambda x: beam.Row(price=x.price + self._inc, produce=x.produce))
inc: 0.30
- type: AssertEqual
config:
elements:
- {price: 1.59, produce: 'Apple'}
- {price: 0.59, produce: 'Apricot'}
- {price: 0.32, produce: 'Blueberry'}
- {price: 0.49, produce: 'Date'}
# Simple PyTransform using __callable__
- pipeline:
type: chain
transforms:
- type: Create
config:
elements:
- {price: 1.29, produce: 'Apple'}
- {price: 0.29, produce: 'Apricot'}
- {price: 0.02, produce: 'Blueberry'}
- {price: 0.19, produce: 'Date'}
- type: PyTransform
config:
constructor: __callable__
kwargs:
source: |
def increase(pcoll, inc):
return pcoll | beam.Map(lambda x: beam.Row(price=x.price + inc, produce=x.produce))
inc: 0.30
- type: AssertEqual
config:
elements:
- {price: 1.59, produce: 'Apple'}
- {price: 0.59, produce: 'Apricot'}
- {price: 0.32, produce: 'Blueberry'}
- {price: 0.49, produce: 'Date'}
# Create Csv for pytransform read in next pipeline
- pipeline:
type: chain
transforms:
- type: Create
config:
elements:
- {price: 1.29, produce: 'Apple'}
- {price: 0.29, produce: 'Apricot'}
- {price: 0.02, produce: 'Blueberry'}
- {price: 0.19, produce: 'Date'}
- type: WriteToCsv
config:
path: "{TEMP_DIR}/out.csv"
# Simple PyTransform using ReadFromCsv with args
- pipeline:
type: composite
transforms:
- type: PyTransform
name: PyTransformReadFromCsv
input: {}
config:
constructor: apache_beam.io.ReadFromCsv
args: ['{TEMP_DIR}/out.csv*']
- type: AssertEqual
input: PyTransformReadFromCsv
config:
elements:
- {price: 1.29, produce: 'Apple'}
- {price: 0.29, produce: 'Apricot'}
- {price: 0.02, produce: 'Blueberry'}
- {price: 0.19, produce: 'Date'}
# Simple PyTransform using ReadFromCsv with kwargs
- pipeline:
type: composite
transforms:
- type: PyTransform
name: PyTransformReadFromCsv
input: {}
config:
constructor: apache_beam.io.ReadFromCsv
kwargs:
path: '{TEMP_DIR}/out.csv*'
- type: AssertEqual
input: PyTransformReadFromCsv
config:
elements:
- {price: 1.29, produce: 'Apple'}
- {price: 0.29, produce: 'Apricot'}
- {price: 0.02, produce: 'Blueberry'}
- {price: 0.19, produce: 'Date'}