Exception: EsRejectedExecutionException and TransportSearchTypeAction$BaseAsyncAction$2

Hi,

I'm new to ES+logstash+kibana, and I have a problem that produces this
error:

{
"error": "EsRejectedExecutionException[rejected execution of
[org.elasticsearch.action.search.type.TransportSearchTypeAction$BaseAsyncAction$2]]",
"status": 503
}

I'm using Kibana with custom mapping on the daily indices by disable
analyze of certain fields for allowing full text search. Thus, the
forecasted index is created ahead to avoid from logstash created index with
fields being analyzed.

The query made that return the error is as follow:

curl http://localhost:9200/_all_search -d'
{
"facets": {
"chart0": {
"date_histogram": {
"field": "@timestamp",
"interval": "1d"
},
"facet_filter": {
"fquery": {
"query": {
"filtered": {
"query": {
"query_string": {
"query": "*"
}
},
"filter": {
"range": {
"@timestamp": {
"from": "2013-07-01T10:24:16.000Z",
"to": "2013-08-31T16:24:16.000Z"
}
}
}
}
}
}
}
}
},
"size": 0
}'

Along the way, I had also tried to change the index _all to sequence of
logstash-. It broke when there is 20 sequences of index.

I wonder, what could cause the error?

Thank you.

--
You received this message because you are subscribed to the Google Groups "elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email to elasticsearch+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.