Elasticsearch NEST client served with attribute "not_analyzed" is still parsed when search keywords contain a hyphen

I have a class named "IndexModel":

public class IndexModel
{
    [ElasticProperty(Index= FieldIndexOption.NotAnalyzed, Store = true)]
    public string ModelNumber{ get; set; }
}

      

The following is how to set up an elastic client:

var uri = new Uri("http://localhost:9200");
var config = new ConnectionSettings(uri);
var client = new ElasticClient(config);
client.Map<IndexModel>(m => m.MapFromAttributes());

      

I see the resulting output from the answer:

Request {
"indexmodel": {
"properties": {

  "modelNumber": {
    "type": "string",
    "store": true,
    "index": "not_analyzed"
     },
    }
  }
}

      

and I have one index record for this type, the value of the "ModelNumber" property is "test-123" and the following is my query:

var result = client.Search<IndexModel>(s => s.Query(new TermQuery() { Field = Property.Path<IndexModel>(it => it.ModelNumber), Value = "test-123"}));

      

here is the final request I got:

Method: POST, 
Url: http://localhost:9200/_search, 
Request: {
  "query": {
    "term": {
      "modelNumber": {
        "value": "test-123"
      }
    }
  }
}

      

But I can't get the result, if I change the value of the "ModelNumber" property to "test123", reindex it and do a keyword search "test123" then it works, so I think the parser still parsed the ModelNumber property, can anyone help me, thanks.

+3


source to share


1 answer


I had the same problem, the solution first created the index, then put the display and finally added your data.

Add type attribute to model field



 [ElasticProperty(OmitNorms = true, Index = FieldIndexOption.NotAnalyzed)]

        var node = new Uri("http://192.168.0.56:9200/");
        var settings = new ConnectionSettings(node, defaultIndex: "ticket");
        var client = new ElasticClient(settings);

        var createIndexResult = client.CreateIndex("ticket");
        var mapResult = client.Map<TicketElastic>(c => c.MapFromAttributes().IgnoreConflicts().Type("TicketElastic").Indices("ticket"));

      

+5


source







All Articles