标签: c# elasticsearch pipeline nest
我正在使用 NEST 与 ElasticSearch 进行通信。 在索引操作中,我可以指定要执行的PipeLine:
var insertDocument = client.Index<Document>(docInsert, s => s.Index(idxName) .Pipeline("attachments"));
是否可以在ElasticSearch Update中执行Ingest PipeLine?
提前致谢,
答案 0 :(得分:0)
没有。 Pipelines can only be specified on index and bulk (index operations).