我的弹性搜索正在运行。
但是当我这样做时:
curl -XPUT "http://127.0.0.1:9200/movies/movie/1" -d'
{
"title": "The Godfather",
"director": "Francis Ford Coppola",
"year": 1972
}'
此错误即将发生。
{“error”:“IndexCreationException [[movies]无法创建索引];嵌套:NoClassDefFoundError [无法初始化类org.elasticsearch.index.codec.postingsformat.PostingFormats];”,“status”:500} < / p>
答案 0 :(得分:1)
如果您混合使用jar文件并将其他Lucene依赖项带到所需的依赖项,或者只是将elasticsearch jar添加到Java项目中,则可能会发生这种情况。
这里很难说,因为我们不知道你是如何安装elasticsearch的,以及你正在使用哪个版本。
同样的命令对我来说很好。