elasticsearch 写入优化

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了elasticsearch 写入优化相关的知识,希望对你有一定的参考价值。

全量dump数据时,为优化性能,可做如下优化。

  1. 分片设置,不分片
http://localhost:9200/test_index/_settings/
{
  "index": {
    "number_of_replicas": 0
  }
}
  1. 刷新设置,不刷新
http://localhost:9200/test_index/_settings/
{
  "index": {
    "refresh_interval": "-1"
  }
}
  1. translog 大小设置,调大 默认512M
http://localhost:9200/test_index/_settings/
{
  "index.translog.flush_threshold_size": "1024mb"
}
  1. 如果是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后,再恢复一下

  1. 分片设置
http://localhost:9200/test_index/_settings/
{
  "index": {
    "number_of_replicas": 5
  }
}
  1. 刷新设置,不刷新
http://localhost:9200/test_index/_settings/
{
  "index": {
    "refresh_interval": "1s"
  }
}
  1. translog 大小设置
http://localhost:9200/test_index/_settings/
{
  "index.translog.flush_threshold_size": "512mb"
}

当然应该使用bulk模式, elasticsearch单次提交数据尽量在15M以内。

以上是关于elasticsearch 写入优化的主要内容,如果未能解决你的问题,请参考以下文章

ElasticSearch--优化写入速度的方法--修改配置

Elasticsearch7.8.0版本优化——写入速度优化

elasticsearch 写入优化

es将 elasticsearch 写入速度优化到极限

Elasticsearch性能调优之索引写入性能优化

Elasticsearch 写入优化,从 3000 到 8000/s,让你的 ES 飞起来!