Questions tagged [elasticsearch-net]

Repository for both Elasticsearch.Net and NEST, the two official elasticsearch .NET clients.

  • low-level client that provides a one-to-one mapping with the Elasticsearch REST API.
  • No dependencies
  • Almost completely generated from the official REST API spec which makes it easy to keep up to date
  • Comes with an integration test suite that can be generated from the YAML test definitions that the Elasticsearch core team uses to test their REST API
  • Has no opinions on how you create or consume requests and responses
  • Load balancing and cluster failover support *All calls have async variants

Home page for both Elasticsearch.Net and NEST, the two official elasticsearch .NET clients, can be found here.

Source code repository is here.

261 questions
0
votes
1 answer

Elasticsearch-net & NEST - Search Response is different when sorting

... SearchRequest searchRequest = new SearchRequest { Size = 100, Source = sf, Filter = filters, Sort = sortsFields }; var searchResponse =…
Philip K. Adetiloye
  • 3,102
  • 4
  • 37
  • 63
0
votes
3 answers

Calling Elasticsearch Template Query using NEST?

Is there a way to call Template Query using NEST? Is there any examples?
0
votes
1 answer

How to create a multi-field mapping in elasticsearch using NEST

I'm following a tutorial on elastic search here. It is not with .NET but I've been able to pretty much follow everything being discussed using NEST. I've gotten to the part about mapping and I do not know how to represent the request below using…
ritcoder
  • 3,274
  • 10
  • 42
  • 62
-1
votes
1 answer

How to register snapshot directory in Amazon Elasticsearch Service using .net SDK?

I want to create repository to S3 from Amazon ES using .net SDK. But I could not find any methods, sample codes and articles to do that. Perhaps Is it no implemeneted in .net SDK?
-2
votes
1 answer

Elasticsearch full text search is too slow

I use elasticsearch for full text search. When query text is short then it works quickly but when query text is big (about 10-15 words) then it's very slow.
1 2 3
17
18