高效的Python到Python IPC

发布于 2024-12-11 05:06:48 字数 1436 浏览 0 评论 0原文

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

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

发布评论

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

评论(5

悲歌长辞 2024-12-18 05:06:48

本机对象不会在进程之间共享(由于引用计数)。

相反,您可以使用 unix 域套接字、mmap、zeromq 或专为并发访问设计的 sqlite3 等中介来腌制并共享它们。

Native objects don't get shared between processes (due to reference counting).

Instead, you can pickle them and share them using unix domain sockets, mmap, zeromq, or an intermediary such a sqlite3 that is designed for concurrent accesses.

待"谢繁草 2024-12-18 05:06:48

使用多处理开始。

如果您需要多个 CPU,请查看 celery

Use multiprocessing to start with.

If you need multiple CPU's, look at celery.

月亮邮递员 2024-12-18 05:06:48

经过一些测试,我发现以下方法适用于使用 mmap 的 Linux。

Linux 有 /dev/shm。如果您使用 POSIX shm_open 创建共享内存,则会在此文件夹中创建一个新文件。

虽然python的mmap模块没有提供shm_open函数。我们可以使用普通的open/dev/shm中创建一个文件,它实际上是类似的并且驻留在内存中。 (使用os.unlink删除它)

然后对于IPC,我们可以使用mmap将该文件映射到不同进程的虚拟内存空间。所有进程共享该内存。 Python 可以使用内存作为缓冲区,并在其上创建字节和 numpy 数组等对象。或者我们可以通过ctypes接口来使用它。

当然,仍然需要进程同步原语来避免竞争条件。

请参阅 mmap 文档ctypes 文档numpy.load 其中有一个 mmap_mode 选项。

After some test, I found that the following approach works for Linux using mmap.

Linux has /dev/shm. If you create a shared memory using POSIX shm_open, a new file is created in this folder.

Although python's mmap module does not provide the shm_open function. we can use a normal open to create a file in /dev/shm and it is actually similar and reside in memory. (Use os.unlink to remove it)

Then for IPC, we can use mmap to map that file to the different processes' virtual memory space. All the processes share that memory. Python can use the memory as buffer and create object such as bytes and numpy arrays on top of it. Or we can use it through the ctypes interface.

Of course, process sync primitives are still needed to avoid race conditions.

See mmap doc, ctypes doc and numpy.load which has an mmap_mode option.

z祗昰~ 2024-12-18 05:06:48

execnetPyro 提及 PyPy <-> CPython 通信。 Python Wiki 的 并行处理 页面中的其他包可能也适用。

Both execnet and Pyro mention PyPy <-> CPython communication. Other packages from Python Wiki's Parallel Processing page are probably suitable too.

帝王念 2024-12-18 05:06:48

Parallel Python 可能值得一看,它可以在 Windows、OS X 和 Linux 上运行(我似乎记得我不久前在 UltraSPARC Solaris 10 计算机上使用过它)。我不知道它是否适用于 PyPy,但它 似乎确实可以与 Psyco 配合使用

Parallel Python might be worth a look, it works on Windows, OS X, and Linux (and I seem to recall I used it on a UltraSPARC Solaris 10 machine a while back). I don't know if it works with PyPy, but it does seem to work with Psyco.

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