我使用 Solr 下载附带的默认 Jetty 服务器在我的 Ubuntu 机器上运行了一个 Solr 实例。每当我开始使用 Solr
java -jar start.jar
服务器启动正常,但总是抛出异常:
INFO: SolrDispatchFilter.init() done
Apr 12, 2012 2:01:56 PM org.apache.solr.common.SolrException log
SEVERE: org.apache.solr.common.SolrException: undefined field text
正如我所说,服务器仍将启动,我可以看到 Solr 管理界面。我将我的模式定义如下。
<fields>
<field name="id" type="string" indexed="true" stored="true" />
<field name="phraseID" type="int" indexed="true" stored="true" />
<field name="translation" type="string" indexed="true" stored="true" />
</fields>
<uniqueKey>id</uniqueKey>
我还能够执行 JSON 更新 - 我提交了一个被接受的样本数据数组。到目前为止,一切都很好。
当我尝试运行查询时:
http://localhost:8983/solr/select/?q=*:*&version=2.2&start=0&rows=10&indent=on
它正确返回了我之前在示例中提交的所有数据。
但是,当我尝试使用文本进行查询时,我收到了 HTTP ERROR 404。
http://localhost:8983/solr/select/?q=fruit&version=2.2&start=0&rows=10&indent=on
--- returns ---
HTTP ERROR 400
Problem accessing /solr/select/. Reason:
undefined field text
Powered by Jetty://