0

我在将 solr 作为 gradle 任务运行时遇到了一些问题。https://github.com/fhopf/solr-facet-example/blob/master/build.gradle的示例显示了 solr 4.0 的运行,但我想通过 solr 4.4 运行它。我已经完成了配置

configurations {
    solrWebApp
}
dependencies {
    solrWebApp "org.apache.solr:solr:4.4.0@war"
    testCompile "junit:junit:4.10"
    testCompile "org.apache.solr:solr-test-framework:4.4.0"
    compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.+'
}
jettyRun.webAppSourceDirectory = file("webapp")
task runSolr(type: JettyRunWar) {
    webApp = configurations.solrWebApp.singleFile
}
//currently this points to solr 4.0 , should be configured to use solr 4.4
runSolr.doFirst {
    System.setProperty("solr.solr.home", "/opt/solr_home")
}

httpPort = 8080
stopPort = 9451

solr_home也指出具有 lucene 4.4 版的核心,但错误消息显示。

Unable to create core: helloworld
org.apache.solr.common.SolrException: Invalid luceneMatchVersion '4.4', valid values are: [LUCENE_30, LUCENE_31, LUCENE_32, LUCENE_33, LUCENE_34, LUCENE_35, LUCENE_36, LUCENE_40, LUCENE_CURRENT] or a string in format 'V.V'
---------------
Caused by: java.lang.IllegalArgumentException: No enum const class org.apache.lucene.util.Version.LUCENE_44
    at java.lang.Enum.valueOf(Enum.java:214)
    at org.apache.lucene.util.Version.valueOf(Version.java:34)
    at org.apache.lucene.util.Version.parseLeniently(Version.java:119)
    at org.apache.solr.core.Config.parseLuceneVersionString(Config.java:311)
    ... 130 more

我的solr家有lucene4.4

谁能帮我解决这个问题?

4

1 回答 1

0

你有没有机会从以前的 Solr 发行版升级?在这种情况下,您可能有旧文件,例如来自发行版中的 war 文件的未打包的 webapp 目录。您可能需要删除这些,从命令行运行 Solr 一次,然后重试。

于 2013-09-13T01:09:35.540 回答