我想多場elasticsearch多字段映射elasticsearch
- 1字段映射 - 「在」應該包含所有的索引列,
- 第二場 - 「原稿」應包含文本原樣。
例如:
"findings": {
"type": "multi_field",
"fields": {
"in": {
"type": "string"
},
"orig": {
"type": "string",
"index":"not_analyzed"
}
}
一旦我創建這個和查詢,這是它的外觀。
當index ='no'是否意味着該字段永遠不會被索引?
"findings": {
"type": "string",
"index": "no",
"fields": {
"in": {
"type": "string"
},
"orig": {
"type": "string",
"index": "not_analyzed"
}
}
謝謝..你是指OP的第二個例子嗎? – user1050619
您在第一次映射中使用了「type」:「multi_field」,而在第二次映射中使用了「type」:「string」。第二個映射被稱爲第二個例子 – Rahul