-
Notifications
You must be signed in to change notification settings - Fork 1.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
[Feature Request] Convert ingest processor supports ip data type #12532
Comments
By my investigation, I found that we cannot change the mapping of an index when executing pipelines, so if we support ip type for the convert processor, what we can do is to validate the specified field to make sure it can be indexed into an ip type field. One use case is like this:
, if the field |
Thanks @gaobinlong , I don't think the convert processor should have any support for |
|
Ah I see, I should have checked that for sure, thanks for explaining. So back to your question: I think this is a valid case than (and it seems like also followed by Elasticsearch). |
There was a little bit of discussion about |
The user's case is same to the above case, if convert processor supports ip type, it can do some validation for the specified field and then populate the target field if the value is a valid ipv4/ipv6 address, if not throw an error or exit quietly(with |
Is your feature request related to a problem? Please describe
The
ip
data type was introduced in OpenSearch 1.x, but the convert ingest processor has not support that type yet, we need to add the ip type to the supported types in the processor.Request:
Response:
Describe the solution you'd like
The convert ingest processor supports the ip data type.
Related component
Indexing
Describe alternatives you've considered
No
Additional context
No response
The text was updated successfully, but these errors were encountered: