我有一个Crossbar.js实现,其中数据通过Crossbar websocket服务器在客户端(网站)和服务器(Node.js)之间发送。双方都使用Autobahn.JS连接Crossbar服务器。
连接正常,但似乎客户端和服务器在随机时刻断开连接并重新连接。这种情况大约每两分钟发生一次。我也看到连接丢失并没有在双方同时发生。这让我觉得问题在于我在双方使用的高速公路实施(对于客户端和服务器而言大致相同)。
以下是我用来从Node.js连接到Crossbar服务器的方法。浏览器的版本几乎相同。我只更改了订阅,并将const
和let
变量更改为var
。
start(connectionConfig) {
const self = this;
self.host = connectionConfig.host;
self.realm = connectionConfig.realm;
self.channelPrefix = connectionConfig.channelPrefix;
try {
// Start an Autobahn websocket connection
self.connection = new autobahn.Connection({"url": self.host, "realm": self.realm});
self.connection.onopen = function(session) {
// Save session in class
self.session = session;
// Listen for incoming commands
session.subscribe(self.channelPrefix + 'smdc-server', self.onCommand.bind(self));
// Copy the class variable buffer to a local variable and set the
// class variable buffer to an empty array.
let localBuffer = self.socketBuffer;
self.socketBuffer = [];
// Send all messages from the local buffer that were 'send' using the class method (not displayed here on StackOverflow) while the connection was not yet established.
for (var i = 0; i < localBuffer.length; i++) {
session.publish(localBuffer[i].channel, [localBuffer[i].data]);
}
}
self.connection.onclose = function(reason, details) {
console.log("Autobahn closed!");
console.log("Reason: ");
console.log(reason);
console.log("Details: ");
console.log(details);
self.session = null;
}
self.connection.open();
} catch (err) {
console.log(err);
}
}
我无法在代码中看到错误并导致连接丢失的部分。
这是控制台输出的内容:
Autobahn closed!
Reason:
lost
Details:
{
reason: null,
message: null,
retry_delay: 1.4128745255660942,
retry_count: 1,
will_retry: true
}
Autobahn closed!
Reason:
lost
Details:
{
reason: null,
message: null,
retry_delay: 1.2303848117273903,
retry_count: 1,
will_retry: true
}
由于retry_count
变量始终为1
,我认为这些丢弃之间的连接已恢复。
这是Crossbar服务器输出的内容:
2017-08-23T10:46:34+0200 [Router 10622] session "1355162039012002" left realm "SMDC"
2017-08-23T10:46:35+0200 [Router 10622] session "2006451409833362" joined realm "SMDC"
2017-08-23T10:46:37+0200 [Router 10622] session "2006451409833362" left realm "SMDC"
2017-08-23T10:46:37+0200 [Router 10622] session "224071819838749" joined realm "SMDC"
由于Crossbar服务器能够列出断开连接和连接,我不认为Crossbar是问题所在。
我希望有人能提供帮助我的见解:)
答案 0 :(得分:3)
这听起来不像是与Autobahn.js(或Crossbar.js)有关的问题。这似乎更像是与浏览器或TCP超时规范有关的问题。
空闲连接可能会在某个时刻终止。看起来这个连接中涉及的某些软件或设备已经确定它闲置太久并因此关闭它。通常这是件好事;你不希望死连接在几天内空闲,实际上是TCP的设计方式。
现在,让我们谈谈解决方案。实际上,它非常简单。您希望每隔X秒发送一种消息来保持连接活动。例如,通过每隔30秒发送一次心跳或ping,您可以消除浏览器,客户端或服务器操作系统以及其间任何其他设备因终止连接而导致连接过长的情况。
如果您想要绝对确定连接因空闲时间过长而终止,您可能需要查看Wireshark。通过查看实际通过网络发送的原始数据包,您将很快找到它被终止的确切推理。