[
https://issues.apache.org/jira/browse/FLINK-40409?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Yanquan Lv resolved FLINK-40409.
--------------------------------
Resolution: Fixed
Merged in master via 48944c6fcd7f952464abee9e2a1c8829e5ac05d6.
> Introduce inline Python UDF definition in YAML pipeline
> -------------------------------------------------------
>
> Key: FLINK-40409
> URL: https://issues.apache.org/jira/browse/FLINK-40409
> Project: Flink
> Issue Type: New Feature
> Components: Flink CDC
> Reporter: Xiqian Yu
> Assignee: Xiqian Yu
> Priority: Major
> Labels: pull-request-available
> Fix For: cdc-3.7.0
>
>
> It is suggested to introduce inline Python UDF definitions in YAML pipeline
> jobs:
> transform:
> - source-table: db.usersprojection: ID, py_normalize(EMAIL) AS EMAIL_NORM,
> py_double(AGE) AS DOUBLEDpipeline: user-defined-function:
> - name: py_normalizepython-code: | def eval(value: str) -> str:
> return value.strip().lower()python-executable: /usr/bin/python3 -
> name: py_doublepython-code: | def eval(value: int) -> int:
> return value * 2
--
This message was sent by Atlassian Jira
(v8.20.10#820010)