A developer is creating a process using the Dispatcher and Performer model. The Dispatcher uses the Bulk Add Queue Items activity to upload items to an Orchestrator queue. Which type of design is best-suited for the automation of this Dispatcher?
A. Library
B. Iterative Process
C. Transactional Process
D. Linear Process
B. Iterative Process
The Dispatcher’s role is to gather data (items) and upload them to a queue in Orchestrator. Since the Dispatcher typically involves repetitive tasks of adding multiple items to the queue, an iterative process design is the most appropriate choice. This design allows the Dispatcher to efficiently handle a stream of data and queue them up for further processing by the Performer.
D is better. You’d just read the data and use a Bulk Add Queue Items activity. You don’t loop over the items and repeatedly use Add Queue Item.
Of course, the question doesn’t really give us enough info to make a final determination. The source of the data would determine the final choice.
You don’t use a transactional process for a dispatcher. You use it for the performer.
We use a linear process since generally, the dispatcher run once and and in performer we use transactional process to process
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.