We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
currently, we have rule with
name: DummyOperator description: The configuration for converting Airflow DummyOperator to DolphinScheduler Shell task. migration: module: src: airflow.operators.dummy_operator.DummyOperator dest: pydolphinschsduler.tasks.shell.Shell parameter: - src: task_id dest: name - src: bash_command dest: command default: echo 'Airflow DummyOperator'
maybe we should add new tag example, for the migrate which include src and dest,
example
src
dest
name: DummyOperator description: The configuration for converting Airflow DummyOperator to DolphinScheduler Shell task. migration: ... example: - src: syntax_before - dest: syntax_after
and we even can use this example in our tests
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
currently, we have rule with
maybe we should add new tag
example
, for the migrate which includesrc
anddest
,and we even can use this example in our tests
The text was updated successfully, but these errors were encountered: