- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
Hi @Darren_Bowers,
batch is set to 500 records therefore think is not too much.
var url = getOption('my_endpoint');
var method = "POST";
var recordsToFetchPerBatch = 500;
var currentStartLine = 0;
var loop = true;
while(loop){
var query = xtk.queryDef.create(...
URL initializing is done on the beginning and calls are done in the loop. I cannot say that happens after certain number of records.
Just raising error at some time of execution and than again works. It happens once or twice in 20K of records for example.
Is there a way to increase max pool connections? I would say this is AC error and it is not on web service side.
Thinking to put some wait/sleep time (couple of seconds) between batches but not sure is that helpful.
Thanks
Milan
Views
Replies
Total Likes