-
Notifications
You must be signed in to change notification settings - Fork 25.2k
Add support for geo_shape_match enrich policy type #42639
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
Labels
:Data Management/Ingest Node
Execution or management of Ingest Pipelines including GeoIP
Comments
Pinging @elastic/es-core-features |
55 tasks
talevy
added a commit
to talevy/elasticsearch
that referenced
this issue
Sep 27, 2019
this commit introduces a geo-match enrich processor that looks up a specific `geo_point` field in the enrich-index for all entries that have a geo_shape match field that meets some specific relation criteria with the input field. For example, the enrich index may contain documents with zipcodes and their respective geo_shape. Ingesting documents with a geo_point field can be enriched with which zipcode they associate according to which shape they are contained within. this commit also refactors some of the MatchProcessor by moving a lot of the shared code to AbstractEnrichProcessor. Closes elastic#42639.
talevy
added a commit
to talevy/elasticsearch
that referenced
this issue
Oct 7, 2019
this commit introduces a geo-match enrich processor that looks up a specific `geo_point` field in the enrich-index for all entries that have a geo_shape match field that meets some specific relation criteria with the input field. For example, the enrich index may contain documents with zipcodes and their respective geo_shape. Ingesting documents with a geo_point field can be enriched with which zipcode they associate according to which shape they are contained within. this commit also refactors some of the MatchProcessor by moving a lot of the shared code to AbstractEnrichProcessor. Closes elastic#42639.
talevy
added a commit
that referenced
this issue
Oct 7, 2019
this commit introduces a geo-match enrich processor that looks up a specific `geo_point` field in the enrich-index for all entries that have a geo_shape match field that meets some specific relation criteria with the input field. For example, the enrich index may contain documents with zipcodes and their respective geo_shape. Ingesting documents with a geo_point field can be enriched with which zipcode they associate according to which shape they are contained within. this commit also refactors some of the MatchProcessor by moving a lot of the shared code to AbstractEnrichProcessor. Closes #42639.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This includes:
geo_shape_match
policy type to EnrichPolicy class.geo_shape_match
. Query field in source index needs to be of type geo shape.Relates to #32789
The text was updated successfully, but these errors were encountered: