如何配置ZeroRPC和超时

问题描述 投票:5回答:2

我正在尝试使用ZeroRPC python服务器和node.js客户端进行一些简单的负载测试。我注意到的是,如果请求花费的时间超过10秒,我将无法获得任何数据。我试图在python代码中不配置任何心跳:

s = zerorpc.Server(Test(), heartbeat=None)

以及尝试配置node.js客户端:

new zerorpc.Client({ timeout: 60, heartbeatInterval: 60000 }),

但仍然看到相同的行为。

如何获得超过10秒才能返回结果的请求?

python node.js zeromq zerorpc
2个回答
0
投票

zerozeroc节点的最新可用版本(0.9.3)使用已编码的HEARBEAT超时。

您可以在https://github.com/dotcloud/zerorpc-node/blob/0.9.3/lib/channel.js中看到:

//Heartbeat rate in milliseconds
var HEARTBEAT = 5000;
...
//Resets the heartbeat expiration time
Channel.prototype._resetHeartbeat = function() {
    this._heartbeatExpirationTime = util.curTime() + HEARTBEAT * 2;
};

但是,最新的主发行版在您尝试在客户端构造器中指定时实现了listenbeatInterval选项。

然后您的代码可以使用命令安装最新的主服务器

npm install git+https://github.com/dotcloud/zerorpc-node.git

或等待新版本...。


0
投票

对于最新的js zerorpc版本v0.9.8

# npm list zerorpc
xxx/electron-python-example
└── [email protected] 

和python zerorpc版本v0.6.3

# pip show zerorpc             
Name: zerorpc
Version: 0.6.3
Summary: zerorpc is a flexible RPC based on zeromq.
Home-page: https://github.com/0rpc/zerorpc-python
Author: François-Xavier Bourlet <[email protected]>.
Author-email: UNKNOWN
License: MIT
Location: xxx/venv/lib/python3.8/site-packages
Requires: msgpack, future, pyzmq, gevent
Required-by: 

提供给您的是heartbeatInterval

所以我在这里使用代码electron-python-example/renderer.js

const constLargeEnoughHeartbeat = 60 * 60 * 24 * 30 * 12 // 1 Year
clientOptions = {
  "heartbeatInterval": constLargeEnoughHeartbeat,
}
let client = new zerorpc.Client(clientOptions)

可以实现您的预​​期:心跳足够大到1年->超过10秒钟,js和python仍在运行,没有更多错误

  • js:invoke startSaver: error=Error: Lost remote after 10000ms
  • python:zerorpc.exceptions.LostRemote: Lost remote after 10s heartbeat
© www.soinside.com 2019 - 2024. All rights reserved.