1

我正在尝试将任务配置为每 5 秒运行一次(在生产中,频率将设置为 30 分钟,但我将其设置为 5 秒以进行调试)。

<scheduling>
  <!-- Time between checking for scheduled tasks waiting to execute -->
  <frequency>00:00:10</frequency>
....
<agent type="MyStuff.Sitecore.Tasks.UpdateJob" method="Run" interval="00:00:05">
        <LogActivity>true</LogActivity>
      </agent>

我的课看起来像:

namespace MyStuff.Sitecore.Tasks
{
    public class UpdateJob
    {
       public void Run()
       {
          //debugger never enters here
       }
    }
}

但无论如何,代码似乎永远不会被调用。我试过点击其他网页,所以我知道 asp.net 工作进程还活着。

该类位于网站项目中调用的共享库中,因此无论 sitecore 配置正在寻找该MyStuff.Sitecore.Tasks.UpdateJob类型,都应该能够找到它。另外,我检查了 Sitecore 日志,我没有看到任何错误或与任务有关的任何内容

知道我缺少什么吗?


编辑我在日志中看到的唯一“可疑”是:

ManagedPoolThread #12 15:53:10 INFO  Starting update of index for the database 'master' (1 pending).
ManagedPoolThread #12 15:53:10 INFO  Update of index for the database 'master' done.
ManagedPoolThread #18 15:53:36 ERROR Exception in geoip worker thread.
Exception: System.Reflection.TargetInvocationException
Message: Exception has been thrown by the target of an invocation.
Source: mscorlib
   at System.RuntimeMethodHandle._InvokeConstructor(IRuntimeMethodInfo method, Object[] args, SignatureStruct& signature, RuntimeType declaringType)
   at System.RuntimeMethodHandle.InvokeConstructor(IRuntimeMethodInfo method, Object[] args, SignatureStruct signature, RuntimeType declaringType)
   at System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at Sitecore.Reflection.ReflectionUtil.CreateObject(Type type, Object[] parameters)
   at Sitecore.Configuration.Factory.CreateFromTypeName(XmlNode configNode, String[] parameters, Boolean assert)
   at Sitecore.Configuration.Factory.CreateObject(XmlNode configNode, String[] parameters, Boolean assert, IFactoryHelper helper)
   at Sitecore.Configuration.Factory.GetProviders[TProvider,TCollection](List`1 nodes)
   at Sitecore.Configuration.Factory.GetProviders[TProvider,TCollection](String rootPath, TProvider& defaultProvider)
   at Sitecore.Configuration.ProviderHelper`2.ReadProviders()
   at Sitecore.Configuration.ProviderHelper`2.get_Provider()
   at Sitecore.Analytics.Lookups.GeoIpWorker.ProcessGeoIp()
   at Sitecore.Analytics.Lookups.GeoIpWorker.<Wakeup>b__3(Object a)

我正在使用 Sitecore 6.5

4

3 回答 3

3

您可以尝试将您的代理声明更新<agent type="Mystuff.Sitecore.Tasks.UpdateJob, Mystuff" method="Run" interval="00:00:05">为 Mystuff 是您的程序集名称。似乎缺少组件。

根据 techphoria414 的建议添加为答案。

于 2012-05-08T02:45:15.247 回答
0

The answer lies in <frequency>00:00:10</frequency>, this should always be as low as your most frequent task, so in this case 00:00:05.

于 2012-05-04T17:53:31.053 回答
0

虽然我稍微回避了你的问题,但我从来没有成功地在处理计划任务时调用调试器。我改为使用Sitecore.Diagnostics.Log然后我希望显示的相关调试级别。很多时候我发现这相当有限,但是使用第三方尾部实用程序,您可以轻松地查看日志。

也许这会给你一个临时解决方案,直到其他人回答。

于 2012-05-04T13:04:42.060 回答