Node.js で次のエラーを受け取りました。これは AMQP に関連していると思います。
(node) warning: possible EventEmitter memory leak detected. 11 listeners added. Use emitter.setMaxListeners() to increase limit.
Trace
at Connection.EventEmitter.addListener (events.js:160:15)
at Connection.EventEmitter.once (events.js:179:8)
at Connection.connect (/var/www/project/app/node_modules/amqp/amqp.js:1084:8)
at Connection.reconnect (/var/www/project/app/node_modules/amqp/amqp.js:1049:8)
at null._onTimeout (/var/www/project/app/node_modules/amqp/amqp.js:886:16)
at Timer.listOnTimeout [as ontimeout] (timers.js:110:15)
誰でも問題が何であるかを指摘できますか?
接続に使用するモジュールのコードは次のとおりです。
JackRabbit.prototype.subscribe = function subscribe(recievedCB, routingKey) {
var self = this;
var route = routingKey || '#';
self.createConnection(function(rabbitMq, ex, q) {
// Catch all messages
q.bind(self.config.exchangeName, route);
// Receive messages
q.subscribe(self.config.messageOptions, function(msg, headers, deliveryInfo) {
recievedCB(q, msg, headers, deliveryInfo);
// Clsoe connection
//rabbitMq.end();
});
});
}
そして、ここでそのメソッドを呼び出します。
var scrapRequestRecieved = function(q, msg, headers, deliveryInfo) {
console.log("SC msg: %j", msg);
/** Callback function shifts the completed job from the queue. */
phantom.scrapeUrls(msg.urls, function() {
console.log("SC DONE");
q.shift();
});
};
rabbit.subscribe(scrapRequestRecieved, "sc.#");