What is Bottleneck and why do I need it in my coding life?
If you've spent any time working with 3rd party APIs you'll have come up agai...
For further actions, you may consider blocking this person and/or reporting abuse
I tried the above suggestion to make multiple requests to a remote third party API to solve the " Socket hangout issue, ECONNRESET in Express.js (Node.js) with multiple requests: but still getting the error. I will appreciate your help. Thanks
That means the other end of the connection closed it for some reason. Can you share your code?
This is the code I use to simulate the bulk operation
Then this is the one for bottleneck
How you're wrapping the function looks fine. If you call initializeParsingProcess() directly, what happens?
I will get the error below when I call direct. I use bottleneck to see whether that can be solved after going your amazing post here but still getting the same error below
Ah, I see, I thought you were suggesting the problem was with your usage of Bottleneck. Can you share the code that you use to call the API?
I used Axios to make post request to a remote server. This is the code below
After that, I import into the file below to make the call
Can you try with a raw axios instance, i.e. without the KeepAliveAgent?
I have done that. It was after some research that I added KeepAliveAgent to see whether it can be solved but still proved abortive
How about making a single, non-bottlenecked call to the API? Does that work?
Making a single call even with bottleneck works perfectly
Then I'm guessing there's something weird in the way you're building the URLs or making the requests when there are multiple API calls.
To clean things up, if I was you I'd change the code to use map() on the array of cvUrl returning a promise for each call.
The await promise.all() on the result of that map, then do your parsing.
Put console.logs in each iteration to determine exactly what you're sending and wrap in try/catch to see if you can find any more information about what's actually going wrong with the connection.
This is where I tried it with Promise.all but got the same error. Is this code below look like what you suggested above?
I need your assistance to get this resolve. Thanks
@ross Coundon, I would appreciate your assistance from the wealth of your experience in the field interacting with several third part API on how I can make a concurrent request to the server without experience the "socket hangout issue". In the first interaction of the loop shown above, I will get results from the third-party API but on the second iteration, there will be a delay for a response from the third party and hence the error message below
Hi - I'm not sure what to suggest, are you able to share what the 3rd party API is? Do they provide any documentation/information on acceptable usage, time between requests, number of concurrent requests etc?
They do not have that spell out on their API documentation. I have sent a mail to them to inquire about the acceptable usage, the time between requests, number of concurrent requests
Great stuff, thanks for bringing
bottleneck
to the broader audience.Been using it for quite a while now, it's amazing!