There are different indexing options provided by AEM. I am currently on AEM 6.1
- Lucene index - Stores index data under repository (crx-quickstart\repository\index). Index config resides on AEM (/oak:index)
- Solr index - This would store index data on remote Solr Instance, configurations are on AEM side (/oak:index)
- External solr without indexing config on AEM - This would have data indexed manually through code to remote solr instance and then search hits can directly be made to solr instance. (Here we don't have to worry about clustering on the AEM side)
First 2 options search hits happen through AEM through querybuilder. Question is
In case of clustered environment does each publish instance needs to have index configuration? And each AEM would have indexed data stored? Can multiple publish instances share the index data?
Thanks
Sandeep