您好,登錄后才能下訂單哦!
小編今天帶大家了解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寫入優化的示例分析”的全部內容了,學會的朋友趕緊操作起來吧。相信億速云小編一定會給大家帶來更優質的文章。謝謝大家對億速云網站的支持!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。