是否可以在 ElasticSearch 更新中执行 Ingest PipeLine?

Is it possible to execute an Ingest PipeLine in an ElasticSearch Update?

我正在使用 NESTElasticSearch 进行通信。 在索引操作中,我可以指定要执行的管道:

var insertDocument = client.Index<Document>(docInsert,
s => s.Index(idxName)
.Pipeline("attachments"));

是否可以在 ElasticSearch 更新中执行 Ingest PipeLine?

提前致谢,

没有。 Pipelines can only be specified on index and bulk (index operations).