cancel
Showing results for 
Search instead for 
Did you mean: 

Memory Issue

sabarisr
Level 3
Exception Details -Internal : Add To Queue Stage - Failed to allocate a managed memory buffer of 268435456 bytes. The amount of available memory may be low.
2 REPLIES 2

AndreyKudinov
Level 10
How many items? Try adding data in smaller batches.

BenKirimlidis
Level 7
Instead of adding all at once, you can create a collection of a single item.  Loop through your input collection and copy data from the i-th element to the single item collection and add that item to the queue, then loop again. Will then be able to able add many items regardless of the amount of memory available.