Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature][Studio] support execute jar by form #3381

Open
2 of 3 tasks
Pandas886 opened this issue Apr 11, 2024 · 1 comment
Open
2 of 3 tasks

[Feature][Studio] support execute jar by form #3381

Pandas886 opened this issue Apr 11, 2024 · 1 comment
Labels
New Feature New feature
Milestone

Comments

@Pandas886
Copy link
Contributor

Search before asking

  • I had searched in the issues and found no similar feature requirement.

Description

目前提交jar任务是需要sql的,但是如果jar的入参比较复杂,比如有单引号和双引号等,会导致execute jar sql解析失败。建议可以用前端表单来提交,更解决云厂商的jar任务管理方式,降低学习成本。
image

Use case

目前1.0.0版本中的execute jar sql是没法正常跑下面用例的
Examples:
Find all orders mentioned in the source table, then mark as important if the price is above 100
or delete if the price is under 10.



./flink run \
    /path/to/paimon-flink-action-0.8-SNAPSHOT.jar \
    merge_into \
    --warehouse <warehouse-path> \
    --database <database-name> \
    --table T \
    --source_table S \
    --on "T.id = S.order_id" \
    --merge_actions \
    matched-upsert,matched-delete \
    --matched_upsert_condition "T.price > 100" \
    --matched_upsert_set "mark = 'important'" \
    --matched_delete_condition "T.price < 10" 

Related issues

No response

Are you willing to submit a PR?

  • Yes I am willing to submit a PR!

Code of Conduct

@Pandas886 Pandas886 added New Feature New feature Waiting for reply Waiting for reply labels Apr 11, 2024
@aiwenmo aiwenmo removed the Waiting for reply Waiting for reply label Apr 11, 2024
@aiwenmo aiwenmo added this to the 1.1.0 milestone Apr 11, 2024
@Zzm0809
Copy link
Contributor

Zzm0809 commented Apr 17, 2024

你可以来实现此功能吗?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
New Feature New feature
Projects
Status: Discussion
Development

No branches or pull requests

3 participants