具有处理来自远程服务器的PID的Bash脚本

时间:2018-09-17 10:06:15

标签: bash rsync pid

我有一些通过RSYNC将视频内容下拉的盒子。 +-700盒,我目前正在测试四个盒。

每个盒子上都有一个bash脚本,用于通过来自中央服务器的反向RSYNC下拉内容。

我想通过以下方法管理与服务器的这些连接:

  1. 仅对于此特定任务,RSYNC的连接最多应限制为50个连接(不是RSYNC整体,因为其他任务依赖于此)。

  2. 如果达到了1.中的连接限制,则它将终止创建的最早的PID。

下面的数据在视频所在的服务器上显示如下。

root@TESTSRV01:~# ps aux | grep rsync
1029     13357  0.0  0.0   4308   604 ?        Ss   11:46   0:00 sh -c rsync --server --sender -vre.iLs --bwlimit=100 --append --append . /home/test/Videos/
1029     13358  0.1  0.0  30852  1444 ?        S    11:46   0:00 rsync --server --sender -vre.iLs --bwlimit=100 --append --append . /home/test/Videos/
1029     13382  0.0  0.0   4308   604 ?        Ss   11:47   0:00 sh -c rsync --server --sender -vre.iLsf --bwlimit=100 --append --append . /home/test/Videos/
1029     13383  0.1  0.0  39432  1800 ?        S    11:47   0:00 rsync --server --sender -vre.iLsf --bwlimit=100 --append --append . /home/test/Videos/
1029     13400  0.0  0.0   4308   604 ?        Ss   11:47   0:00 sh -c rsync --server --sender -vre.iLs --bwlimit=100 --append --append . /home/test/Videos/
1029     13401  0.1  0.0  39432  1800 ?        S    11:47   0:00 rsync --server --sender -vre.iLs --bwlimit=100 --append --append . /home/test/Videos/
1029     13451  0.0  0.0   4308   608 ?        Ss   11:48   0:00 sh -c rsync --server --sender -vre.iLs --bwlimit=100 --append --append . /home/test/Videos/
1029     13452  0.0  0.0  71128  2248 ?        S    11:48   0:00 rsync --server --sender -vre.iLs --bwlimit=100 --append --append . /home/test/Videos/

到目前为止,我在包装盒上的脚本中有以下内容:

ps -u test | grep rsync | awk '{ print $1 }'

这将返回以下内容:(哪些是PID)

13358
13383
13401
13452

牢记第一点和第二点,我将如何实现这一点。谢谢!

1 个答案:

答案 0 :(得分:0)

您可以这样做。提取所有按start_time排序的pid,并将它们放入数组中。

declare -a pids
pids=($(ps -u test --sort=start_time | grep '[r]sync' | awk '{print $1}'))
if [[ "${#pids[@]}" -gt 50 ]]; then
   # I am not sure how many process you want to kill. 
   # Let say you want to kill the first one.
   kill -9 "${pids[0]}"
fi

注意:grep模式是'[r]sync'而不是'rsync',因为它排除了grep命令本身。

如果您希望将进程总数限制为50。可以执行以下操作:

declare -a pids
pids=($(ps -u test --sort=start_time | grep '[r]sync' | awk '{print $1}'))
if [[ "${#pids[@]}" -gt 50 ]]; then
    # You want to kill all execess processes
    excess=$((${#pids[@]} - 50))
    echo "Excess processes: $excess"
    kill -9 "${pids[@]:0:$excess}"
fi