gitchennan / elasticsearch-analysis-lc-pinyin

一款运行于Elasticsearch之上的中文拼音智能分词插件,支持全拼、首字母、中文混合搜索
Artistic License 2.0
155 stars 57 forks source link

completion suggest使用lc_index索引计算量巨大 #19

Open xupengrun opened 6 years ago

xupengrun commented 6 years ago

使用ES completion suggest时,采用lc_index索引数据时,ES进程卡死,cpu 直接100%,请教下是什么原因? 字段mapping如下:

"suggestText": { "type": "completion", "analyzer": "lc_index", "search_analyzer": "lc_search", "payloads": true, "preserve_separators": false, "preserve_position_increments": true, "max_input_length": 50 } lc_index用于type非completion的字段索引正常,其他分词器,如ik_max_word,ik_smart索引completion类型的字段也正常,唯独lc_index索引completion类型的字段,会出现cpu计算量巨大,索引速度巨慢的情况.