有没有一种方法可以仅通过一个连接就使用 100% 的网络带宽?

发布于 2024-09-15 06:23:46 字数 1549 浏览 4 评论 0原文

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

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

发布评论

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

评论(1

掩耳倾听 2024-09-22 06:23:46

您可以尝试一些调整,最值得注意的是设置获取缓冲区大小。环境变量 FET_BUF_SIZE 可以设置为 32767 等值。这可能会帮助您更接近客户端和网络的饱和状态。

多个线程共享单个连接将无济于事。使用多个连接的多个线程可能会有所帮助 - 当然,它们每个都运行一个单独的查询。

如果客户端程序对行进行分组,我们必须问“为什么?”。通常最好让服务器(DBMS)来做这件事。也就是说,如果服务器受计算限制并且客户端 PC 陷入空闲周期,那么在客户端而不是服务器上完成繁重的工作可能是有意义的。只需确保最大限度地减少通过网络中继的数据即可。

There are a few tweaks you can try, most notably setting the fetch buffer size. The environment variable FET_BUF_SIZE can be set to a value such as 32767. This may help you get closer to saturating the client and the network.

Multiple threads sharing a single connection will not help. Multiple threads using multiple connections might help - they'd each be running a separate query, of course.

If the client program is grouping the rows, we have to ask "why?". It is generally best to leave the server (DBMS) to do that. That said, if the server is compute bound and the client PC is wallowing in idle cycles, it may make sense to do the grunt work on the client instead of the server. Just make sure you minimize the data to be relayed over the network.

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