当前位置:   article > 正文

Elasticsearch配置ik_max_word默认analyzer_analysis.analyzer.default.type

analysis.analyzer.default.type

安装插件的相信你已经搞掂了
https://github.com/medcl/elasticsearch-analysis-ik

我们国人,使用的字段,基本都是中文了,不需要什么理由。但是如果要我在每个mappings里一个个写属性的分词器,我就很不爽了。
既然 elasticsearch 默认使用的是 standard ,我就想把默认设置成 ik_max_word

尝试网上所说的方法

网上的多数滞后的资料是这么说的,在 elasticsearch.yml 写上这句

index.analysis.analyzer.default.type: ik_max_word
  • 1

或详细的写法,从名字可以看出来,default 是索引和搜索时用的默认的 analyzer,default_index 是索引时用的默认的 analyzer , default_search 是查询时用的默认analyzer。

index:
  analysis:
    analyzer:
        default:
            type: ik_max_word
        default_index:
            type: ik_max_word
        default_search:
            type: ik_max_word
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

那就先尝试一下吧。不加 -d 用前台运行,可以看到报错信息如下:

*************************************************************************************
Found index level settings on node level configuration.

Since elasticsearch 5.x index level settings can NOT be set on the nodes 
configuration like the elasticsearch.yaml, in system properties or command line 
arguments.In order to upgrade all indices the settings must be updated via the 
/${index}/_settings API. Unless all settings are dynamic all indices must be closed 
in order to apply the upgradeIndices created in the future should use index templates 
to set default values. 

Please ensure all required values are updated on all indices by executing: 

curl -XPUT 'http://localhost:9200/_all/_settings?preserve_existing=true' -d '{
  "index.analysis.analyzer.default.type" : "ik_max_word"
}'
*************************************************************************************
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17

说得很清晰,5.x 版本后,不能写在配置文件了,使用restApi来配置吧。

正确配置方式

这里我只是针对 cherish_blog 这个index

PUT /cherish_blog
{
    "settings" : {
        "index" : {
            "analysis.analyzer.default.type": "ik_max_word"
        }
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

根据这里的说明,尝试下吧

https://github.com/medcl/elasticsearch-analysis-ik

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/黑客灵魂/article/detail/966697
推荐阅读
相关标签
  

闽ICP备14008679号