1

我正在尝试循环访问用户并在远程服务器上为每个用户执行请求。许多请求因ECONNREFUSED错误而失败。我已经尝试设置globalAgent.maxSockets和交错请求,但问题仍然存在。这是来自远程服务器的响应还是我的节点应用程序中的错误?我该如何解决这个问题?

资源:

var https = require("https");       
https.globalAgent.maxSockets = 1024;

var get = function(username, password, cb, failed) {
    var post_data = 'username='+user+'&password='+password;

    var post_req = https.request({
        host:__HOST__, 
        port:443, 
        path:'/Controls/CredentialsUI.ashx', 
        method: "POST",
        agent:false,
        headers: {
            'Content-Type': 'application/x-www-form-urlencoded',
            'Content-Length': post_data.length
        }
    }), function(r) {
        // get cookie if received 
        if( r.headers["set-cookie"] ) 
            cb(r.headers["set-cookie"][0].split(";")[0].split("=")[1])
        else failed();
    });

    post_req.on('error', function(error) {
        // Error handling here
        console.log(error, "for "+username);
        });

    post_req.write(post_data);
    post_req.end();
};

var success = function(){ /*...*/ };
var failure = function(){ /*...*/ };

var users = [/* array about 300 in size */];
users.map(function(user) {
    get(user.name, user.password, success, failure);
});
4

1 回答 1

0

如果您连接到同一台服务器,实际上最好降低套接字池(globalAgent.maxSockets),默认值 5 应该足够了,但这取决于您的负载,当然还有远程服务器的响应时间。因此,您的 node.js 客户端将重新使用 keep-alive 连接,而不是创建新连接。这也可以解决远程服务器拒绝接受更多连接的问题。

于 2012-07-23T08:06:19.523 回答