I am using a Bulk queue item add activity with a timeout of 3 minutes. The bot is supposed to add 8000+ rows of items but keeps faulting after adding few. This happens within 3 minutes and the bot throws an exception before the timeout is completed.
Is the issue related to amount of data in the datatable which is being added or the timeout? And how do I fix this?
Error message: Operation returned an invalid status code ‘524’
Because of the Large number of rows adding to the queues, this timeout happening, to rectify this you have to split the data and then add the data to the queues.
Here is the workflow to split the data and adding into queue, check this for your reference,
I did something with outlook timeouts with large numbers of mails:
timeout too short → error
timeout too long → wasting time if there actually is something wrong.
So I calculated the timeout (based on some done measurements) in direct relation to the number of items. Might be useful.
In your use-case I’d do both: dynamic timeout based on # of records, as well as breaking up the bulk load in smaller batches of for example 50-100 records and iterate through that.