What is maximum number of items can be added into queue?

hi,
I’m using bulk add queue item to add items into queue, but got one error saying “Bulk Add Queue Items: Number of items is exceeding the 15000 limit Error code: 1000”
anyone has idea on this?

Hi @Manisha_Ravindra

You can add the 15000 line items at a time by using the Bulk add queue items activity. You might be added more than 15000 line items that’s why it throws error.

Check the below image for better understanding,

Hope it helps!!

@mkankatala So is that mean we can only add upto 15000 items of records at once even if we use add queue item activity?

Yes, you are correct… @Manisha_Ravindra

@Manisha_Ravindra,

Bulk Add Queue Items activity can add 15000 queue items at a time. You will have to split your datatable in chunks of 15000 then iterate through these chucks and get then added.

Thanks,
Ashok :slight_smile:

@Manisha_Ravindra

At once you can add 15k mac but in loop you can add more …here is the explanation on how to make chunks and add

Cheers