Change the Name of Sources Created in the Coveo Index
Change the Name of Sources Created in the Coveo Index
The first time you rebuild your indexes in Sitecore, Coveo for Sitecore creates a source corresponding to each index in Coveo.
These sources are named after a combination of your Sitecore index name and the Farm name
value you specified in the activation step (for example, Coveo_master_index - ProductionFarm
and Coveo_web_index - ProductionFarm
).
If you have not specified a Farm name
value, the Sitecore host and instance name are used instead.
Typically, you may want to change the names of your sources to make them shorter and easier to remember whenever you need them to manually perform a query.
Leading practice
Instead of setting individual source names, you can set a name for the entire farm (see Assign a Farm Name to Resources). |
Changing the Source Name
The current procedure shows you how to modify the name of the source corresponding to the Sitecore master
index.
-
Open the
Coveo.SearchProvider.Custom.config
file using a text editor. -
Create the element for the
master
index configuration. It should look like this:<configuration xmlns:patch="http://www.sitecore.net/xmlconfig/"> <sitecore> <contentSearch> <configuration> <indexes> <index id="Coveo_master_index"> </index> </indexes> </configuration> </contentSearch> </sitecore> </configuration>
-
In the
index
node, add an element namedsourceName
that encloses the desired source name in Coveo. For example, you could name your sourceTest
. Your index configuration should now look like this:<configuration xmlns:patch="http://www.sitecore.net/xmlconfig/"> <sitecore> <contentSearch> <configuration> <indexes> <index id="Coveo_master_index"> <sourceName>Test</sourceName> </index> </indexes> </configuration> </contentSearch> </sitecore> </configuration>
The
sourceName
element is case-sensitive. Make sure that the value you enter exactly matches the casing of the corresponding source in Coveo. Typically, a source name should look like this:Coveo_web_index - WKS-000236-Sitecore72u2
. -
Save the file and re-index your items (see Coveo for Sitecore Indexing Guide).
-
You can validate that the new source has been created in the Coveo Administration Console:
Note
The first re-indexing may take longer, as a new source needs to be created. The old sources aren’t deleted. |