标签:http 动态解析 prope last 搜索 keep question 推荐 res
拼音分析器:GitHub/medcl/elasticsearch-analysis-pinyin
在搜索关键字中可以包含拼音。
https://github.com/medcl/elasticsearch-analysis-pinyin/releases/download/v7.6.2/elasticsearch-analysis-pinyin-7.6.2.zip
在 CentOS 7.4 中,如果使用 YUM 安装 Elasticsearch 服务,则:
#!/bin/sh cd /usr/share/elasticsearch # 直接在线安装 ./bin/elasticsearch-plugin install "https://github.com/medcl/elasticsearch-analysis-pinyin/releases/download/v7.6.2/elasticsearch-analysis-pinyin-7.6.2.zip" # 或者使用离线(第一步下载的安装包) ./bin/elasticsearch-plugin install "file:///path/to/elasticsearch-analysis-pinyin-7.6.2.zip"
systemctl restart elasticsearch.service
# curl http://10.10.50.233:9200/_cat/plugins elasticsearch-deve analysis-pinyin 7.6.2
#!/bin/sh ################################################################################ # 安装 ################################################################################ # CentOS 7.4,如果你使用YUM源来安装Elasticsearch服务 cd /usr/share/elasticsearch ./bin/elasticsearch-plugin install "https://github.com/medcl/elasticsearch-analysis-pinyin/releases/download/v6.3.2/elasticsearch-analysis-pinyin-6.3.2.zip" # 版本一定要对应,否则安装会产生类似如下的提示: # Plugin [analysis-pinyin] was built for Elasticsearch version 6.3.0 but version 6.3.2 is running ################################################################################ # 重启 ################################################################################ systemctl restart elasticsearch.service ################################################################################ # 验证 ################################################################################ # GET /_cat/plugins # e8eosG_ analysis-pinyin 6.3.2
#!/bin/sh ################################################################################ # 检查源码并切换到指定的版本 ################################################################################ git clone https://github.com/medcl/elasticsearch-analysis-pinyin.git cd elasticsearch-analysis-pinyin git checkout tags/v6.3.2 -b v6.3.2 ################################################################################ # 修改POM.XML ################################################################################ sed -i ‘s#<elasticsearch.version>6.3.0</elasticsearch.version>#<elasticsearch.version>6.3.2</elasticsearch.version>#g‘ pom.xml sed -i ‘s#<version>${elasticsearch.version}</version>#<version>6.3.2</version>#g‘ pom.xml ################################################################################ # 打包 ################################################################################ mvn clean package -Delasticsearch.version=6.3.2 ################################################################################ # 安装 ################################################################################ # CentOS 7.4,如果你使用YUM源来安装Elasticsearch服务 cd /usr/share/elasticsearch bin/elasticsearch-plugin install "file:///path/to/elasticsearch-analysis-pinyin/target/elasticsearch-analysis-pinyin-6.3.2.jar"
### 未成功的原因 ###
思路是对的,未成功的原因是/src/main/resources/plugin-descriptor.properties中的变量没有被解析,导致在安装生成的Jar时失败。
目前没有找到解析属性文件中变量的命令行选项。
有点头绪:
「How do I filter resources based on values from a properties file?」
「How do I filter resource files to include the values of properties?」
# TODO 在MAVEN打包时,动态解析resources/中的属性文件内的变量。
错误信息:
startOffset must be non-negative, and endOffset must be >= startOffset, and offsets must not go backwards startOffset=0,endOffset=9,lastStartOffset=6 for field ‘xxxxxxx‘
解决办法:
"keep_original" : true
「Elasticsearch」- 中文拼音分析器 @20210125
标签:http 动态解析 prope last 搜索 keep question 推荐 res
原文地址:https://www.cnblogs.com/k4nz/p/14327982.html