English 中文(简体)
与许多实时设备保持连接
原标题:Maintaining connections with many real-time devices

我在 Linux 上撰写一个程序, 以同时在 UDP 插座上控制大约 1000 个病人监视器。 我已成功撰写了一个图书馆, 用来分析并发送信息, 从单一的病人监视器设备中收集数据 。 该设备有各种排程限制, 如下表所示:

  • Each device must constantly get an alive-request from computer client within max time-period of 300 milliseconds(may differ for different devices), otherwise connection is lost.
  • Computer client must send a poll-request to a device in order fetch the data within some time period. I m polling for about 5 seconds of averaged data from patient monitor, therefore, I m required to send poll-request in every 5 * 3 = 15 seconds. If I fail to send the request within 15 seconds time-frame, I looses the connection from device.

现在,我试图扩展我的当前程序, 以便它能够同时处理大约1000+设备。 现在, 我的程序可以高效地处理和分析一个设备的反应。 在处理多个设备时, 有必要同步不同设备中的多个响应, 并按顺序排列它们, 并将其传送到 TCP 套接字中, 这样远程计算机也可以分析数据 。 这不是一个问题, 因为它是一个非常熟悉的多个制作者和单一的消费者问题。 我的主要关注是, 我该用什么方法来维持1000+设备的生命连接 。

在通过互联网阅读和浏览该网站上的类似问题之后,我主要考虑两个备选方案:

  • Use one thread per device. In order to control 1000+ device, I would end up in making 1000+ threads which does not look feasible to me.
  • Use multiplexing approach, selecting FD that requires attention and deal with it one at a time. I m not sure how would I go about it and if multiplexing approach would be able to maintain alive-connection with all the devices considering above two constants.

我需要一些建议与建议, 如何应对这种情况, 您需要控制 UDP 插座上1000+实时设备。 每个设备每300毫秒需要一些活信号( 不同装置的不同), 并且需要大约比联系阶段提到的间隔时间多3倍的民意调查请求。 例如, ICU 的病人监测员可能需要实时数据( 平均为1秒), 普通病房的病人监测员可能需要10秒的平均数据, 因此, 两个设备的民意调查时间分别为3*1秒( 3秒)和3*10秒( 30秒)。

Thanks Shivam Kalra

最佳回答

多数情况下,两种方法中的一种方法都至少具备处理您描述的功能的功能的功能能力,但是由于事物的性能听起来会是一个关键问题。从您所提供的数字来看,该应用程序似乎可以是 CPU-buond 。

多读方法的优点是使用机器上所有可用的CPU核心,但多读程序因难以可靠和稳健而臭名昭著。

您也可以使用 Apache 的旧的试验和真实的前职工模型 — — 比如, 创建一个单独的进程来处理最多100个设备。 然后您可能需要写入代码来管理与进程连接的映射 。

您也可以使用多个 < em> 主机 < / em > 和一些机制在它们之间分配设备。 这样做的好处是更容易处理回收情况。 听起来您的应用程序可能非常关键, 可能需要设计设计, 如果有任何硬件断裂, 那么其他硬件将自动接管 。

问题回答

暂无回答




相关问题
Fastest method for running a binary search on a file in C?

For example, let s say I want to find a particular word or number in a file. The contents are in sorted order (obviously). Since I want to run a binary search on the file, it seems like a real waste ...

Print possible strings created from a Number

Given a 10 digit Telephone Number, we have to print all possible strings created from that. The mapping of the numbers is the one as exactly on a phone s keypad. i.e. for 1,0-> No Letter for 2->...

Tips for debugging a made-for-linux application on windows?

I m trying to find the source of a bug I have found in an open-source application. I have managed to get a build up and running on my Windows machine, but I m having trouble finding the spot in the ...

Trying to split by two delimiters and it doesn t work - C

I wrote below code to readin line by line from stdin ex. city=Boston;city=New York;city=Chicago and then split each line by ; delimiter and print each record. Then in yet another loop I try to ...

Good, free, easy-to-use C graphics libraries? [closed]

I was wondering if there were any good free graphics libraries for C that are easy to use? It s for plotting 2d and 3d graphs and then saving to a file. It s on a Linux system and there s no gnuplot ...

Encoding, decoding an integer to a char array

Please note that this is not homework and i did search before starting this new thread. I got Store an int in a char array? I was looking for an answer but didn t get any satisfactory answer in the ...

热门标签