forked from apache/beam
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenrichment.py
More file actions
235 lines (209 loc) · 7.65 KB
/
enrichment.py
File metadata and controls
235 lines (209 loc) · 7.65 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
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
# coding=utf-8
#
# 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.
#
# pytype: skip-file
# pylint: disable=line-too-long
def enrichment_with_bigtable():
# [START enrichment_with_bigtable]
import apache_beam as beam
from apache_beam.transforms.enrichment import Enrichment
from apache_beam.transforms.enrichment_handlers.bigtable import (
BigTableEnrichmentHandler, )
project_id = "apache-beam-testing"
instance_id = "beam-test"
table_id = "bigtable-enrichment-test"
row_key = "product_id"
data = [
beam.Row(sale_id=1, customer_id=1, product_id=1, quantity=1),
beam.Row(sale_id=3, customer_id=3, product_id=2, quantity=3),
beam.Row(sale_id=5, customer_id=5, product_id=4, quantity=2),
]
bigtable_handler = BigTableEnrichmentHandler(
project_id=project_id,
instance_id=instance_id,
table_id=table_id,
row_key=row_key,
)
with beam.Pipeline() as p:
_ = (
p
| "Create" >> beam.Create(data)
| "Enrich W/ BigTable" >> Enrichment(bigtable_handler)
| "Print" >> beam.Map(print))
# [END enrichment_with_bigtable]
def enrichment_with_vertex_ai():
# [START enrichment_with_vertex_ai]
import apache_beam as beam
from apache_beam.transforms.enrichment import Enrichment
from apache_beam.transforms.enrichment_handlers.vertex_ai_feature_store import (
VertexAIFeatureStoreEnrichmentHandler, )
project_id = "apache-beam-testing"
location = "us-central1"
api_endpoint = f"{location}-aiplatform.googleapis.com"
data = [
beam.Row(user_id="2963", product_id=14235, sale_price=15.0),
beam.Row(user_id="21422", product_id=11203, sale_price=12.0),
beam.Row(user_id="20592", product_id=8579, sale_price=9.0),
]
vertex_ai_handler = VertexAIFeatureStoreEnrichmentHandler(
project=project_id,
location=location,
api_endpoint=api_endpoint,
feature_store_name="vertexai_enrichment_example",
feature_view_name="users",
row_key="user_id",
)
with beam.Pipeline() as p:
_ = (
p
| "Create" >> beam.Create(data)
| "Enrich W/ Vertex AI" >> Enrichment(vertex_ai_handler)
| "Print" >> beam.Map(print))
# [END enrichment_with_vertex_ai]
def enrichment_with_vertex_ai_legacy():
# [START enrichment_with_vertex_ai_legacy]
import apache_beam as beam
from apache_beam.transforms.enrichment import Enrichment
from apache_beam.transforms.enrichment_handlers.vertex_ai_feature_store import (
VertexAIFeatureStoreLegacyEnrichmentHandler, )
project_id = "apache-beam-testing"
location = "us-central1"
api_endpoint = f"{location}-aiplatform.googleapis.com"
data = [
beam.Row(entity_id="movie_01", title="The Shawshank Redemption"),
beam.Row(entity_id="movie_02", title="The Shining"),
beam.Row(entity_id="movie_04", title="The Dark Knight"),
]
vertex_ai_handler = VertexAIFeatureStoreLegacyEnrichmentHandler(
project=project_id,
location=location,
api_endpoint=api_endpoint,
entity_type_id="movies",
feature_store_id="movie_prediction_unique",
feature_ids=["title", "genres"],
row_key="entity_id",
)
with beam.Pipeline() as p:
_ = (
p
| "Create" >> beam.Create(data)
| "Enrich W/ Vertex AI" >> Enrichment(vertex_ai_handler)
| "Print" >> beam.Map(print))
# [END enrichment_with_vertex_ai_legacy]
def enrichment_with_bigquery_storage_basic():
# [START enrichment_with_bigquery_storage_basic]
import apache_beam as beam
from apache_beam.transforms.enrichment import Enrichment
from apache_beam.transforms.enrichment_handlers.bigquery_storage_read import (
BigQueryStorageEnrichmentHandler, )
project_id = "apache-beam-testing"
dataset = "beam-test"
table_name = "bigquery-enrichment-test-products"
# Sample sales data to enrich
sales_data = [
beam.Row(sale_id=1001, product_id=101, customer_id=501, quantity=2),
beam.Row(sale_id=1002, product_id=102, customer_id=502, quantity=1),
beam.Row(sale_id=1003, product_id=103, customer_id=503, quantity=5),
]
# Basic enrichment - enrich sales data with product information
handler = BigQueryStorageEnrichmentHandler(
project=project_id,
table_name=f"{project_id}.{dataset}.{table_name}",
row_restriction_template="id = {product_id}",
fields=["product_id"],
column_names=[
"id as product_id", "product_name", "category", "unit_price"
],
)
with beam.Pipeline() as p:
_ = (
p
| "Create Sales Data" >> beam.Create(sales_data)
| "Enrich with Product Info" >> Enrichment(handler)
| "Print Results" >> beam.Map(print))
# [END enrichment_with_bigquery_storage_basic]
def enrichment_with_bigquery_storage_custom_function():
# [START enrichment_with_bigquery_storage_custom_function]
import apache_beam as beam
from apache_beam.transforms.enrichment import Enrichment
from apache_beam.transforms.enrichment_handlers.bigquery_storage_read import (
BigQueryStorageEnrichmentHandler, )
project_id = "apache-beam-testing"
dataset = "beam-test"
table_name = "bigquery-enrichment-test-products"
# Advanced sales data with category and quantity
sales_data = [
beam.Row(
sale_id=1001,
product_id=101,
category="Electronics",
customer_id=501,
quantity=2,
),
beam.Row(
sale_id=1002,
product_id=102,
category="Electronics",
customer_id=502,
quantity=4,
),
beam.Row(
sale_id=1003,
product_id=103,
category="Furniture",
customer_id=503,
quantity=5,
),
beam.Row(
sale_id=1004,
product_id=101,
category="Electronics",
customer_id=504,
quantity=6,
),
]
def build_row_restriction(condition_values, primary_keys, req_row):
# Only enrich if quantity > 2 and category is Electronics
if req_row.quantity > 2 and req_row.category == "Electronics":
return f'id = {req_row.product_id} AND category = "{req_row.category}"'
else:
return None # Skip enrichment for this row
def extract_condition_values(req_row):
return {
"product_id": req_row.product_id,
"category": req_row.category,
"quantity": req_row.quantity,
}
handler = BigQueryStorageEnrichmentHandler(
project=project_id,
table_name=f"{project_id}.{dataset}.{table_name}",
row_restriction_template_fn=build_row_restriction,
condition_value_fn=extract_condition_values,
column_names=[
"id as prod_id",
"product_name as name",
"category",
"unit_price as price",
],
)
with beam.Pipeline() as p:
_ = (
p
| "Create Sales Data" >> beam.Create(sales_data)
| "Enrich with Product Info (Advanced)" >> Enrichment(handler)
| "Print Results" >> beam.Map(print))
# [END enrichment_with_bigquery_storage_custom_function]