我正在Solr中编写一个自定义过滤器,以便将令牌发布到Apache Stanbol以进行增强,并将响应索引到同一文档中的其他字段。
在我的测试代码中,我得到了Stanbol的回复,并将其作为新文档添加到Solr。我的要求是将stanbolResponse作为字段值添加到被索引的同一文档中。 如果我可以从过滤器中的TokenStream中检索文档Id,我认为这可以完成。
任何人都可以帮我一个示例代码/示例或如何实现此目的的链接?
public boolean incrementToken() throws IOException {
if (!input.incrementToken()) {
return false;
}
int length = charTermAttr.length();
char[] buffer = charTermAttr.buffer();
String content = new String(buffer);
Client client = Client.create();
WebResource webResource = client.resource(stanbol_endpoint + "enhancer");
ClientResponse response = webResource
.type(MediaType.TEXT_PLAIN)
.accept(new MediaType("application", "rdf+xml"))
.entity(content2,MediaType.TEXT_PLAIN)
.post(ClientResponse.class);
int status = response.getStatus();
if (status != 200 && status != 201 && status != 202) {
throw new RuntimeException("Failed : HTTP error code : "
+ response.getStatus());
}
String output = response.getEntity(String.class);
charTermAttr.setEmpty();
char[] newBuffer = output.toCharArray();
charTermAttr.copyBuffer(newBuffer, 0, newBuffer.length);
SolrInputDocument doc1 = new SolrInputDocument();
doc1.addField( "id", "id1", 1.0f );
doc1.addField("stanbolResponse", output);
try {
server.add(doc1);
server.commit();
} catch (SolrServerException e) {
System.out.println("error while indexing response to solr");
e.printStackTrace();
}
return true;
}
答案 0 :(得分:0)
通过编写自定义UpdateRequestProcessor并配置/ update请求处理程序以在update.chain中使用我的自定义处理器,成功地完成了这个用例。
我能够在编制索引之前处理并向文档添加新字段。 以下是我使用自定义处理器配置/更新请求处理程序的方法。
stanbol进程的RequestProcessor:
<updateRequestProcessorChain name="stanbolInterceptor">
<processor class="com.solr.stanbol.processor.StanbolContentProcessorFactory"/>
<processor class="solr.RunUpdateProcessorFactory" />
</updateRequestProcessorChain>
使用以上链为update.chain配置请求处理程序:
<requestHandler name="/update" class="solr.UpdateRequestHandler">
<lst name="defaults">
<str name="update.chain">stanbolInterceptor</str>
</lst>
</requestHandler>