Memory Issue
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
24-05-19 07:24 PM
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
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
24-05-19 09:27 PM
How many items? Try adding data in smaller batches.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
28-05-19 06:25 PM
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.
