/ / सिटकोर सॉल पुनर्निर्माण फीचर कारण 'उदाहरण नहीं बना सकता' - सॉल, सिटकोर, सिटकोर 8

साइटकोर सोलर पुनर्निर्माण सुविधा 'उदाहरण नहीं बना सका' का कारण बनता है - solr, sitecore, sitecore8

Sitecore 8.0 अपडेट 6 सोलर 5.2.1

सॉलकोर के साथ सोलर सर्च को लागू करना और पुनर्निर्माण के विकल्प का उपयोग करना चाहते हैं। मेरे पास सोल में दो कोर हैं। मैं एक पैच फ़ाइल के साथ अपने सोलर इंडेक्स को अपडेट करता हूं जैसे:

<?xml version="1.0" encoding="utf-8"?>
<!-- Purpose: This include file defines the indexes used by the content testing feature of Sitecore when using the SOLR content search provider. -->
<configuration xmlns:patch="http://www.sitecore.net/xmlconfig/">
<sitecore>
<contentSearch>
<configuration type="Sitecore.ContentSearch.ContentSearchConfiguration, Sitecore.ContentSearch">
<indexes hint="list:AddIndex">
<index id="sitecore_analytics_index" type="Sitecore.ContentSearch.SolrProvider.SwitchOnRebuildSolrSearchIndex, Sitecore.ContentSearch.SolrProvider">
<param desc="core">sitecore_frontend_index</param>
<param desc="rebuildcore">sitecore_frontend_index_sec</param>
</index>
</configuration>
</contentSearch>
</sitecore>
</configuration>

लेकिन जब मैं उस साइट को ब्राउज़ करता हूं जो मुझे मिलती है:

प्रकार का उदाहरण नहीं बना सका: Sitecore.ContentSearch.SolrProvider.SwitchOnRebuildSolrSearchIndex। कोई मिलान करने वाला निर्माण नहीं मिला।

इसका निश्चित रूप से पुनर्निर्माण पैरामीटर क्योंकि इसे हटाने और इसे वापस SolrSearchIndex पर स्विच करने से समस्या ठीक हो जाती है।

केवल एक चीज जो मैं देख सकता हूं, वह यह है कि कुछ लेखों में यह सॉल्वर। Xml फ़ाइल में कुछ जोड़ने का उल्लेख करता है, लेकिन मेरे सेटअप में solr.xml फ़ाइल प्रश्न में एक्टिल्स के समान नहीं है।

उत्तर:

उत्तर № 1 के लिए 1

SwitchOnRebuildSolrSearchIndex कंस्ट्रक्टर के केवल 4 पैरामीटर हैं।

आपको निम्नलिखित टिप्पणी करने की आवश्यकता है <param desc="group">experience</param> से ही Sitecore.ContentSearch.Solr.Index.Analytics.config.

यह जानने के लिए कि क्या sitecore_analytics_index 4 पैरामीटर ले रहा है, इसे /sitecore/admin/showconfig.aspx के माध्यम से जांचें क्योंकि आप ऊपर उठ रहे हैं sitecore_analytics_index

आप निम्न लिंक को भी देख सकते हैं: सोलर इंडेक्स स्विच करें

धन्यवाद