【发布时间】:2021-12-01 01:19:20
【问题描述】:
我正在编写一个 Kubeflow 组件,它读取输入查询并创建一个dataframe,大致如下:
from kfp.v2.dsl import component
@component(...)
def read_and_write():
# read the input query
# transform to dataframe
sql.to_dataframe()
我想知道如何将这个数据帧传递给我的 Kubeflow 管道中的下一个操作。 这可能吗?或者我是否必须将数据帧保存为 csv 或其他格式,然后传递它的输出路径? 谢谢
【问题讨论】:
标签: python kubeflow kubeflow-pipelines tfx google-cloud-vertex-ai