Expand my Community achievements bar.

SOLVED

AEM 6.3 and solr integration

Avatar

Level 4

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

1 Accepted Solution

Avatar

Correct answer by
Level 10

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...

AEM_SOLR63.png

View solution in original post

7 Replies

Avatar

Level 3

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.

Avatar

Level 10

That is because the article is for AEM 6.2. We have not updated that community article for 6.3.

Avatar

Level 10

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.

Avatar

Correct answer by
Level 10

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...

AEM_SOLR63.png

Avatar

Level 4

Thanks Scott,

We faced another issue with one of SolrUtil method when indexing we.retail site.

Regards,

Anil

Avatar

Level 1

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?

Avatar

Level 2

What is Adobe recommendation to integrate solr out of these two:

Solr as oak index or AEM with solr as rest based integration.