Hello,
Recently, I have started to work on C# NEST (ElasticSearch), and having some problems:
-
Error Message: No route taking 1 parameters {index}/_doc/{id}
when using
await ESClient.GetAsync(DocumentPath<TModel>.Id(new Id(model.Id)), x => x.Index(indexName));
or
await ESClient.DocumentExistsAsync(DocumentPath<TModel>.Id(new Id(model.Id)), x => x.Index(indexName))
-
Error Message: Invalid NEST response built from a successful (200) low level call on POST: /{index}/_bulk
when using
await ESClient.IndexManyAsync(list, indexName)
or
await ESClient.BulkAsync(x => x.Index(indexName).IndexMany(list))
whereas this works fine
await ESClient.IndexDocumentAsync(model)
With my respect.