A developer creates a Dispatcher which extracts information from the top 30 mail messages in Microsoft Outlook and uploads that information into a queue.
What is the recommended way to avoid processing duplicates of the same Queue Items?
A developer creates a Dispatcher which extracts information from the top 30 mail messages in Microsoft Outlook and uploads that information into a queue.
What is the recommended way to avoid processing duplicates of the same Queue Items?
Setting the 'Unique Reference' of the queue to 'Yes' and adding a descriptive 'Reference' in the 'Add Queue Item' activity ensures that each item in the queue has a unique identifier. This uniqueness helps in automatically avoiding duplicates. If a duplicate is detected based on the 'Reference', it will not be added to the queue, thereby preventing the same item from being processed more than once.
D is correct but we need to check continue on error in add queue item actitivy because when have a duplicate item Studio throw exception
Ans: D
D is correct, C is for confusing you
D is correct ! auto retry is in case an item is cracked. It's not like filtering duplicates.