使用 Bigtable 增强数据
|
在 Apache Beam 2.54.0 及更高版本中,增强转换包含针对 Bigtable 的内置增强处理程序。以下示例演示了如何创建一个使用增强转换的管道 BigTableEnrichmentHandler
处理程序。
存储在 Bigtable 集群中的数据使用以下格式
行键 | product:product_id | product:product_name | product:product_stock |
---|---|---|---|
1 | 1 | pixel 5 | 2 |
2 | 2 | pixel 6 | 4 |
3 | 3 | pixel 7 | 20 |
4 | 4 | pixel 8 | 10 |
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))
输出
Row(sale_id=1, customer_id=1, product_id=1, quantity=1, product={'product_id': '1', 'product_name': 'pixel 5', 'product_stock': '2'})
Row(sale_id=3, customer_id=3, product_id=2, quantity=3, product={'product_id': '2', 'product_name': 'pixel 6', 'product_stock': '4'})
Row(sale_id=5, customer_id=5, product_id=4, quantity=2, product={'product_id': '4', 'product_name': 'pixel 8', 'product_stock': '10'})
相关转换
不适用。
![]() |
最后更新时间:2024/10/31
您找到了您要找的所有内容吗?
所有内容都有用且清晰吗?您想更改任何内容吗?请告诉我们!