Skip to content

Instantly share code, notes, and snippets.

Created August 17, 2012 21:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/3382894 to your computer and use it in GitHub Desktop.
Save anonymous/3382894 to your computer and use it in GitHub Desktop.
Elastic Search IndexMissingException when large index is being built using Bulk API
curl -X POST "http://localhost:9200/20120816_10k_64s/_search?pretty=true&size=0" -d '{"query":{"match_all":{}}}'
{
"took" : 117,
"timed_out" : false,
"_shards" : {
"total" : 64,
"successful" : 52,
"failed" : 12,
"failures" : [ {
"status" : 404,
"reason" : "RemoteTransportException[[hdebs8][inet[/localhost:9300]][search/phase/query]]; nested: IndexMissingException[[20120816_10k_64s] missing]; "
}, {
"status" : 404,
"reason" : "RemoteTransportException[[hdebs8][inet[/localhost:9300]][search/phase/query]]; nested: IndexMissingException[[20120816_10k_64s] missing]; "
}, {
"status" : 404,
"reason" : "RemoteTransportException[[hdebs8][inet[/localhost:9300]][search/phase/query]]; nested: IndexMissingException[[20120816_10k_64s] missing]; "
}, {
"status" : 404,
"reason" : "RemoteTransportException[[hdebs8][inet[/localhost:9300]][search/phase/query]]; nested: IndexMissingException[[20120816_10k_64s] missing]; "
}, {
"status" : 404,
"reason" : "RemoteTransportException[[hdebs8][inet[/localhost:9300]][search/phase/query]]; nested: IndexMissingException[[20120816_10k_64s] missing]; "
}, {
"status" : 404,
"reason" : "RemoteTransportException[[hdebs8][inet[/localhost:9300]][search/phase/query]]; nested: IndexMissingException[[20120816_10k_64s] missing]; "
}, {
"status" : 404,
"reason" : "RemoteTransportException[[hdebs8][inet[/localhost:9300]][search/phase/query]]; nested: IndexMissingException[[20120816_10k_64s] missing]; "
}, {
"status" : 404,
"reason" : "RemoteTransportException[[hdebs8][inet[/localhost:9300]][search/phase/query]]; nested: IndexMissingException[[20120816_10k_64s] missing]; "
}, {
"status" : 404,
"reason" : "RemoteTransportException[[hdebs8][inet[/localhost:9300]][search/phase/query]]; nested: IndexMissingException[[20120816_10k_64s] missing]; "
}, {
"status" : 404,
"reason" : "RemoteTransportException[[hdebs8][inet[/localhost:9300]][search/phase/query]]; nested: IndexMissingException[[20120816_10k_64s] missing]; "
}, {
"status" : 404,
"reason" : "RemoteTransportException[[hdebs8][inet[/localhost:9300]][search/phase/query]]; nested: IndexMissingException[[20120816_10k_64s] missing]; "
}, {
"status" : 404,
"reason" : "RemoteTransportException[[hdebs8][inet[/localhost:9300]][search/phase/query]]; nested: IndexMissingException[[20120816_10k_64s] missing]; "
} ]
},
"hits" : {
"total" : 389206086,
"max_score" : 1.0,
"hits" : [ ]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment