If 15 sounds like a small number for a "hard limit", you're not alone.
It looks like the 15 limit Harsh mentions might actually be the WorkflowEventDeliveryThrottle, which is 15 by default. This throttle can be modified (see below) - try setting it to a very low number, and you should see that workflow activation slows dramatically.
SPWebService spWebService = SPFarm.Local.Services.GetValue<SPWebService>();
spWebService.WorkflowEventDeliveryThrottle = 20; // default is 15
spWebService.Update();
1 comment:
Usual total lack of documentation with SharePoint. Could be a really good product if Microsoft could document it and make the licencing clear!
Post a Comment