Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "SMILA/Documentation/Solr Integration"

(New page: == <tt>org.eclipse.smila.integration.solr.SolrPipelet</tt> == === Description === This pipelet integrates Apache Solr's HTTP REST API ([http://wiki.apache.org/solr/SearchHandler?action=s...)
 
 
(4 intermediate revisions by 4 users not shown)
Line 1: Line 1:
== <tt>org.eclipse.smila.integration.solr.SolrPipelet</tt> ==
+
{{Note|Deprecated:
 +
The implementation provided by this bundle has been superseded by <tt>org.eclipse.smila.solr</tt> which is described here: [[SMILA/Documentation/Solr]].}}
  
=== Description ===
+
This page can be deleted.
 
+
This pipelet integrates Apache Solr's HTTP REST API ([http://wiki.apache.org/solr/SearchHandler?action=show&redirect=StandardRequestHandler http://wiki.apache.org/solr/SearchHandler?action=show&redirect=StandardRequestHandler] and [http://wiki.apache.org/solr/UpdateXmlMessages http://wiki.apache.org/solr/UpdateXmlMessages] ) for utilizing Solr as a distributed index service.
+
Therefore it is now possible to build large volume search applications by basing them on SMILA and deploying Solr for coping with large indices which are not manageable on one node because of their large size which exceeds the limits of the node's file system.
+
 
+
'''Note:''' Currently this pipelet supports Solr 1.4. The integration of features added with the release of Solr 1.5 will be done in near future.
+
 
+
=== Configuration ===
+
 
+
{| border = 1
+
!Property!!Constraint!!Description
+
|-
+
|executionMode||optional||the execution mode of the pipelet, default is ADD
+
|-
+
|allowDoublets||optional||the instruction for Solr if doublets are allowed, default is false
+
|-
+
|commitWithin||optional||the commit interval for Solr in miliseconds, default is 10000
+
|-
+
|indexName||optional||the name of the index/core on which Solr should operate. Currently we do not support more than one index/core.
+
|-
+
|highlight||optional||the highlight flag, default is true
+
|-
+
|highlight.params||optional||all the highlighting parameter passed directly to Solr. For more details please see: [http://wiki.apache.org/solr/HighlightingParameters http://wiki.apache.org/solr/HighlightingParameters]
+
|}
+
 
+
==== Example ====
+
 
+
'''PipeletConfiguration for SolrPipelet in addpipeline.bpel'''
+
<source lang="xml">
+
<proc:PipeletConfiguration>
+
<proc:Property name="executionMode">
+
<proc:Value>ADD</proc:Value>
+
</proc:Property>
+
<proc:Property name="allowDoublets" type="java.lang.Boolean">
+
<proc:Value>false</proc:Value>
+
</proc:Property>
+
<proc:Property name="commitWithin" type="java.lang.Integer">
+
<proc:Value>10000</proc:Value>
+
</proc:Property>
+
<proc:Property name="indexName">
+
<proc:Value>test_index</proc:Value>
+
</proc:Property>
+
</proc:PipeletConfiguration>     
+
</source>
+
 
+
'''PipeletConfiguration for SolrPipelet in searchpipeline.bpel'''
+
<source lang="xml">
+
<proc:PipeletConfiguration>
+
<proc:Property name="shards">
+
<proc:Value>localhost:8983/solr</proc:Value>
+
<!-- List here all other nodes that are part of the index cluster -->
+
</proc:Property>
+
<proc:Property name="highlight" type="java.lang.Boolean">
+
<proc:Value>true</proc:Value>
+
</proc:Property>
+
<proc:Property name="highlight.params">
+
<proc:Value>hl.fl=Content</proc:Value>
+
<proc:Value>hl.snippets=3</proc:Value>
+
<proc:Value>hl.simple.pre=&lt;b&gt;</proc:Value>
+
<proc:Value>hl.simple.post=&lt;/b&gt;</proc:Value>
+
<proc:Value>hl.fragsize=300</proc:Value>
+
<proc:Value>hl.mergeContiguous=false</proc:Value>
+
</proc:Property>
+
</proc:PipeletConfiguration>     
+
</source>
+
 
+
 
+
[[Category:SMILA]]  [[Category:SMILA/Documentation]]
+

Latest revision as of 06:49, 25 January 2012

Note.png
Deprecated: The implementation provided by this bundle has been superseded by org.eclipse.smila.solr which is described here: SMILA/Documentation/Solr.


This page can be deleted.

Copyright © Eclipse Foundation, Inc. All Rights Reserved.