Just run this to reduce the write workload of your cluster… (this isn’t safe for critical data.. fine for logging ect.)
curl -XPUT 'http://127.0.0.1:9200/_all/_settings?preserve_existing=true' -d '{
"index.number_of_replicas" : "0",
"index.translog.durability" : "async",
"index.refresh_interval" : "60s"
}'