You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by Apache Wiki <wi...@apache.org> on 2011/12/09 14:20:51 UTC

[Solr Wiki] Update of "DataImportHandler" by Luca Cavanna

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Solr Wiki" for change notification.

The "DataImportHandler" page has been changed by Luca Cavanna:
http://wiki.apache.org/solr/DataImportHandler?action=diff&rev1=302&rev2=303

Comment:
minor solrentityprocessor changes

  === SolrEntityProcessor ===
  <<Anchor(SolrEntityProcessor)>> <!> [[Solr3.6]]
  
- This EntityProcessor imports data from different Solr instances and cores. The data is retrieved based on a specified (filter) query.
+ This !EntityProcessor imports data from different Solr instances and cores. The data is retrieved based on a specified (filter) query.
- This EntityProcessor is useful in cases you want to copy your Solr index and slightly want to modify the data in the target index. In some
+ This !EntityProcessor is useful in cases you want to copy your Solr index and slightly want to modify the data in the target index. In some
- cases Solr might the only place were all data is available. The SolrEntityProcessor can only copy fields that are stored in the source index.
+ cases Solr might be the only place were all data is available. The !SolrEntityProcessor can only copy fields that are stored in the source index.
- The SolrEntityProcessor supports the following attributes:
+ The !SolrEntityProcessor supports the following attributes:
   * '''`url`''' : (required) The url of the source Solr instance / core
   * '''`query`''' : (required) The main query to execute on the source index.
   * '''`fq`''' : Any filter query to execute in the source index. (Comma seperated) 
@@ -903, +903 @@

  {{{
  <dataConfig>
    <document>
-     <entity name="sep" processor="SolrEntityProcessor" url="http://localhost:8983/solr/db " query="*:*"/>
+     <entity name="sep" processor="SolrEntityProcessor" url="http://localhost:8983/solr/db" query="*:*"/>
    </document>
  </dataConfig>
  }}}