1 个不稳定版本
0.4.0 | 2024年7月28日 |
---|
#1100 在 网络编程
130 每月下载量
在 2 个crate中使用(通过 aqueducts)
15KB
173 行
Aqueducts
Aqueducts 是一个用于声明式编写和执行 ETL 数据管道的框架。
功能
- 在 YAML 中定义 ETL 管道
- 从 csv 文件、JSONL、parquet 文件或 delta 表中提取数据
- 使用 SQL 处理数据
- 将数据加载到对象存储中作为 csv/parquet 或 delta 表
- 支持文件和 delta 表分区
- 支持 delta 表上的 Upsert/Replace/Append 操作
- 支持 Local、S3、GCS 和 Azure Blob 存储
- 实验性 支持 ODBC 源和目标
此框架建立在如 arrow-rs、datafusion、delta-rs 等项目的出色工作之上
请对这些项目给予一些支持 ❤️!
文档
您可以在 https://vigimite.github.io/aqueducts 找到文档
变更日志: CHANGELOG
快速入门
要定义和执行 Aqueduct 管道,有几种选择
- 使用 yaml 配置文件
- 使用 json 配置文件
- 在代码中手动
您可以在 examples 目录中查看一些示例。以下是一个使用 yaml 配置格式定义 Aqueduct 管道的简单示例 链接
sources:
# Register a local file source containing temperature readings for various cities
- type: File
name: temp_readings
file_type:
type: Csv
options: {}
# use built-in templating functionality
location: ./examples/temp_readings_${month}_${year}.csv
#Register a local file source containing a mapping between location_ids and location names
- type: File
name: locations
file_type:
type: Csv
options: {}
location: ./examples/location_dict.csv
stages:
# Query to aggregate temperature data by date and location
- - name: aggregated
query: >
SELECT
cast(timestamp as date) date,
location_id,
round(min(temperature_c),2) min_temp_c,
round(min(humidity),2) min_humidity,
round(max(temperature_c),2) max_temp_c,
round(max(humidity),2) max_humidity,
round(avg(temperature_c),2) avg_temp_c,
round(avg(humidity),2) avg_humidity
FROM temp_readings
GROUP by 1,2
ORDER by 1 asc
# print the query plan to stdout for debugging purposes
explain: true
# Enrich aggregation with the location name
- - name: enriched
query: >
SELECT
date,
location_name,
min_temp_c,
max_temp_c,
avg_temp_c,
min_humidity,
max_humidity,
avg_humidity
FROM aggregated
JOIN locations
ON aggregated.location_id = locations.location_id
ORDER BY date, location_name
# print 10 rows to stdout for debugging purposes
show: 10
# Write the pipeline result to a parquet file (can be omitted if you don't want an output)
destination:
type: File
name: results
file_type:
type: Parquet
options: {}
location: ./examples/output_${month}_${year}.parquet
此仓库包含 Aqueducts 框架的最小示例实现,可用于测试上述管道定义
cargo install aqueducts-cli
aqueducts --file examples/aqueduct_pipeline_example.yml --param year=2024 --param month=jan
路线图
- 文档
- ODBC 源
- ODBC 目标
- 阶段的并行处理
- 流式源(最初为 kafka + 可能是 aws kinesis)
- 流式目标(最初为 kafka)
依赖项
~54–73MB
~1.5M SLoC