I have an older application that I have upgraded and I am only having issues with the Search Engine going form Verity to Solr.
I have a simple query tht gets the content for each page and indexes it. The code works awesome in Varity - but when I run it on the Solr system I get the following error:
Error_opening_new_searcher_exceeded_limit_of_maxWarmingSearchers4_try_ again_later
Also - when this errors out (only this error) - the prowser shows the HTML Source of the error instead of the typical?
Any help, please!
There are only 207 records that I am trying to index?
between 20-25 actually get indexed.
<cfindex action="PURGE" collection="#application.stSiteData.objectCollection#">
<cfquery name="qGetData" datasource="#application.stSiteData.datasource#">
SELECT objectID
FROM Objects
WHERE active = 1
</cfquery>
<cfset myList = valueList(qGetData.objectID)>
<cfloop list="#myList#" index="xobjectID">
<CFQUERY name="qGetObjectData" datasource="#application.stSiteData.datasource#">
SELECT *
FROM objects INNER JOIN
Pages ON objects.pageID = Pages.pageID
WHERE Pages.exSiteSearch <> 1
and objects.objectID = '#xobjectID#'
</CFQUERY>
<cfindex action="UPDATE"
collection="#application.stSiteData.objectCollection#"
key="objectID"
query="qGetObjectData"
type="CUSTOM"
title="label"
body="label,objectData"
custom1="pageid"
custom2="">
</cfloop>