Hi,
We integrated AEM 6.2 with solr using the below link - Adobe Experience Manager Help | Integrating SOLR with Adobe Experience Manager . However when we try the steps on AEM 6.3, it doesnt give expected results. Any pointers?
Thanks,
Anil
Solved! Go to Solution.
Views
Replies
Total Likes
After I made this Java change in the SolrSearchServiceImpl class - it works.
We will write the AEM 6.3 article this week that captures all steps...
Views
Replies
Total Likes
The questions in itself is not very clear, could you please elaborate about the problem? I assume that you are using same data set for testing the search, on AEM 6.2 as well as AEM 6.3 with Solr. When you say, AEM 6.3 doesn't give expected results, does it throw any exceptions or does it return empty results or does it return wrong results? Also, please post any relevant log errors, if any.
Views
Replies
Total Likes
That is because the article is for AEM 6.2. We have not updated that community article for 6.3.
Views
Replies
Total Likes
Issue with Java code is it uses this call to get a session:
//Cannot get session like this in AEM 6.3
session = repository.loginAdministrative(null);
We are updating to this:
Map<String, Object> param = new HashMap<String, Object>();
param.put(ResourceResolverFactory.SUBSERVICE, "datasolr");
ResourceResolver resolver = null;
try {
//Invoke the adaptTo method to create a Session used to create a QueryManager
resolver = resolverFactory.getServiceResourceResolver(param);
session = resolver.adaptTo(Session.class);
I am testing & updating article.
Views
Replies
Total Likes
After I made this Java change in the SolrSearchServiceImpl class - it works.
We will write the AEM 6.3 article this week that captures all steps...
Views
Replies
Total Likes
Thanks Scott,
We faced another issue with one of SolrUtil method when indexing we.retail site.
Regards,
Anil
Views
Replies
Total Likes
I have one question. Why is the SolrServerConfiguration and corresponding impl custom created in code when we have OOTB 'Apache Jackrabbit Oak Solr remote server configuration' available?
Views
Replies
Total Likes
What is Adobe recommendation to integrate solr out of these two:
Solr as oak index or AEM with solr as rest based integration.
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies