跳至内容
菜单
此问题已终结
1 回复
17116 查看

Expert please explain how cron jobs works in OpenERP ?

As how it start on server start and stop when server stop !?

Also How internally it maintained ! Like to know its archetecture in short summry.

 

形象
丢弃
编写者 最佳答案

Cron jobs scheduling

Cron jobs are defined in the ir_cron table/model. This module deals with all
cron jobs, for all databases of a single OpenERP server instance.

It defines a single master thread that will spawn (a bounded number of)
threads to process individual cron jobs.

The thread runs forever, checking every 60 seconds for new
'database wake-ups'. It maintains a heapq of database wake-ups. At each
wake-up, it will call ir_cron._run_jobs_multithread() for the given database. _run_jobs_multithread
will check the jobs defined in the ir_cron table and spawn accordingly threads
to process them.

This module's behavior depends on the following configuration variable:
openerp.conf.max_cron_threads.

形象
丢弃
相关帖文 回复 查看 活动
1
1月 24
2609
0
4月 22
4253
0
1月 17
4517
0
12月 15
4839
3
9月 23
12006