hi i am using ES cloud managed version .
i did index backup to s3 using following command
PUT /_snapshot/hc_es_s3_repository/dtoperation_1
{"indices": "dtoperation",
"ignore_unavailable": true,
"include_global_state": false
}
after that i deleted the index from ES
and did snapshot restore using below command -
POST /_snapshot/hc_es_s3_repository/dtoperation_1/_restore
{"indices": "dtoperation",
"ignore_unavailable": false,
"include_global_state": false
}
both command was ran successfully and index is created , but index status is still red and document count is 0 .
any suggestion in this ?
as there is no error in above steps .
thanks