High Throughput and Windows Workflow Foundation
        Posted  
        
            by SometimesUseful
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by SometimesUseful
        
        
        
        Published on 2009-01-23T09:50:36Z
        Indexed on 
            2010/03/23
            11:33 UTC
        
        
        Read the original article
        Hit count: 368
        
workflow-foundation
|Workflow
Can WWF handle high throughput scenarios where several dozen records are 'actively' being processed in parallel at any one time?
We want to build a workflow process which handles a few thousand records per hour. Each record takes up to a minute to process, because it makes external web service calls.
We are testing Windows Workflow Foundation to do this. But our demo programs show processing of each record appear to be running in sequence not in parallel, when we use parallel activities to process several records at once within one workflow instance.
Should we use multiple workflow instances or parallel activities?
Are there any known patterns for high performance WWF processing?
© Stack Overflow or respective owner