Re: Oops! SearchPhaseExecutionException[Failed to execute phase [query], all shards failed]

2015-03-13 Thread Taylor Wood
The following as suggested was able to fix all my previous indexes to make 0 replication and essentially removing the 5 unassigned shards we had per Indice. curl -XPUT 'localhost:9200/*/_settings' -d ' { "index" : { "number_of_replicas" : 0 } } ' Thank you. -- You received this message bec

Re: Oops! SearchPhaseExecutionException[Failed to execute phase [query], all shards failed]

2015-03-12 Thread aaron
You should be able to set the number of replicas for all previous indexes to 0. You cannot reduce the shard count once an index is created, or increase for that matter. You could reindex your shards. http://www.elastic.co/guide/en/elasticsearch/reference/current/indices-update-settings.html

Re: Oops! SearchPhaseExecutionException[Failed to execute phase [query], all shards failed]

2015-03-12 Thread Taylor Wood
I didn't get any help on this but as an FYI for those that may have this issue and are just starting: Digging deeper it appears our system was created with 5 shards and 1 replica. Granted we are only using 1 node so every day elasticsearch would create an indice of 10 shards, 5 for the primar

Re: Oops! SearchPhaseExecutionException[Failed to execute phase [query], all shards failed]

2015-01-12 Thread Taylor Wood
> > Today the Kibana interface appears to be working fine but the status is >> still red. >> > > > >> [root@syslog1 ~]# curl -XGET >> 'http://localhost:9200/_cluster/health?pretty=true' >> { >> "cluster_name" : "elasticsearch", >> "status" : "red", >> "timed_out" : false, >> "number_o

Oops! SearchPhaseExecutionException[Failed to execute phase [query], all shards failed]

2015-01-09 Thread Taylor Wood
"! SearchPhaseExecutionException[Failed to execute phase [query], all shards failed]" I have reverted to how it was setup previously and logging to the main partition which is not full: Filesystem Size Used Avail Use% Mounted on /dev/vda124G 16G 6.4G 72% / Looking at other posts This s

Re: SearchPhaseExecutionException[Failed to execute phase [query], all shards failed

2014-11-04 Thread Александр Ковтунов
Hello, have fixed it? What was the problem? -- 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+unsubscr...@googlegroups.com. To view this discussion

Re: Some indices failing with "SearchPhaseExecutionException[Failed to execute phase [query], all shards failed]"

2014-09-12 Thread Kevin DeLand
ng fine when all of a sudden some indices started > > failing. > > GET localhost:9200/logstash-2014.09.11/_search > > yields response: > > {"error":"SearchPhaseExecutionException[Failed to execute phase > > [query], all shards failed]",&qu

Re: Some indices failing with "SearchPhaseExecutionException[Failed to execute phase [query], all shards failed]"

2014-09-12 Thread Kevin DeLand
d > wrote: > > > Everything was working fine when all of a sudden some indices started > > failing. > > GET localhost:9200/logstash-2014.09.11/_search > > yields response: > > {"error":"SearchPhaseExecutionException[Failed to execute phase &

Re: Some indices failing with "SearchPhaseExecutionException[Failed to execute phase [query], all shards failed]"

2014-09-12 Thread Kevin DeLand
a sudden some indices started > > failing. > > GET localhost:9200/logstash-2014.09.11/_search > > yields response: > > {"error":"SearchPhaseExecutionException[Failed to execute phase > > [query], all shards failed]","status":503}

Re: Some indices failing with "SearchPhaseExecutionException[Failed to execute phase [query], all shards failed]"

2014-09-11 Thread Magnus Bäck
On Friday, September 12, 2014 at 08:53 CEST, Kevin DeLand wrote: > Everything was working fine when all of a sudden some indices started > failing. > GET localhost:9200/logstash-2014.09.11/_search > yields response: > {"error":"SearchPhaseExecutionException[Fa

Some indices failing with "SearchPhaseExecutionException[Failed to execute phase [query], all shards failed]"

2014-09-11 Thread Kevin DeLand
Everything was working fine when all of a sudden some indices started failing. *GET localhost:9200/logstash-2014.09.11/_search* yields response: {"error":"SearchPhaseExecutionException[Failed to execute phase [query], all shards failed]","status":503} -- You rec