-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
MINOR - Hybrid Ingestion Agent - Link ingestion agents to ingestion pipelines #19751
MINOR - Hybrid Ingestion Agent - Link ingestion agents to ingestion pipelines #19751
Conversation
Hi there 👋 Thanks for your contribution! The OpenMetadata team will review the PR shortly! Once it has been labeled as Let us know if you need any help! |
...tadata-service/src/main/java/org/openmetadata/service/jdbi3/IngestionPipelineRepository.java
Outdated
Show resolved
Hide resolved
The Java checkstyle failed. Please run You can install the pre-commit hooks with |
@@ -221,6 +221,10 @@ | |||
"applicationType": { | |||
"description": "Type of the application when pipelineType is 'application'.", | |||
"type": "string" | |||
}, | |||
"ingestionAgent" : { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This requires migration right cc @pmbrull
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@harshach db migration is not required since this field is nullable so any ingestion pipeline that is not hybrid won't have an agent reference.
f5a8118
to
d073f36
Compare
|
|
Describe your changes:
Adds the
IngestionAgent
field to theIngestionPipeline
schema. The field is a simple entity reference.There's no db migrations since the field can be null.
This is required for the Collate's Hybrid ingestion agent feature.
Fixes GEN-2117
Type of change:
Checklist:
Fixes <issue-number>: <short explanation>