You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When diving deep on this issue, I found a new issue in bulk API, when there's a specified ingest pipeline in the update action with upsert, the pipeline will not be executed, which should be a bug.
, we can see that the document doesn't contain the field z which is set by the ingest pipeline. But if we set the ingest pipeline in the create action, it works well:
POST /_bulk
{"create":{"_index":"test1","_id":"1", "pipeline":"test_pipeline"}}
{"x":3,"y":5}
Describe the bug
When diving deep on this issue, I found a new issue in bulk API, when there's a specified ingest pipeline in the update action with upsert, the pipeline will not be executed, which should be a bug.
Related component
Indexing
To Reproduce
Get test1/_doc/1
the result is:
, we can see that the document doesn't contain the field
z
which is set by the ingest pipeline. But if we set the ingest pipeline in the create action, it works well:, the result is:
Expected behavior
Bulk API should resolve the ingest pipeline specified in the update action with upsert.
Additional Details
Host/Environment (please complete the following information):
The text was updated successfully, but these errors were encountered: