我有一个函数:
1. 从 collection 的 mongoDB 文档中获取一个包含 3000 个“id”属性的数组foo
。
2. 为每个 ID 创建一个 GET 请求以获取 'resp' obj for id,并将其存储在另一个数据库中。
router.get('/', (req, res) => {
var collection = db.get().collection('foo');
var collection2 = db.get().collection('test');
collection.distinct('id', (err, idArr) => { // count: 3000+
idArr.forEach(id => {
let url = 'https://externalapi.io/id=' + id
request(url, (error, response, body) => {
if (error) {
console.log(error)
} else {
resp = JSON.parse(resp);
collection2.insert(resp);
}
});
});
节点错误日志:
[0] events.js:163
[0] throw er; // Unhandled 'error' event
[0] ^
[0]
[0] Error: connect ETIMEDOUT [EXT URL REDACTED]
[0] at Object.exports._errnoException (util.js:1050:11)
[0] at exports._exceptionWithHostPort (util.js:1073:20)
[0] at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1093:14)
我使用 simple-rate-limiter 不会导致速率限制(25cps):
const limit = require("simple-rate-limiter");
const request = limit(require("request")).to(20).per(1000);
但是在 300-1700 个请求之间的任何地方,我都会收到此错误,该错误会使命令行上的节点崩溃。如何处理此错误以防止我的应用程序崩溃?
我尝试了很多错误处理,但没有一个能够处理connect ETIMEDOUT