在任何给定时间运行5个脚本

在任何给定时间运行5个脚本,第1张

在任何给定时间运行5个脚本

这个问题d出了几次,但我找不到合适的答案。我想现在我找到了一个很好的解决方案!

不幸的

parallel
是,这不是标准发行版的一部分,但make是。它有一个开关
-j
可做并联。

man make(1) ]
:(有关make的并行执行的更多信息)

       -j [jobs], --jobs[=jobs] Specifies the number of jobs (commands) to run simultaneously. If  there  is  more than one -j option, the last one is effective. If  the -j option is given without an argument, make  will  not limit  the number of jobs that can run simultaneously.

因此,

Makefile
只要适当地解决这个问题即可。

    .PHONY: all $(PHP_DEST)    # Create an array of targets in the form of PHP1 PHP2 ... PHP90    PHP_DEST := $(addprefix PHP, $(shell seq 1 1 90))    # Default target    all: $(PHP_DEST)    # Run the proper script for each target    $(PHP_DEST): N=$(subst PHP,,$@); php path$N/some_job_$N.php

PHP#
每个呼叫创建90个目标
php path#/some_job_#.php
。如果运行
make -j5
,它将运行5个php并行实例。如果一个完成,则开始下一个。

我将重命名

Makefile
parallel.mak
,然后运行
chmod 700 parallel.mak
并添加
#!/usr/bin/make-f
到第一行。现在可以称为
./parallel.mak -j 5

甚至您可以使用更复杂的

-l
开关:

       -l [load], --load-average[=load]  Specifies  that  no new jobs (commands) should be started if there  are others jobs running and the load average is at least  load (a  floating-point number).  With no argument, removes a previous load  limit.

在这种情况下,make将根据系统的负载来决定可以启动多少个作业。

我用它测试

./parallel.mak -j-l1.0
并运行良好。相反,它首先并行启动了4个程序,
-j
而没有args意味着要尽可能多地并行运行进程。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5019144.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-15
下一篇 2022-11-15

发表评论

登录后才能评论

评论列表(0条)

保存