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

[Improve][Config] Support ignore plugin_input/plugin_output of simple job config #8310

Draft
wants to merge 1 commit into
base: dev
Choose a base branch
from

Conversation

hailin0
Copy link
Member

@hailin0 hailin0 commented Dec 16, 2024

Purpose of this pull request

[Config] Support ignore plugin_input/plugin_output of simple job config

Does this PR introduce any user-facing change?

Remove plugin_input/plugin_output from simple job config(1 source/1 sink)

env {
  parallelism = 1
  job.mode = "BATCH"
}

source {
  FakeSource {
    schema = {
      fields {
        name = "string"
        age = "int"
      }
    }
  }
}

transform {
  Sql {
    query = "select *, 1 as f1 from dual"
  }
  Sql {
    query = "select *, 2 as f2 from dual"
  }
}

sink {
  Console {
  }
}

How was this patch tested?

Check list

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant