Delay activity not always working in Sharepoint 2010 workflow

后端 未结 1 900
旧时难觅i
旧时难觅i 2021-01-05 23:15

Currently we have a sequential workflow in sharepoint 2010 that has a delay activity.

The delay is set to five minutes. The workflow checks on the status of five tas

1条回答
  •  一整个雨季
    2021-01-06 00:08

    This issue has been resolved. I had forgotten to post the resolution...

    Three settings needed to be modified. Workflow Throttle, Workflow Batch, and the Hidden Workflow Timer.

    You can check the current throttle setting by running the following command:

    stsadm -o getproperty -pn workflow-eventdelivery-throttle

    Here is my new setting:

    stsadm -o setproperty -pn workflow-eventdelivery-throttle -pv "45"

    You can check the current batch size setting by running the following command:

    stsadm -o getproperty -pn workitem-eventdelivery-batchsize

    Here is my new setting.

    stsadm -o setproperty -pn workitem-eventdelivery-batchsize -pv "250"

    You can check the current interval setting by running the following command, in which you replace the URL with a valid path to a SharePoint application:

    stsadm -o getproperty -pn job-workflow -url http://yoursiteurl

    Here is my setting:

    stsadm -o setproperty -pn job-workflow -pv "Every 5 minutes between 0 and 59" -url http://yoursiteurl

    0 讨论(0)
提交回复
热议问题