简体   繁体   English

KFP SDK v2、v2 命名空间和 v2 兼容模式之间有什么区别?

[英]What is difference between the KFP SDK v2, v2 namespace, and v2 compatible mode?

What is the difference between KFP SDK v2, the v2 namespace in KFP SDK v1, and v2 compatible mode? KFP SDK v2、KFP SDK v1中的v2命名空间、v2兼容模式有什么区别?

The KFP SDK has two major versions: v1.8.x and v2.xx (in pre-release at the time of writing this). KFP SDK 有两个主要版本: v1.8.xv2.xx (在撰写本文时处于预发布状态)。

KFP SDK v2.xx compiles pipelines and components to IR YAML [ example ], a platform neutral pipeline representation format. KFP SDK v2.xx将管道和组件编译为 IR YAML [ 示例],一种平台中立的管道表示格式。 It can be run on the KFP open source backend or on other platforms, such as Google Cloud Vertex AI Pipelines .它可以在KFP 开源后端或其他平台上运行,例如Google Cloud Vertex AI Pipelines

KFP SDK v1.8.x , by default, compiles pipelines and components to Argo Workflow YAML . KFP SDK v1.8.x默认情况下将管道和组件编译为Argo Workflow YAML Argo Workflow YAML is executed on Kube.netes and is not platform neutral . Argo Workflow YAML 在 Kube.netes 上执行,不是平台中立的。

KFP SDK v1.8.x provides two ways to author pipelines using v2 Python syntax: KFP SDK v1.8.x 提供了两种使用 v2 Python 语法编写管道的方法:

KFP SDK v2-compatible mode is a feature in KFP SDK v1.8.x which permits using v2 Python authoring syntax within KFP SDK v1 but compiles to Argo Workflow YAML. v2-compatible mode is deprecated and should not be used. KFP SDK v2 兼容模式是 KFP SDK v1.8.x 中的一项功能,它允许在 KFP SDK v1 中使用 v2 Python 创作语法,但编译为 Argo Workflow YAML。不应使用 v2 兼容模式。

The KFP SDK v2 namespace in KFP SDK v1.8.x ( from kfp.v2 import dsl, compiler ) permits using v2 Python authoring syntax within KFP SDK v1 and compiles to IR YAML [ usage example ]. KFP SDK v2 命名空间在 KFP SDK v1.8.x( from kfp.v2 import dsl, compiler )允许在 KFP SDK v1 中使用 v2 Python 创作语法并编译为 IR 883701752 用法88088。 While this mode is not deprecated, users should prefer authoring IR YAML via the pre-released KFP SDK v2.xx .虽然此模式未被弃用,但用户应该更喜欢通过预发布的KFP SDK v2.xx 创作 IR YAML

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 关闭 AWS 中的 IdleConnectionReaper Java SDK v2 - Shutdown IdleConnectionReaper in AWS Java SDK v2 无法在 Kotlin SDK v2 中的 DynamoDb 中查询 GSI - Cannot query GSI in DynamoDb in Kotlin SDK v2 使用 java sdk v2 调用 sagemaker 推理端点 - Call a sagemaker inference endpoint using the java sdk v2 go SDK v2中读取CloudWatch日志查询状态 - Reading CloudWatch log query status in go SDK v2 如何将 ExitHandler 与 Kubeflow 管道一起使用 SDK v2 - How to use ExitHandler with Kubeflow Pipelines SDK v2 Java AWS SDK v2:列出存储桶密钥,但仅列出文件 - Java AWS SDK v2: List bucket keys, but only the files 如何对使用 AWS SDK 为 Go V2 实施的 Lambda 进行单元测试 - How to Unit Test a Lambda Implemented with AWS SDK for Go V2 ses.sendCustomVerificationEmail 不是 function 使用 AWS JavaScript SDK v2 - ses.sendCustomVerificationEmail is not a function using AWS JavaScript SDK v2 Cosmos DB v2 SDK PreferredLocations 属性是否在 V3 SDK 中可用 - Is Cosmos DB v2 SDK PreferredLocations Property available in V3 SDK 使用 NodeJS 在 AWS Aurora Serverless V2 上使用什么进行连接? - What to use to connect on AWS Aurora Serverless V2 using NodeJS?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM