0

次のコードを使用してマッピングを変更しようとしています:

PUT /in_test/_mapping/keyword
{
 "properties" : {
            "term" : {
                "type" : "text",
                "index" : "not_analyzed" 
            }
        }
}

しかし、それはエラーを出しています:

{
  "error": {
"root_cause": [
  {
    "type": "remote_transport_exception",
    "reason": "[tiebreaker-0000000000][172.17.0.24:19555][indices:admin/mapping/put]"
  }
],
"type": "illegal_argument_exception",
"reason": "Could not convert [term.index] to boolean",
"caused_by": {
  "type": "illegal_argument_exception",
  "reason": "Failed to parse value [not_analyzed] as only [true] or [false] are allowed."
}
},
"status": 400
}

また、次の方法でインデックスを再作成しようとしました。

PUT /in_test
 {
"mappings" : {
    "keyword" : {
        "properties" : {
            "term" : {
                "type" : "text",
                "index" : "not_analyzed" 
            }
        }
    }
}
}

しかし、私は得ました:

{
 "error": {
"root_cause": [
  {
    "type": "mapper_parsing_exception",
    "reason": "Failed to parse mapping [keyword]: Could not convert [term.index] to boolean"
  }
],
"type": "mapper_parsing_exception",
"reason": "Failed to parse mapping [keyword]: Could not convert [term.index] to boolean",
"caused_by": {
  "type": "illegal_argument_exception",
  "reason": "Could not convert [term.index] to boolean",
  "caused_by": {
    "type": "illegal_argument_exception",
    "reason": "Failed to parse value [not_analyzed] as only [true] or [false] are allowed."
  }
}
 },
 "status": 400
 }

_type をキーワードに変更しようとしましたが、まだ機能していません。基本的に、文字列の完全一致を検索したいので、これを参照しています:

https://www.elastic.co/guide/en/elasticsearch/guide/current/_finding_exact_values.html#_term_query_with_text

4

1 に答える 1