1
我們有一個使用copy_to(自定義_all)的elasticsearch映射。它僅用於查詢,不存儲。我們使用「分析器」分析原始file_content_de:「德語」。我們是否還需要分析copy_to,ES文檔對此並不十分清楚?如果原始內容已被分析,是否有必要重新分析elasticsearch copy_to?
ES文件:https://www.elastic.co/guide/en/elasticsearch/guide/2.x/custom-all.html
"attachment_contents_de": {
"type": "string"
},
...
"file_content_de": {
"type": "string",
"analyzer": "german",
"copy_to": "attachment_contents_de",
"include_in_all": false,
"store":true
},
...