Hi, I'm using ES 1.0.1 in a 10 node cluster and recently needed to add support for indexing documents in Japanese. To do that i've installed the Kuromoji Analysis plugin <https://github.com/elasticsearch/elasticsearch-analysis-kuromoji>. At a later time, when I added a new node to the cluster it joined the cluster successfully, but I started to see failures when creating new indexes (any index, in any language) and after the index creation failed the cluster got into a "red" state where the new indexs' shards remained Unassigned. org.elasticsearch.indices.IndexCreationException: [...] failed to create index at org.elasticsearch.indices.InternalIndicesService.createIndex( InternalIndicesService.java:300) at org.elasticsearch.indices.cluster.IndicesClusterStateService. applyNewIndices(IndicesClusterStateService.java:306) at org.elasticsearch.indices.cluster.IndicesClusterStateService. clusterChanged(IndicesClusterStateService.java:178) at org.elasticsearch.cluster.service.InternalClusterService$UpdateTask.run( InternalClusterService.java:424) at org.elasticsearch.common.util.concurrent. PrioritizedEsThreadPoolExecutor$TieBreakingPrioritizedRunnable.run( PrioritizedEsThreadPoolExecutor.java:134) 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:744) Caused by: org.elasticsearch.ElasticsearchIllegalArgumentException: *failed to find analyzer type **[kuromoji] or tokenizer for [japanese_snowball]* at org.elasticsearch.index.analysis.AnalysisModule.configure(AnalysisModule .java:372) at org.elasticsearch.common.inject.AbstractModule.configure(AbstractModule. java:60) at org.elasticsearch.common.inject.spi.Elements$RecordingBinder.install( Elements.java:204) at org.elasticsearch.common.inject.spi.Elements.getElements(Elements.java: 85) at org.elasticsearch.common.inject.InjectorShell$Builder.build( InjectorShell.java:130) at org.elasticsearch.common.inject.InjectorBuilder.build(InjectorBuilder. java:99) at org.elasticsearch.common.inject.InjectorImpl.createChildInjector( InjectorImpl.java:131) at org.elasticsearch.common.inject.ModulesBuilder.createChildInjector( ModulesBuilder.java:69) at org.elasticsearch.indices.InternalIndicesService.createIndex( InternalIndicesService.java:298) ... 7 more Caused by: org.elasticsearch.common.settings.NoClassSettingsException: *Failed to load class setting [type] with value [kuromoji]* at org.elasticsearch.common.settings.ImmutableSettings.loadClass( ImmutableSettings.java:448) at org.elasticsearch.common.settings.ImmutableSettings.getAsClass( ImmutableSettings.java:436) at org.elasticsearch.index.analysis.AnalysisModule.configure(AnalysisModule .java:356) ... 15 more Caused by: *java**.lang.ClassNotFoundException: org.elasticsearch.index.analysis.kuromoji.KuromojiAnalyzerProvider* at java.net.URLClassLoader$1.run(URLClassLoader.java:366) at java.net.URLClassLoader$1.run(URLClassLoader.java:355) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass(URLClassLoader.java:354) at java.lang.ClassLoader.loadClass(ClassLoader.java:425) at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308) at java.lang.ClassLoader.loadClass(ClassLoader.java:358) at org.elasticsearch.common.settings.ImmutableSettings.loadClass( ImmutableSettings.java:446) ... 17 more
Eventually, I found out that the new node was missing the Kuromoji Analysis plugin <https://github.com/elasticsearch/elasticsearch-analysis-kuromoji>. My question is: why did a missing plugin in one node fail the creation of any new index? Is that the expected behaviour? Thanks, Rafi -- 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 [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/2d1981df-5495-4e4a-930a-2bdd97f213a4%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
