When using index
mode, does IndexRequest
trigger the ingest phase for a document already stored in an index?
I'd like to use an ingest pipeline on an index, and I want to use the set processor even for documents that already exist in the index and are being updated via an IndexRequest
call. If IndexRequest
replaces an existing document and triggers the ingest phase, then it sounds like an ingest pipeline with a set processor would trigger whenever the document is updated.
Can someone confirm?