Python、Django 和事件循环(定期作业)
我正在开发一个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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,您不想在 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.