Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
19-07-20 01:32 PM
If I have 100 items to add into queue,On what basis, the work queue data is added into the queue? Is it FIFO basis. How does it prioritize work items internally without setting priority from object level?
------------------------------
Pooja Kumari
------------------------------
------------------------------
Pooja Kumari
------------------------------
Answered! Go to Answer.
1 BEST ANSWER
Helpful Answers
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
20-07-20 02:25 AM
Yes, it is a FIFO basis. Given the same priority, earlier items that were added to the queue are retrieved before later ones.
I have found that there is no guarantee to the order time if you add an entire collection into a queue at once though, for example:
Collection Data
1 abc xyz
2 def rst
If you add the entire collection or both items in a single "Add to Queue" Action, item 1 may be added after item 2. Or Item 2 could be after Item 1.
If you want to force Item 1 to be added before Item 2, you should loop over the collection and add each individual row to the queue using "Add to Queue".
------------------------------
James Man
Professional Services
Blue Prism
Asia/Hong_Kong
------------------------------
I have found that there is no guarantee to the order time if you add an entire collection into a queue at once though, for example:
Collection Data
1 abc xyz
2 def rst
If you add the entire collection or both items in a single "Add to Queue" Action, item 1 may be added after item 2. Or Item 2 could be after Item 1.
If you want to force Item 1 to be added before Item 2, you should loop over the collection and add each individual row to the queue using "Add to Queue".
------------------------------
James Man
Professional Services
Blue Prism
Asia/Hong_Kong
------------------------------
2 REPLIES 2
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
20-07-20 02:25 AM
Yes, it is a FIFO basis. Given the same priority, earlier items that were added to the queue are retrieved before later ones.
I have found that there is no guarantee to the order time if you add an entire collection into a queue at once though, for example:
Collection Data
1 abc xyz
2 def rst
If you add the entire collection or both items in a single "Add to Queue" Action, item 1 may be added after item 2. Or Item 2 could be after Item 1.
If you want to force Item 1 to be added before Item 2, you should loop over the collection and add each individual row to the queue using "Add to Queue".
------------------------------
James Man
Professional Services
Blue Prism
Asia/Hong_Kong
------------------------------
I have found that there is no guarantee to the order time if you add an entire collection into a queue at once though, for example:
Collection Data
1 abc xyz
2 def rst
If you add the entire collection or both items in a single "Add to Queue" Action, item 1 may be added after item 2. Or Item 2 could be after Item 1.
If you want to force Item 1 to be added before Item 2, you should loop over the collection and add each individual row to the queue using "Add to Queue".
------------------------------
James Man
Professional Services
Blue Prism
Asia/Hong_Kong
------------------------------
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
20-07-20 08:48 AM
It should be FIFO unless you apply the Priority input parameter
------------------------------
John Carter
Professional Services
Blue Prism
------------------------------
------------------------------
John Carter
Professional Services
Blue Prism
------------------------------
