配置Solr以将UUID用作密钥

时间:2013-09-09 12:51:00

标签: solr solrj solr4

我正在尝试将Solr 4配置为使用UUID,到目前为止我没有成功

通过阅读文档,我看到了两种不同的方法来配置schema.xml以使用UUID(两者都不起作用)

我需要写两个

<fieldType name="uuid" class="solr.UUIDField" indexed="true" />

选项1: 添加:

<field name="id" type="uuid" indexed="true" stored="true" default="NEW" multiValued="false"/>

并确保删除该行

<uniqueKey>id</uniqueKey>

选项2 添加:

<field name="id" type="uuid" indexed="true" stored="true" required="true" multiValued="false" /> 

两个选项都无法正常工作并返回 org.apache.solr.common.SolrException:org.apache.solr.common.SolrException:初始化QueryElevationComponent时出错。

我还尝试使用以下配置向colrconfig.xml文件添加一行:

<updateRequestProcessorChain name="uuid">
<processor class="solr.UUIDUpdateProcessorFactory"> 
    <str name="fieldName">uniqueKey</str> 
</processor>    
<processor class="solr.RunUpdateProcessorFactory" />
</updateRequestProcessorChain>

谢谢,

希蒙

2 个答案:

答案 0 :(得分:7)

在这里做了一些工作是解决方案:

在schema.xml中,添加(或编辑)字段字段

<field name="id" type="string" indexed="true" stored="true" required="true" multiValued="false" />   

在solr config中,更新链并将链添加到处理程序(例如:for / update / extract):

<updateRequestProcessorChain name="uuid">
  <processor class="solr.UUIDUpdateProcessorFactory">
    <str name="fieldName">id</str>
  </processor>
  <processor class="solr.RunUpdateProcessorFactory" />
</updateRequestProcessorChain>`         

<requestHandler name="/update/extract" 
                startup="lazy"
                class="solr.extraction.ExtractingRequestHandler" >
  <lst name="defaults">
    <str name="lowernames">true</str>
    <str name="uprefix">ignored_</str>
    <str name="captureAttr">true</str>
    <str name="fmap.a">links</str>
    <str name="fmap.div">ignored_</str>
    <str name="update.chain">uuid</str>
  </lst>
</requestHandler>

答案 1 :(得分:0)

如果不使用查询提升组件,则可能需要删除它。

QueryElevationComponent需要定义唯一键,它应该是JIRA的字符串唯一键。

但是,它使用Solr 4.0 alpha修复,因此它取决于您使用的Solr版本。

此限制为documented in the Solr wiki