Python、Django 和事件循环(定期作业)

发布于 2025-01-06 00:39:06 字数 672 浏览 0 评论 0原文

我正在开发一个Python应用程序,用于在Debian Linux下使用Django + WSGI + Apache的服务器。该应用程序有网络界面以及 命令行界面(仍然使用 django 模型...,只是不使用视图和模板)。
数据库后端是SQLite3。

该应用程序还需要定期运行一些作业。我编写了一个类似unix的守护进程,它使用python-gobject和python-glib,并像这样运行这些作业:

gobject.timeout_add_seconds(seconds, someCallback...)
gobject.timeout_add_seconds(seconds, someCallback...)
...
gobject.timeout_add_seconds(seconds, someCallback...)

glib.MainLoop().run()

我测试了它,在sqlite db中写入的数据存在一些奇怪的问题。我认为这是因为有两个 Python 实例从/向单个 sqlite 数据库读取和写入。一种用于 apache+wsgi,另一种用于我自己的守护进程。 (或者事件 3 Python 实例,当我使用命令行界面时)

我的问题是,建议我做什么?将那些 timeout_add 和 MainLoop 放在我的“dj_survey.wsgi”中以在 apache start 上运行?

I am developing a Python applicaton for server that uses Django + WSGI + Apache under Debian Linux. The application has web interface as well as
command line interface (that still uses django models..., just does not use views and templates).
Database backend is SQLite3.

This applications also needs to run some jobs periodically. I wrote a unix-like daemon that uses python-gobject and python-glib, and runs those jobs like this:

gobject.timeout_add_seconds(seconds, someCallback...)
gobject.timeout_add_seconds(seconds, someCallback...)
...
gobject.timeout_add_seconds(seconds, someCallback...)

glib.MainLoop().run()

I tested it, and there are some strange problems on written data in sqlite db. I think that's because there are two Python instances reading and writing from/to a single sqlite db. One for apache+wsgi and one for my own daemon. (Or event 3 Python instances, when I use command line interface)

My question is, what do recommend me to do? Put those timeout_add and MainLoop in my "dj_survey.wsgi" to run on apache start?

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

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

发布评论

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

评论(1

哆兒滾 2025-01-13 00:39:06

不,您不想在 apache/任何 WSGI 环境中运行后台进程。

在 shell 上启动它们并使用某种方法与后台进程进行通信。

No, you don't want to run background processes inside your apache/whatever WSGI environment.

Start them on the shell and use some method to communicate with your background process.

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