Recently I had a scenario where I had to rebuild the xDB Index, initially I thought it will be through Control Panel and the way we rebuild other indexes in SOLR. But to my surprise, it wasn't using Sitecore Control Panel or SOLR's dashboard, it was using the Command Prompt on the server where your … Continue reading Rebuilding xDB Index for xConnect in Sitecore
Solr
How to quickly mitigate Log4J critical vulnerability?
There is a lot of discussion around the Log4J CVE in the community. If you haven't heard or read about it then below is the good read https://support.sitecore.com/kb?id=kb_article_view&sysparm_article=KB1001391 The Sitecore versions that got affected are:Sitecore XP 9.2Sitecore XP 9.3Sitecore XP 10.0Sitecore XP 10.1Sitecore XP 10.2 Versions not affected Sitecore XP 9.1 and earlier versions are … Continue reading How to quickly mitigate Log4J critical vulnerability?
Enabling the Suggester from SOLR for the Search box
We recently used SOLR suggester to implement autocomplete feature for our Site search. There are 3 steps involved to implement the Suggester:1. Add the Search component in solrconfig.xml file.2. Add the new field in Managed-Schema file.3. Call the Suggester from your Controller method. Add the Search component in solrconfig.xml filea. Go to the solrconfig.xml file … Continue reading Enabling the Suggester from SOLR for the Search box
How to resolve SOLR Heap size issue?
We recently started facing heap size issue on one of our SOLR instance. Error: Caused by: java.lang.OutOfMemoryError: Java heap space I thought it was easy fix by just adding more memory but it wasn't as forward as I thought. Before you jump to the solution I will share a good link which will explain you … Continue reading How to resolve SOLR Heap size issue?
Use PowerShell script to install SOLR
We tried using a PowerShell script for SOLR installation and it works like a charm for us. Jeremy Davis's post helped us a lot to get to this. Please refer his post here, it almost removes all your headache of manually installing SOLR. Also there is good discussion on Stack Exchange. This script reduces your … Continue reading Use PowerShell script to install SOLR
Installing Sitecore 10 using SOLR as Search Provider on Azure
In this blog, we will see how to install Sitecore 10 with SOLR as Search provider. In case if you are looking for Sitecore with Azure Search as a Search provider then you can go through this blog. Also the prerequisite for installing the Sitecore 10 with SOLR is that we need the SOLR up … Continue reading Installing Sitecore 10 using SOLR as Search Provider on Azure
How to setup SOLR search provider in your instance?
In this blog, we will see how to configure SOLR search provider in your instance if you are using Azure Search and now you want to switch to SOLR. To specify the search provider, open the Web.config file from the Sitecore instance and search for the search:define key. If we want to use SOLR as … Continue reading How to setup SOLR search provider in your instance?
How to create SOLR cores on Azure hosted SOLR service?
In this blog, we will check 2 ways of creating the SOLR cores. How to create a core in SOLR with API? http://%5BYOUR SOLR SITE ADDRESS]/solr/admin/cores? action=CREATE&name=sitecore10demo_custom_index&instanceDir=sitecore10demo_custom_index&configSet=_default&dataDir=data Here are details about parameters – ParameterValueCommentsactionCREATECommand to create corenamesitecore10demo_custom_indexName of the coreinstanceDirsitecore10demo_custom_indexDirectory nameconfigSet_defaultConfigset to be useddataDirDataData directory How to create a core in SOLR manually? We can … Continue reading How to create SOLR cores on Azure hosted SOLR service?
Setting up SOLR in cloud as an App Service
In this blog we will target the SOLR service for Sitecore 10, and hence we will configure SOLR 8.4.0. If you are looking for a solution for older version of Sitecore or SOLR then you can refer Dan Cruickshank's blog here. Setting up the App Service Login to Azure portal. Navigate to App Services and … Continue reading Setting up SOLR in cloud as an App Service
Search not working in Content Editor on Azure PaaS instance
Once we install Sitecore on Azure PaaS using the Marketplace option. In either case, if you opted for SOLR or Azure Search as search provider, the advanced search or the search in the Content Editor doesn't work. What can be the reason behind this issue? The reason is the indexes are not created or the … Continue reading Search not working in Content Editor on Azure PaaS instance