I just upgraded elasticsearch from 2.1 to 2.3, in my elasticsearch cluster, there is 1 master&data node, 1 data node, and one client node. Marvel is installed in all the three nodes.
I found that Marvel reflect index changes very slowly, whether inserting documents or creating/deleting index, I cannot see the changes from Marvel few hours later.
For example, I used the command line to delete the index named elkstats_other_sources
curl -XDELETE Melasticsearch:9200/elkstats_other_sources
curl -XGET Melasticsearch:9200/elkstats_other_sources/_stats/docs?pretty=true
The response on command line is correct:
{
"error" : {
"root_cause" : [ {
"type" : "index_not_found_exception",
"reason" : "no such index",
"resource.type" : "index_or_alias",
"resource.id" : "elkstats_other_sources",
"index" : "elkstats_other_sources"
} ],
"type" : "index_not_found_exception",
"reason" : "no such index",
"resource.type" : "index_or_alias",
"resource.id" : "elkstats_other_sources",
"index" : "elkstats_other_sources"
},
"status" : 404
}
However, on Marvel, I can still see the index active for a few hours.
Another example about Marvel is slow to reflect the status during index inserting
I started importing data from 10:30am
Marvel shows the data inserting started at 11:35am