Welcome to the Inedo Forums! Check out the Forums Guide for help getting started.
If you are experiencing any issues with the forum software, please visit the Contact Form on our website and let us know!
Connector error: The operation has timed out.
-
Hi Team
We've recently upgraded to 2024.37 to improve performance of proget. We've thousands of error like this.
Very few of these.
Almost all of them related to npm. Could you suggest on this.Thanks
parthu
-
Hi @parthu-reddy ,
These indicate that your network stack is being overloaded. npm can do this, as it's sending thousands of simultaneous requests to your server. Each of these requests require multiple database connections (network) and requests to remote registries (network).
If you're using load balancing, you'll want to tweak the configuration to do rate limiting. For example, in npm it's this: https://blog.nginx.org/blog/rate-limiting-nginx
Hope that helps,
Steve