如何在弹性搜索中启用字段数据



我正在尝试在 elasticsearch 中启用字段数据,但我仍然遇到同样的错误。谁能告诉我我错过了什么?

.NET 代码

var resByApp = client.Search<ApiCall>(s => s.Aggregations(a => a
                    .Filter("my_filter", f => f
                          .Filter(fd => fd
                               .DateRange(r => r
                                   .GreaterThan(DateTime.UtcNow.ToBeginOfDay().AddDays(-DefaultDaysRange))
                                   .Field(p => p.CreatedDate)
                               )
                               &&
                               fd.Term(t => t.ServiceId, serviceId)
                           )
                    .Aggregations(ag => ag
                              .Terms("app_agg", st => st
                                  .Field(af => af.AppId))
                              )
                          )));

调试信息:

Invalid NEST response built from a unsuccessful low level call on POST: /abc_apicalls/apicall/_search
# Audit trail of this API call:
 - [1] BadResponse: Node: http://localhost:9200/ Took: 00:00:00.0459990
# ServerError: ServerError: 400Type: search_phase_execution_exception Reason: "all shards failed" CausedBy: "Type: illegal_argument_exception Reason: "Fielddata is disabled on text fields by default. Set fielddata=true on [appId] in order to load fielddata in memory by uninverting the inverted index. Note that this can however use significant memory.""
# OriginalException: System.Net.WebException: The remote server returned an error: (400) Bad Request.
   at System.Net.HttpWebRequest.GetResponse()
   at Elasticsearch.Net.HttpConnection.Request[TReturn](RequestData requestData) in C:Usersrusscsourcegitelasticsearch-net-5.xsrcElasticsearch.NetConnectionHttpConnection.cs:line 164
# Request:
{"aggs":{"my_filter":{"filter":{"bool":{"must":[{"range":{"createdDate":{"gt":"2017-03-26T00:00:00"}}},{"term":{"serviceId":{"value":2}}}]}},"aggs":{"app_agg":{"terms":{"field":"appId"}}}}}}
# Response:
{"error":{"root_cause":[{"type":"illegal_argument_exception","reason":"Fielddata is disabled on text fields by default. Set fielddata=true on [appId] in order to load fielddata in memory by uninverting the inverted index. Note that this can however use significant memory."}],"type":"search_phase_execution_exception","reason":"all shards failed","phase":"query","grouped":true,"failed_shards":[{"shard":0,"index":"abc_apicalls","node":"oYXnz0dhTZ6Bs5ZpspH1hg","reason":{"type":"illegal_argument_exception","reason":"Fielddata is disabled on text fields by default. Set fielddata=true on [appId] in order to load fielddata in memory by uninverting the inverted index. Note that this can however use significant memory."}}],"caused_by":{"type":"illegal_argument_exception","reason":"Fielddata is disabled on text fields by default. Set fielddata=true on [appId] in order to load fielddata in memory by uninverting the inverted index. Note that this can however use significant memory."}},"status":400}

我尝试过:

PUT abc_apicalls/apicall/text
{
  "properties": {
    "appId": { 
      "type":     "text",
      "fielddata": true
    }
  }
}

这是GET abc_apicalls的结果

{
  "abc_apicalls": {
    "aliases": {},
    "mappings": {
      "apicall": {
        "properties": {
          "appId": {
            "type": "text",
            "fields": {
              "keyword": {
                "type": "keyword",
                "ignore_above": 256
              }
            }
          },
          "properties": {
            "properties": {
              "appId": {
                "properties": {
                  "fielddata": {
                    "type": "boolean"
                  },
                  "type": {
                    "type": "text",
                    "fields": {
                      "keyword": {
                        "type": "keyword",
                        "ignore_above": 256
                      }
                    }
                  }
                }
              }
            }
          },
    ...
  }
}

资源: https://www.elastic.co/guide/en/elasticsearch/reference/current/fielddata.html

类型错误,这是启用字段数据的正确方法

PUT abc_apicalls/_mapping/apicall
{
   "apicall": {
      "properties": {
        "appId": {
          "type": "text",
          "fielddata": true
        }
      }
   }
}

我使用 Nest 5.4 并通过以下代码进行此放置映射:

_client.Map<AccountDoc>(m => m.Index("Your_Index_Name").Properties(p =>
            p.Text(t => t.Name(n => n.Your_Field_Name).Fielddata(true))));

相关内容

  • 没有找到相关文章

最新更新