您的位置:首页 > 汽车 > 时评 > es 更新索引mapping和setting

es 更新索引mapping和setting

2024/7/2 4:35:25 来源:https://blog.csdn.net/wang0112233/article/details/139823613  浏览:    关键词:es 更新索引mapping和setting

1.关闭索引

curl -X POST "localhost:9200/your_index_name/_close"

2.修改setting 配置

无法更新一些默认数据,按照需求构建,我这边是构建增加了分词器
 

"settings": {"index": {"creation_date": "1718850346547","number_of_replicas": "1","number_of_shards": "5","provided_name": "v1","uuid": "4wEGu-5SRTiva8OY66YnCw","version": {"created": "7100299"}}}

更新:

curl -X POST "localhost:9200/your_index_name/_settings"{"index": {"analysis": {"analyzer": {"ik": {"tokenizer": "ik_max_word"},"ts_ik_max_word": {"char_filter": ["tsconvert"],"filter": ["hotel_synonym","py"],"tokenizer": "ik_max_word","type": "custom"},"ts_ik_smart": {"char_filter": ["tsconvert"],"filter": ["hotel_synonym"],"tokenizer": "ik_smart","type": "custom"}},"char_filter": {"tsconvert": {"convert_type": "t2s","type": "stconvert"}},"filter": {"hotel_synonym": {"type": "dynamic_synonym"},"py": {"keep_full_pinyin": "false","keep_joined_full_pinyin": "true","keep_original": "true","limit_first_letter_length": "16","none_chinese_pinyin_tokenize": "false","remove_duplicated_term": "true","type": "pinyin"}}},"mapping": {"total_fields": {"limit": "100000"}}}}

3.更新mapping

curl -X POST "localhost:9200/your_index_name/_mapping"

4.打开索引
 

curl -X POST "localhost:9200/your_index_name/_open"

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com