是否可以在 ElasticSearch 更新中执行 Ingest PipeLine?
Is it possible to execute an Ingest PipeLine in an ElasticSearch Update?
我正在使用 NEST 与 ElasticSearch 进行通信。
在索引操作中,我可以指定要执行的管道:
var insertDocument = client.Index<Document>(docInsert,
s => s.Index(idxName)
.Pipeline("attachments"));
是否可以在 ElasticSearch 更新中执行 Ingest PipeLine?
提前致谢,
我正在使用 NEST 与 ElasticSearch 进行通信。 在索引操作中,我可以指定要执行的管道:
var insertDocument = client.Index<Document>(docInsert,
s => s.Index(idxName)
.Pipeline("attachments"));
是否可以在 ElasticSearch 更新中执行 Ingest PipeLine?
提前致谢,