We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
8.15.2
No response
bundled
lunix
IngestDocument doesn't resolve field paths the same way as the rest of the system causing ingest pipelines to fail.
PUT /users/_doc/1?refresh=wait_for { "email": "mardy.brown@asciidocsmith.com", "first_name": "Mardy", "last_name": "Brown", "city": "New Orleans", "county": "Orleans", "state": "LA", "zip": 70116, "web": "mardy.asciidocsmith.com" } PUT /_enrich/policy/users-policy { "match": { "indices": "users", "match_field": "email", "enrich_fields": ["first_name", "last_name", "city", "zip", "state"] } } POST /_enrich/policy/users-policy/_execute PUT /_ingest/pipeline/user_lookup { "description" : "Enriching user details to messages", "processors" : [ { "enrich" : { "policy_name": "users-policy", "field" : "system1.email", "target_field": "user", "max_matches": "1" } } ] } PUT /my-index-00001/_doc/my_id?pipeline=user_lookup { "system1.email": "mardy.brown@asciidocsmith.com" }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Elasticsearch Version
8.15.2
Installed Plugins
No response
Java Version
bundled
OS Version
lunix
Problem Description
IngestDocument doesn't resolve field paths the same way as the rest of the system causing ingest pipelines to fail.
Steps to Reproduce
Logs (if relevant)
No response
The text was updated successfully, but these errors were encountered: