小编今天带大家了解elasticsearch写入优化的示例分析,文中知识点介绍的非常详细。觉得有帮助的朋友可以跟着小编一起浏览文章的内容,希望能够帮助更多想解决这个问题的朋友找到问题的答案,下面跟着小编一起深入学习“elasticsearch写入优化的示例分析”的知识吧。
全量dump数据时,为优化性能,可做如下优化。
分片设置,不分片
http://localhost:9200/test_index/_settings/{"index":{"number_of_replicas":0}}
刷新设置,不刷新
http://localhost:9200/test_index/_settings/{"index":{"refresh_interval":"-1"}}
translog 大小设置,调大 默认512M
http://localhost:9200/test_index/_settings/{"index.translog.flush_threshold_size":"1024mb"}
如果是SSD硬盘,修改段合并速率
http://localhost:9200/_cluster/settings/{"persistent":{"indices.store.throttle.max_bytes_per_sec":"200mb"}}http://localhost:9200/_cluster/settings/{"transient":{"indices.store.throttle.type":"none"}}
全量dump后,再恢复一下
分片设置
http://localhost:9200/test_index/_settings/{"index":{"number_of_replicas":2}}
http://localhost:9200/test_index/_settings/{"index":{"refresh_interval":"1s"}}
translog 大小设置
http://localhost:9200/test_index/_settings/{"index.translog.flush_threshold_size":"512mb"}
当然应该使用bulk模式, elasticsearch单次提交数据尽量在15M以内。
感谢大家的阅读,以上就是“elasticsearch写入优化的示例分析”的全部内容了,学会的朋友赶紧操作起来吧。相信亿速云小编一定会给大家带来更优质的文章。谢谢大家对亿速云网站的支持!
ElasticSearch入门到实战系列 (3)快速上手
ES采用json形式RESTFULAPI接受数据并响应,操作起来极为简单,只需要使用postman即可。3.1查看集群...
ElasticSearch大数据分布式弹性搜索引擎该如何使用
ElasticSearch基础交互该如何分析
ElasticSearch基础交互该如何分析ElasticSear...
用户名
密码
记住登录状态 忘记密码?
邮箱
确认密码
我已阅读并同意 用户协议