根据负载和概率发送文件以转换到负载最小的服务器(在 php 中)

发布于 2024-10-02 04:39:37 字数 242 浏览 3 评论 0原文

我有几个 ffmpeg 处理服务器来转换视频文件。我有一个轮询器,它从这些服务器获取平均负载,并每 5 分钟更新一次 mysql 表。

我只能说...给我负载最低的服务器,但问题是,在这 5 分钟内,它可能会在那 1 台服务器上排队 20 个要转换的文件,而其他服务器可能会在 10 分钟内释放,将会闲置。

所以我想在选择负载最少的服务器时添加一个概率方面的内容,这样负载最少的服务器就有很高的机会被选中,但其他服务器仍然会得到一些东西。

I have several ffmpeg processing servers that do conversions of video files. I have a poller that grabs the load averages from these servers, and updates a mysql table with them, every 5 minutes.

I could just say... give me server with lowest load, but the problem with that, in those 5 minutes, it might queue 20 files to be converted on that 1 server, while the other servers which might free up in 10 minutes, will be idle.

So i wanted to add a probability aspect to the selection of the least loaded server, so the least loaded server has a high chance of getting selected, but other servers will still get something.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

故人如初 2024-10-09 04:39:38

听起来你好像在倒退。不要根据过时的数据猜测哪个服务器可用于将作业推送到,而是将作业排队并让服务器在实际可以工作时提取它们。

Sounds like you're doing this backwards. Instead of guessing what server is available to push jobs to based on stale data, queue the jobs and let the servers pull them when they're actually available to work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文