-
Notifications
You must be signed in to change notification settings - Fork 24.9k
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
Add support for _meta field to ingest pipelines #75905
Add support for _meta field to ingest pipelines #75905
Conversation
Pinging @elastic/es-core-features (Team:Core/Features) |
@elasticmachine update branch |
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.
server/src/main/java/org/elasticsearch/action/ingest/PutPipelineTransportAction.java
Outdated
Show resolved
Hide resolved
server/src/main/java/org/elasticsearch/ingest/PipelineConfiguration.java
Outdated
Show resolved
Hide resolved
server/src/test/java/org/elasticsearch/ingest/PipelineFactoryTests.java
Outdated
Show resolved
Hide resolved
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.
LGTM aside from a typo in the header. The other feedback is non-blocking nits.
Thanks @masseyke!
Co-authored-by: James Rodewig <[email protected]>
Co-authored-by: James Rodewig <[email protected]>
Co-authored-by: James Rodewig <[email protected]>
@elasticmachine update branch |
Thanks, @masseyke. LGTM once CI is happy (looks like checkstyle is flagging some unused imports in PipelineConfiguration right now) |
…seyke/elasticsearch into feature/add_meta_to_ingest_pipelines
@elasticmachine run elasticsearch-ci/precommit |
We are adding a _meta field to many of our REST APIs so that users can attach whatever metadata they want. The data in this field will not be used by Elasticsearch. This commit add the _meta field to ingest pipelines.
Pinging @elastic/kibana-stack-management (Team:Stack Management) |
We are adding a _meta field to many of our REST APIs so that users can attach whatever metadata they want. The data in this field will not be used by Elasticsearch. This commit add the _meta field to ingest pipelines. Relates to #75799
Adds a _meta field to ingest pipelines for custom user metadata