我有一个rake任务,它解析一个流API并将数据输入到数据库中。流API是实时提要,为了让实时数据进入数据库,rake任务应该持续运行。一旦调用rake任务,它就会连续运行并解析数据。现在我已经启动了rake任务,它正在运行。问题是,如果我关闭终端或重启服务器,rake任务将停止。因此,我需要linux中的一个脚本(类似于用于启动或停止apache服务器的脚本),它执行以下操作:
1. start the rake task by calling rake command (rake parse:stream) from the RAILS-ROOT (application director
我尝试使用以下命令更新我的服务
sudo docker service update result --network-add backend --publish-add 5001,并得到错误声明
result
overall progress: 0 out of 1 tasks
1/1: starting container failed: OCI runtime create failed: container_linux.go:2…
service update paused: update paused due to failure or early termination of
如果我用kthread_run创建一个内核线程,然后立即执行kthread_stop,那么内核线程可能会在不运行的情况下停止运行。我在Linux5.4.73中检查了kthread_run和kthread_stop的源代码
/**
* kthread_run - create and wake a thread.
* @threadfn: the function to run until signal_pending(current).
* @data: data ptr for @threadfn.
* @namefmt: printf-style name for the thre