Questions tagged [plainelastic.net]

Plainelastic.net is a Github opensource project that aims at being a GLASS BOX, and at providing full control to user over connectivity process.

9 questions
4
votes
2 answers

Any way to get NEST to deserialise directly into results?

I'm currently looking at writing an ElasticSearch.Net/NEST client as a possible replacement for PlainElastic.Net (since ElasticSearch.Net has failover functionality I want to use) In PlainElastic I can write something like: var command = new…
Ben Franklin
  • 626
  • 6
  • 21
4
votes
2 answers

testing elasticsearch on .NET

With Java I can write tests against an embedded elasticsearch node, this gives me loads of testing possibilities such as testing index config and tokenizers however more importantly I can test my search services with functional, easy to read and…
shmish111
  • 3,697
  • 5
  • 30
  • 52
1
vote
2 answers

Add multiple (not hardcoded) facets in my querybuiler

I'm pretty new to Elastic Search and the Elastic Search API I'm using in C#: PlainElastic.Net. I have a simple request, but I'm stuck with it: how can I add multiple (not hardcoded) facets in my querybuiler? //code has been simplified //list of…
oZn3r0L
  • 25
  • 1
  • 5
0
votes
0 answers

Add custom analyzer to plain elasticsearch

i put the custom analyzer through POSTMAN.. { "settings": { "index": { "number_of_shards": "3", "number_of_replicas": "1" }, "analysis" : { "analyzer" : { "ilhee_Custom"…
lilly
  • 21
  • 7
0
votes
1 answer

Getting complete value from ElasticSearch query

I have the following structure on my ElasticSearch: { _index: 3_exposureindex _type: exposuresearch _id: 12738 _version: 4 _score: 1 _source: { Name: test2_update Description: CreateUserId: 8 …
Vinay Pandey
  • 1,129
  • 3
  • 16
  • 33
0
votes
0 answers

Elastic search - PlainElastic.net manual json indexing

I would like to manually serialize an object to a string and index it by using PlainElastic.net. I tried the followed: Disk myDisk = Disks[1]; // Gets a Disk object from a dictionary string command = Commands.Index("Album", "Music",…
Gilad
  • 43
  • 8
0
votes
1 answer

Can I get additional ElasticSearch index settings?

To optimize bulk insertions of a large amount of data into ElasticSearch indexes, I'm adding functionality to our driver to suspend index refreshes for a period of time. I've done this using admin indices update settings to set…
Chris Mantle
  • 6,595
  • 3
  • 34
  • 48
0
votes
1 answer

Error in elasticsearch indexing using mongo river and PlainElastic.Net

I am trying to index my mongodb collection using PlainElastic.Net client and also using CURL. But I am failing miserably in both the attempts. My .net object is as follows Public Class…
0
votes
2 answers

MoreLikeThisQuery queries in PlainElastic.net

Can someone give me an Example for using PlainElastic.Net.Queries.MoreLikeThisQuery class? the documentation doesn't contain examples for using QueryBase classes.
Muhammad Soliman
  • 529
  • 5
  • 17