0

我正在使用 ColdFusion 9,并创建了一个名为“shopColl”的真实集合。我创建了一个任务计划来调用 CFM 文件以每 5 分钟对该集合进行索引。

但是当我尝试刷新集合中的索引时发现了这个错误:

An error occurred while performing an operation in the Search Engine library.; DETAIL:The collection is not available.: com.verity.coll.VCollectionNotAvailableException: Collection down after opening. (10) 

你能帮我解决这个问题吗?直到今天晚上,这个过程似乎是正确的。

下面的代码位于任务计划将在例程中调用的 CFM 文件中。

<cfprocessingdirective  suppresswhitespace="true">

<cftry>
    <!--- pull the content --->
    <cfquery datasource="shop" name="shop.getContent">
        SELECT * 
        FROM shop
    </cfquery>


    <!--- update collection --->
    <cflock name="cfindex_lock" type="exclusive" timeout="30">

    <cfindex collection="shopColl"
             action="refresh" 
             type="custom"
             query="shop.getContent"
             key="id"
             title="title"
             body="title,description" >

    </cflock>

    <!--- Log information about document change --->
    <cflog file="updateStatus" application="No" 
      type="information" 
      text="MESSAGE: Eso shop collection updated; TIME: #now()#">


    <cfreturn true />

<cfcatch type="any">
    <!--- Log information about error --->
    <cflog file="updateStatus" application="No" 
      type="error" 
      text="MESSAGE: error in updating index -- #cfcatch.message#; DETAIL:#cfcatch.detail# TIME: #now()#">
    <cfreturn false />
</cfcatch>
</cftry>
</cfprocessingdirective>
4

1 回答 1

1

尝试在任务之外运行它,看看需要多长时间。如果时间超过 5 分钟,则可能与计划任务发生死锁。

于 2010-01-06T19:31:03.093 回答