I am trying to load an excel sheet containing more than 100k records in BluePrism Process Studio using Excel VBO object (It might go upwards of 300k in some cases). I am loading the collection into an internal work queue of BluePrism, but I get an error as quoted below:
'Load Data Into Queue' ERROR: Internal : Exception of type 'System.OutOfMemoryException' was thrown.
What is the safe limit with which I can load data in Work Queues? Can I modify that limit (or free up memory beforehand to avoid it)?
I plan to process records one by one from queue, and put them into new excel sheets categorically. Loading all that data in a collection and looping over it may be memory consuming, so I am trying to find out a more efficient way.
The alternatives that I already can think of:
1. Loop over the data in collection, processing them one by one.
2. Keep excel sheet open, and pick one record at a time, process it and send to appropriate collection categorically.
I welcome suggestions on which one of these could prove more efficient than others.
Thanks for all the help/tips in advance!