SolrCloud模式下的Solr建议器

时间:2015-08-17 08:21:00

标签: solr lucene solr4j

我在CloudSolr模式下使用三个分片运行solr。数据已经索引到solr中。现在我在solrconfig.xml中配置了solr建议器。这是solrconfig文件的配置。我使用的是solr 4.10版本。

<searchComponent name="suggest" class="solr.SuggestComponent">
    <lst name="suggester">
        <str name="name">mysuggest</str>
        <str name="lookupImpl">FuzzyLookupFactory</str>
        <str name="storeDir">suggester_fuzzy_dir</str>
        <str name="dictionaryImpl">DocumentDictionaryFactory</str>
        <str name="field">businessName</str>
        <str name="payloadField">profileId</str>
        <str name="weightField">businessName</str>
        <str name="suggestAnalyzerFieldType">text_general</str>
        <str name="buildOnStartup">false</str>
    </lst>
</searchComponent>

<requestHandler name="/suggest" class="solr.SearchHandler" startup="lazy">
    <lst name="defaults">
        <str name="suggest">true</str>
        <str name="suggest.count">10</str>
    </lst>
    <arr name="components">
        <str>suggest</str>
    </arr>
</requestHandler>

以下是我用于获取结果的命令:

http://shard1:8900/solr/core/suggest?suggest=true&suggest.build=true&suggest.reload&suggest.dictionary=mysuggest&wt=json&indent=true&suggest.q=sale

这是命令的输出:

{
"responseHeader":{
"status":0,
"QTime":1490},
"command":"build",
"suggest":{}
}

没有任何建议结果。我有10K记录索引到solr。

我在日志文件中看到以下内容:

org.apache.solr.handler.component.SuggestComponent; http://shard1:8983/solr/core/ : null
org.apache.solr.handler.component.SuggestComponent; http://shard2:8900/solr/core/ : null
org.apache.solr.handler.component.SuggestComponent; http://shard3:7574/solr/core/ : null

我无法理解这里缺少的东西。感谢。

1 个答案:

答案 0 :(得分:5)

由于solr在SolrCloud模式下运行,因此无效。在solrCloud模式下有两种方法可以执行建议:

  • 使用 distrib = false 参数。这将仅从您在命令中访问的一个分片中获取数据。您可以将以下内容添加到组件定义中。

    <bool name="distrib">false</bool> 
    
  • 使用分片 shards.qt 参数搜索所有分片。 shards参数将包含要包含在查询中的所有分片的逗号分隔列表。 shards.qt参数将定义您要访问的reat API。

  

shards.qt:信号Solr请求分片应该发送到此参数给出的请求处理程序。如果您的请求处理程序是&#34; / spell&#34;,请在发出请求时使用shards.qt = / spell。

     

分片:分片= solr-shard1:8983 / solr,solr-shard2:8983 / solr Distributed Search

请查看Here了解详情。