We have ES 6.5.4 and using S3 repository in our different machines. We move data from one machine to another using snapshot/restore process. Now only 1 concurrent snapshot operation is allowed per machine. If we do some other snapshot operation during one operation already in progress, we are getting error as below,
{
"error": {
"root_cause": [
{
"type": "concurrent_snapshot_execution_exception",
"reason": "[REPO_NAME:test11] a snapshot is already running"
}
],
"type": "concurrent_snapshot_execution_exception",
"reason": "[REPO_NAME:test11] a snapshot is already running"
},
"status": 503
}
As we are getting more data to move from one machine to another, this phase has become bottleneck of our pipeline.
There is a way to do multiple snapshot operations in ES 8.6 . It has default limit of 1000.
Is there any way we can enable multiple snapshot operation in ES 6.5.4 ?