Search Manual / Version 2406.0
Table Of Contents
The configuration of the CoreMedia Search
Engine includes the location of Apache Solr and the
name of the target Solr collection. This is done by setting the properties
solr.url
or solr.zookeeper.addresses
, and solr.cae.collection
.
Each feeding application needs a different collection. Do not use the same collection for multiple instances of
the CAE Feeder or the Content
Feeder. For example:
solr.url=http://localhost:40080/solr solr.cae.collection=preview
For SolrCloud, do not configure property solr.url
but set solr.cloud=true
and the ZooKeeper address(es) instead as in the following example:
solr.cloud=true solr.zookeeper.addresses=zookeeper1:2181,zookeeper2:2181,zookeeper3:2181, solr.cae.collection=preview
If the collection does not exist in Solr yet, the CAE Feeder will create
it when started. It will create the collection based on the Solr config set "cae
".
If necessary, a different config set name can be configured with CAE Feeder
property solr.cae.config-set
.
If Apache Solr has been secured and needs HTTP basic authentication, you
must also configure the required user name and password in the properties
solr.username
and solr.password
.