先說結論:欄位型別更改為 'keyword'
elasticSearch官方文件中建立index程式碼如下
PUT /my_store { "mappings" : { "products" : { "properties" : { "productID" : { "type" : "string", "index" : "not_analyzed" } } } } }
由於es官方文件版本基於2.x編寫,而本人安裝版本為6.6 在執行如上程式碼過程中出現如下錯誤
No handler for type [string] declared on field [productID]
這裡報錯是因為ElasticSearch5.x以上版本沒有string型別了,換成了text和keyword作為字串型別。
字串 - text:用於全文索引,該型別的欄位將通過分詞器進行分詞,最終用於構建索引
字串 - keyword:不分詞,只能搜尋該欄位的完整的值,只用於 filtering
此時我們將文件中程式碼更改為如下
PUT /my_store { "mappings" : { "products" : { "properties" : { "productID" : { "type" : "keyword", "index": true } } } } }
建立成功,此時我們進行查詢試試看
GET /my_store/products/_search { "query" : { "constant_score" : { "filter" : { "term" : { "productID" : "XHDK-A-1293-#fJ3" } } } } }