Change the index allocation makes the loads of cluster very high

Hi

We have an elasticsearch cluster. The nodes with tag "hot" stores the data of recent 3 days, and nodes with tag "cold" stores the older data of recent 30 days.
At every night, we change the index settings of "index.routing.allocation.require.tag" to move the data in hot tag which before 3 days into "cold" nodes. But recently, we notice that this process makes our loads of "cold" nodes very high and the nodes almost down.
Can anybody kindly told us how can we optimize this phase?

Thanks.

settings:

{
"index": {
"routing": {
"allocation": {
"require": {
"tag": "cold"
},
}
}
}
}

Elasticsearch Version: 2.4.0
JVM version: 1.8.0_51

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.