How to automatically push data(/content/dam/*) in solr after click on Quick publish button(Manage Publication)
from author to publish in AEM 6.5.12 version ? Do we need to configure any setting in configMgr?
Solved! Go to Solution.
Views
Replies
Total Likes
Hi @Rohit4
You can use Replication Event Listener for events triggering on a click of the Quick Publish button and SolrClient for indexing the data to Solr.
Please refer this article for full implementation - https://unlocklearning.in/solr-indexing-by-replication-event-listener/
Some other helpful links as below:
https://helpx.adobe.com/uk/experience-manager/kb/ReplicationListener.html
https://gist.github.com/kuckmc01/8fa10234dc3dbc55447adf1b621c2ed9
Hope this could help you.
Regards!
Shiv
Hi,
You need to create an event listener on replication event, which will push the content to Sonr whenever there is a publication.
Hi @Rohit4 ,
When you sync AEM with remote SOLR a separate document will create for each AEM node. So would be the best option to create custom Service/Component to bulk load all content pages to solr.
Hope that helps!
Regards,
Santosh
Hi @Rohit4
You can use Replication Event Listener for events triggering on a click of the Quick Publish button and SolrClient for indexing the data to Solr.
Please refer this article for full implementation - https://unlocklearning.in/solr-indexing-by-replication-event-listener/
Some other helpful links as below:
https://helpx.adobe.com/uk/experience-manager/kb/ReplicationListener.html
https://gist.github.com/kuckmc01/8fa10234dc3dbc55447adf1b621c2ed9
Hope this could help you.
Regards!
Shiv