Hi Folks,
I had closed few of my indices for maintenance activity and I opened them after some time.
Health wise the index is green and has a shard, but my search query is getting empty results even though there are documents in the index.
Please suggest how I can repair such index.
Thanks in Advance.
green open my-index-000001 WrMLNUdTQ_-imTd6r6oueA 1 0 8072 0 1.6mb 1.6m
curl -X GET "localhost:9200/my-index-000001/_search?pretty"
{
"took" : 0,
"timed_out" : false,
"_shards" : {
"total" : 0,
"successful" : 0,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : {
"value" : 0,
"relation" : "eq"
},
"max_score" : 0.0,
"hits" : [ ]
}
}