码迷,mamicode.com
首页 > Web开发 > 详细

shell并发上传ftp

时间:2014-11-26 06:50:16      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:shell

2年前在蓝汛的时候管理的一个CDN节点, 因某些特殊原因, 没有采用蓝汛标准的系统管理方法...

为了解决日志收集的问题, 自己写了一个shell并发的小脚本....

有时日志传输会出现一些问题, 会产生一些日志堆积,  有时上千个~...单进程传输效率实在太底下了..就写了这么一个脚本...

主要并发是, 通过判断要传的目录下有多少个文件, 当前运行的进程是多少个, 达到上限就等待...不足上限就继续传...

#!/bin/bash
# Chinacache CPIS-OPT
# $Id: upload_log.sh 2012-9-18 19:10 HGL

#---------------------------------------------------------------------------|
#  @Program   : upload_log.sh                                               |  
#  @Version   : 1.0.1                                                       |
#  @Company   : china cache                                                 |
#  @Dep.      : CPIS-OPT                                                    |
#  @Writer    : Kevin.han                                                   |
#  @Date      : 2012-9-18                                                   |
#---------------------------------------------------------------------------|


log_dir=/data/proclog/log/squid/access/.upload/.CPISNLA
user=123
pass=123
ftpip="1.1.1.1:21"
init=1
max=5
logdir=( `ls $log_dir` )

for (( i=0;i<=$init;i++ ));do
	if [ $i -ge ${#logdir[@]} ];then
		exit 0
	fi

	lftp ftp://${user}:${pass}@${ftpip} -e "cd 2nd_edition/temp;put -c -E ${log_dir}/${logdir[$i]} -o ${logdir[$i]}.tmp;mv ${logdir[$i]}.tmp ${logdir[$i]};exit"  &

	if [ $i -eq $init ];then
                        a=`ps -eo command|grep lftp|grep -v grep|wc -l`
                while (( $a > 10 ));do
                        sleep 5
                        a=`ps -eo command|grep lftp|grep -v grep|wc -l`
                done
		let b=${#logdir[@]}-$i
		if [ $max -ge $b ];then
	                let init=$init+$b
		else
			let init=$init+$max
		fi	
	fi
done

 


本文出自 “晓风残月” 博客,请务必保留此出处http://kinda22.blog.51cto.com/2969503/1582561

shell并发上传ftp

标签:shell

原文地址:http://kinda22.blog.51cto.com/2969503/1582561

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!