Skip to content

v3.12.0

Compare
Choose a tag to compare
@ptitzler ptitzler released this 04 Oct 22:43
· 144 commits to main since this release

This release requires pipeline migration.

Quick links

New feature highlights

Pipeline editor: attach Kubernetes labels to nodes

Kubernetes labels can now be defined as pipeline defaults or assigned to individual nodes.

image

Use labels to assign identifying metadata to the Kubernetes pods that execute the node.

Pipeline editor: disable node caching

Some runtime environments support node output caching, reducing the need to re-execute nodes, which can improve performance and reduce resource usage. For the Kubeflow Pipelines runtime you can now disable node caching for custom nodes that produce output in a non-deterministic way. Node caching can be disabled for all nodes by specifying a pipeline default or for individual nodes.

Generic nodes are currently never cached, due to an Elyra limitation.

image

Pipeline editor: user-friendly property inputs

Pipeline default properties and node properties can now be configured using custom widgets:
image

Refer to the documentation for widget descriptions:

Pipeline editor: use files to provide text inputs

In previous releases string-based input properties for custom components could only be provided by entering text or selecting the output of an upstream node. The text input widget in the pipeline editor was extended to also allow for text input from a local file:

2022-09-12_15-00-47 (1)

In the example above local file url.txt contains a valid URL. The content of this file is not stored in the .pipeline file, only its name and location. The file is only processed by Elyra when you submit or export a pipeline using the pipeline editor or the elyra-pipeline CLI.

The elyra-pipeline describe CLI command was extended to list input files like these as local file dependencies that must be distributed with the .pipeline file:

$ elyra-pipeline describe download.pipeline
...
Pipeline name: download
Description: None specified
Pipeline type: KUBEFLOW_PIPELINES
Pipeline format version: 7.5
Pipeline runtime: Kubeflow Pipelines
Number of generic nodes: 0
Number of custom nodes: 1
Script dependencies: None specified
Notebook dependencies: None specified
Local file dependencies:
    - url.txt
...

Improved component catalog connectors

The Apache Airflow package component catalog connector, the Apache Airflow provider package component catalog connector, and the URL component catalog connector now support secured environments where SSL server authenticity can only be validated using certificates based on private public key infrastructure with root and optionally intermediate certificate authorities that are not publicly trusted. Refer to the connector documentation links for details.

What's Changed

New Features

  • Support disabling node output caching for custom KFP components by @ptitzler in #2905
  • Support not publicly trusted certificates in built-in component catalog connectors by @ptitzler in #2912
  • Make multi-valued input fields more user-friendly by @kiersten-stokes in #2927
  • Pipeline editor: Allow for configuration of labels by @ptitzler in #2943

Bug Fixes

Other

New Contributors

Full Changelog: v3.11.0...v3.12.0