使用主管作为CRON

时间:2014-12-07 10:48:23

标签: cron supervisord

有没有办法让supervisor每隔X秒运行一些命令(比如CRON)?

我看到了eventlistener和TICK_ event

的例子
[eventlistener:memmon]
command=memmon -a 200MB -m bob@example.com
events=TICK_60

但它只运行一次命令。

5 个答案:

答案 0 :(得分:18)

问题

正如您在memmon示例中看到的那样,supervisord并未在每个事件中执行memmon -a 200MB -m bob@example.com。相反,它会启动此事件侦听器一次(如果配置池,则可能会启动几次),然后通过现有进程的标准输入发送每个新事件。

解决方案

因此,您确实需要为要在事件上触发的每种其他类型的功能查找或编写与Supervisor兼容的事件侦听器。

示例实施方法

设置配置并编写监听器

编写supervisord.cfg事件部分

[eventlistener:passthru]
command=/tmp/simple.py /bin/date -u +"%%s %%S:%%H:%%d:%%m"
events=TICK_60

(注意 - 逃离% for configParser

编写一个simple.py事件监听器

通过对the example listener from the docs进行更改来创建此simple.py侦听器,以便它使用任何剩余的参数执行其第一个参数:

#! /usr/bin/python
import sys
import subprocess

def write_stdout(s):
    sys.stdout.write(s)
    sys.stdout.flush()

def write_stderr(s):
    sys.stderr.write(s)
    sys.stderr.flush()

def main(args):
    while 1:
        write_stdout('READY\n') # transition from ACKNOWLEDGED to READY
        line = sys.stdin.readline()  # read header line from stdin
        write_stderr(line) # print it out to stderr
        headers = dict([ x.split(':') for x in line.split() ])
        data = sys.stdin.read(int(headers['len'])) # read the event payload
        res = subprocess.call(args, stdout=sys.stderr); # don't mess with real stdout
        write_stderr(data)
        write_stdout('RESULT 2\nOK') # transition from READY to ACKNOWLEDGED

if __name__ == '__main__':
    main(sys.argv[1:])
    import sys

确保主管配置正常工作

$ supervisorctl [-c cfg]
supervisor> status
passthru                         RUNNING   pid 4471, uptime 0:00:32
supervisor> tail passthru
  OKREADY
  RESULT 2
  OKREADY
  ...
supervisor> tail passthru stderr
supervisor> tail passthru stderr
  ver:3.0 server:supervisor serial:0 pool:passthru poolserial:0 eventname:TICK_60 len:15
  1451411161 01:17:29:12 <--- output
  when:1451411160ver:3.0 server:supervisor serial:1 pool:passthru poolserial:1 eventname:TICK_60 len:15
  1451411220 00:17:29:12 <--- output
  when:1451411220

现在date -u +"%s %S:%H:%d:%m"每60秒运行一次。

交换所需的命令

创建可执行脚本

/tmp/hiworld.php:

#! /usr/bin/php
<?= "hiya\n"; 

(chmod + x ...)

在supervisord.cfg中更改监听器的参数

[eventlistener:passthru]
command=/tmp/simple.py /tmp/hiworld.php
;stdout_logfile=/tmp/passthru 
events=TICK_60
;autorestart=true
;startsecs=0

重新加载supervisord并测试 (重读似乎没有发现这种变化)

supervisor> reload
   Really restart the remote supervisord process y/N? y
   Restarted supervisord
supervisor> status
   passthru                         RUNNING   pid 6017, uptime 0:00:10
supervisor> tail passthru stderr
supervisor> status
   passthru                         RUNNING   pid 6017, uptime 0:00:21
supervisor> status
   passthru                         RUNNING   pid 6017, uptime 0:01:01
supervisor> tail passthru stderr
   ver:3.0 server:supervisor serial:316 pool:passthru poolserial:0 eventname:TICK_60 len:15
    hiya
   when:1418926740
supervisor> 

结束

现在所需的命令每60秒运行一次。现在您可以阅读以调整权限,位置,日志等详情。

答案 1 :(得分:10)

为什么要发明轮子?您可以同时使用cronsupervisord

在supervisord中,使用autostart=false

创建任务

在cron中,使用* * * * * supervisorctl start <taskname>每分钟启动一次任务

答案 2 :(得分:6)

主管不容易支持。

但要实现目标,您可以使用主管启动cron(例如,对于docker容器):

https://gist.github.com/martinrusev/7015e393d46647dbad15

答案 3 :(得分:1)

您可以使用crobtab来管理和安排主管程序。

使用命令supervisorctl start <program_name>

注意:这只会启动主管程序的单个实例。如果它已经在运行,并且crontab尝试再次触发它,则supervisorctl start命令将不会启动新实例。

答案 4 :(得分:1)

您可以调用bash sleep命令:

[program:mycmd]
command=bash -c 'sleep 300 && exec <your command here>'

这将每5分钟运行一次命令。不要忘记exec部分用您的命令替换bash进程,这样主管将获得正确的退出代码。