Index creation time using ProcessClusterEventTimeoutException

I suddenly cannot create an index (either explicitly or by indexing something into an index that does not exist). Other operations are great (indexing, searching). The error I get in security.log :

 [2015-02-10 15:48:46,303][DEBUG][action.admin.indices.create] [eu4] [yoptest2] failed to create org.elasticsearch.cluster.metadata.ProcessClusterEventTimeoutException: failed to process cluster event (create-index [yoptest2], cause [auto(index api)]) within 1m at org.elasticsearch.cluster.service.InternalClusterService$2$1.run(InternalClusterService.java:263) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:745) 

This is a cluster of three machines (green green), and I get the same timeout no matter which node I hit.

What could be the reason?

+7
source share
2 answers

I have a problem reloading all nodes. This is not a solution, I do not know the cause of the problem, but at least everything works again.

+1
source

This will be solved simply by stopping the service and restarting the service. For Windows, you can start by running elasticsearch.bat from the bin folder.

-1
source

Source: https://habr.com/ru/post/982273/


All Articles