gpt4 book ai didi

node.js - 在 node.js 中使用 node-fetch 将数据发送到纯数据(Pd)导致 ETIMEDOUT

转载 作者:行者123 更新时间:2023-12-05 07:00:45 26 4
gpt4 key购买 nike

我正在构建一个声音装置,可以下载天气信息并将其转换为声音。此外,我在 p5.js 中制作了一个简单的 html 站点,使用户能够关闭音量并使用 slider 播放音乐。一切都巧妙地集成在 node.js 服务器中。

使用 socket.io 将数据从 sketch.js 文件发送到 server.js 文件。来自服务器的数据通过名为“node-fetch”的 Node 包发送到 Pure data,并通过 [netreceive] 对象接收数据。所有这些都是通过本地主机 (http://"ip-adress":port) 完成的。

关于问题:一切运行良好,但大约三到六个小时后, Node 服务器似乎与 Pd(纯数据)失去连接并终止。我重新启动,同样的事情发生了。错误信息如下:

Sep 24 14:55:52 raspberrypi bash[7530]: (node:7561) UnhandledPromiseRejectionWarning: FetchError: request to http://192.168.1.219:3558/ failed, reason: connect ETIMEDOUT 192.168.1.219:3558
Sep 24 14:55:52 raspberrypi bash[7530]: at ClientRequest.<anonymous> (/home/pi/Documents/pd2_repository/node_modules/node-fetch/lib/index.js:1455:11)
Sep 24 14:55:52 raspberrypi bash[7530]: at ClientRequest.emit (events.js:198:13)
Sep 24 14:55:52 raspberrypi bash[7530]: at Socket.socketErrorListener (_http_client.js:401:9)
Sep 24 14:55:52 raspberrypi bash[7530]: at Socket.emit (events.js:198:13)
Sep 24 14:55:52 raspberrypi bash[7530]: at emitErrorNT (internal/streams/destroy.js:91:8)
Sep 24 14:55:52 raspberrypi bash[7530]: at emitErrorAndCloseNT (internal/streams/destroy.js:59:3)
Sep 24 14:55:52 raspberrypi bash[7530]: at process._tickCallback (internal/process/next_tick.js:63:19)
Sep 24 14:55:52 raspberrypi bash[7530]: (node:7561) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 735)

我不知道从哪里开始寻找答案:是我的 sketch.js、server.js、Pd 有问题,还是与互联网有关?它不应该是代理问题,因为我在本地主机上运行它,对吧?

这是我的 sketch.js 中的示例:

function setup() {
noCanvas();

// Start a socket connection to the server
socket = io.connect(url + ':3000');

async function getISS() {
const response = await fetch(api_url);
const data = await response.json();
console.log(data.timeSeries[2].validTime);

var smhiData = {
pcat: data.timeSeries[2].parameters[2].level,
sunUp: 6,
sunDown: 20
};
socket.emit('smhiToPd', smhiData);
}

这是服务器的示例:

io.sockets.on('connection', newConnection);

// We are given a websocket object in our function
function newConnection(socket) {
console.log('We have a new client: ' + socket.id);
socket.on('smhiToPd', smhi);

async function smhi(data){
pcat = data.pcat;

fetch("http://" + ip + ":" + 3558, {
method: "PUT",
body: ";pcat " + pcat + ";"
});
}
}

这就是它在 Pd 中的样子: Netreceive-object listening to port 3558

Pd 和 Node 使用 systemd 启动脚本启动。

关于Pd的一些信息:版本:0.51-2。标志:-rt 和 -nogui。听觉率:48 kHz block 大小:64延迟:512。

计算机是运行 Raspbian 的 Raspberry Pi 4。Pd 进程正在以大约 15-35% 的 CPU 运行。

PS 非常感谢任何帮助。请注意,我是初学者,我的编程技能和知识非常有限。我会尽力理解您可能有的任何答案或想法!

PPS 我知道我还没有在服务器中实现 .catch。我刚刚在我的代码中实现了它,我正在等待另一次崩溃。

编辑:目前,bash 发出此错误消息,至少每秒 50 条消息,并且 pd 的 CPU 占用率接近 100%。

Sep 25 07:46:52 raspberrypi bash[10566]: netreceive: accept failed
Sep 25 07:46:52 raspberrypi bash[10566]: netreceive: accept failed
Sep 25 07:46:52 raspberrypi bash[10566]: netreceive: accept failed
Sep 25 07:46:52 raspberrypi bash[10566]: netreceive: accept failed
Sep 25 07:46:52 raspberrypi bash[10566]: netreceive: accept failed
Sep 25 07:46:52 raspberrypi bash[10566]: netreceive: accept failed
Sep 25 07:46:52 raspberrypi bash[10566]: netreceive: accept failed
Sep 25 07:46:52 raspberrypi bash[10566]: netreceive: accept failed
Sep 25 07:46:52 raspberrypi bash[10566]: netreceive: accept failed

我想我找到了 [netreceive] 的源代码。这是关于“接受失败”的部分。任何人都可以理解这一点吗?

static void netreceive_connectpoll(t_netreceive *x)
{
int fd = accept(x->x_connectsocket, 0, 0);
if (fd < 0) post("netreceive: accept failed");
else
{
t_socketreceiver *y = socketreceiver_new((void *)x,
(t_socketnotifier)netreceive_notify,
(x->x_msgout ? netreceive_doit : 0), 0);
sys_addpollfn(fd, (t_fdpollfn)socketreceiver_read, y);
outlet_float(x->x_connectout, ++x->x_nconnections);
}
}

最佳答案

我找到了导致连接关闭和计算机死机的原因的答案。就是 Pd 的 [netreceive] 每次收到新消息都会打开一个新的连接。这适用于几个连接,但随着连接数量的增加,负载会越来越重,最终导致计算机死机。

为什么pd每次收到数据都要新开一个连接?不确定。跟TCP协议(protocol)有关系吗?

关于node.js - 在 node.js 中使用 node-fetch 将数据发送到纯数据(Pd)导致 ETIMEDOUT,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64047350/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com