使用shell生成状态报表

简介: 在数据迁移的时候,目前启用了10个并行的进程。每个进程负责一部分的数据导入工作。然而在统计数据导入进度的时候,总是感觉抓不到重点,没有一目了然的报告。 在定时做数据状态检查的时候,总是凭着感觉和不停的查看日志来得到最基本的状态。
在数据迁移的时候,目前启用了10个并行的进程。每个进程负责一部分的数据导入工作。然而在统计数据导入进度的时候,总是感觉抓不到重点,没有一目了然的报告。
在定时做数据状态检查的时候,总是凭着感觉和不停的查看日志来得到最基本的状态。
为了从这种体力工作中解放出来,今天写一个状态报表来对数据的导入状态进行清晰的了解。
比如现在有100个表,分为10个并行的进程来导入数据,其中有些表比较大,比如表TEST,我们做了切分,把它切分为100个dump,那么做这个表TEST做数据导入的时候,就需要知道截止目前导入了100个dump里的多少个。比如已经导入了10个,我们就认为目前表TEST导入了10%.还有90个dump需要导入。如果可以的话最好知道是哪个并行进程在做这项数据导入。
如果有的表还没有开始导入,就表明属于等待状态,如果已经导入完成,则表明完成
期望达到的结果类似下面的格式,我们就可以很清楚的看到DRESS_DATA已经完成了数据导入工作,是进程10完成的。
ICAL_FILES还没有开始导入数据,还在等待。

            ICAL_FILES    0 of TOTAL     1 completed, |--pending...   from                              
              AC_SOURCE    0 of TOTAL     1 completed, |--pending...   from                              
             DRESS_DATA    4 of TOTAL     4 completed, |--finished...  from     split_par_10_appendata.log
             A_NAME_LINK   3 of TOTAL     3 completed, |--finished...  from      split_par_9_appendata.log
              AGREEMENT    1 of TOTAL     1 completed, |--finished...  from      split_par_8_appendata.log
            AT_RESOURCE    4 of TOTAL     4 completed, |--finished...  from      split_par_7_appendata.log
             R1_ACCOUNT    2 of TOTAL     2 completed, |--finished...  from      split_par_7_appendata.log
             DRESS_NAME    3 of TOTAL     3 completed, |--finished...  from      split_par_6_appendata.log
            AAL_BALANCE    0 of TOTAL    16 completed, |--pending...   from                              
            IRRANGEMENT    0 of TOTAL     1 completed, |--pending...   from                              
             ARGE_GROUP    0 of TOTAL    11 completed, |--pending...   from                              
             R1_CHARGES   24 of TOTAL    24 completed, |--finished...  from      split_par_6_appendata.log
             R1_CONTROL    1 of TOTAL     1 completed, |--finished...  from      split_par_4_appendata.log
            _DEBIT_LINK    0 of TOTAL     9 completed, |--pending...   from                              
            RMER_CREDIT    0 of TOTAL     1 completed, |--pending...   from                


我们假定生成的日志都是按照split_par*.log的格式。
其中DUMP目录中存放的是抽取得到的外部表dump,比如表TEST切分为100份,就有100个dump文件。我们根据这个信息来统计数据导入的进度。

function check_tab
{
total_cnt=`ls -l ../DUMP/$1_[0-9]*.dmp|wc -l`
fin_cnt=`grep COPY_MIG.$1_EXT_[0-9]* *par*.log|wc -l`
par_from_file=`grep COPY_MIG.$1_EXT_[0-9]* *par*.log|tail -1|awk -F: '{print $1}'`
tmp_status=finished
if [ $fin_cnt -eq $total_cnt ]
then
  tmp_status=finished
elif [ $fin_cnt -eq 0 ]
then
  tmp_status=pending
elif [ $fin_cnt -lt $total_cnt ]
then
  tmp_status=processing
fi
echo $1 $fin_cnt of TOTAL $total_cnt completed, "|--"$tmp_status...   from  $par_from_file >> tmp_check.lst
}

total_tab_cnt=`cat ../parfile/tablst|wc -l`
for i in {1..$total_tab_cnt}
do
tmp_tab_name=`sed -n "${i}p"  ../parfile/tablst`
#echo $tmp_tab_name
check_tab $tmp_tab_name
done

awk '
BEGIN{
print "############################################################"
}
{
printf "%30s %4d %2s %5s %5d %3s %-15s %4s %30s \n", $1,$2,$3,$4,$5,$6,$7,$8,$9
}' tmp_check.lst

rm tmp_check.lst

运行后,结果如下所示,这样表的情况就一目了然了。
             ICAL_FILES    0 of TOTAL     1 completed, |--pending...   from                              
              AC_SOURCE    0 of TOTAL     1 completed, |--pending...   from                              
             DRESS_DATA    4 of TOTAL     4 completed, |--finished...  from     split_par_10_appendata.log
             A_NAME_LINK   3 of TOTAL     3 completed, |--finished...  from      split_par_9_appendata.log
              AGREEMENT    1 of TOTAL     1 completed, |--finished...  from      split_par_8_appendata.log
            AT_RESOURCE    4 of TOTAL     4 completed, |--finished...  from      split_par_7_appendata.log
             R1_ACCOUNT    2 of TOTAL     2 completed, |--finished...  from      split_par_7_appendata.log
             DRESS_NAME    3 of TOTAL     3 completed, |--finished...  from      split_par_6_appendata.log
            AAL_BALANCE    0 of TOTAL    16 completed, |--pending...   from                              
            IRRANGEMENT    0 of TOTAL     1 completed, |--pending...   from                              
             ARGE_GROUP    0 of TOTAL    11 completed, |--pending...   from                              
             R1_CHARGES   24 of TOTAL    24 completed, |--finished...  from      split_par_6_appendata.log
             R1_CONTROL    1 of TOTAL     1 completed, |--finished...  from      split_par_4_appendata.log
            _DEBIT_LINK    0 of TOTAL     9 completed, |--pending...   from                              
            RMER_CREDIT    0 of TOTAL     1 completed, |--pending...   from                              
            RIT_REQUEST    0 of TOTAL     1 completed, |--pending...   from                              
            RIT_REQUEST    0 of TOTAL     1 completed, |--pending...   from                              
             R1_DISPUTE    1 of TOTAL     1 completed, |--finished...  from     split_par_10_appendata.log
            1E_ACTIVITY    1 of TOTAL     1 completed, |--finished...  from      split_par_9_appendata.log
            XREFERENCES    1 of TOTAL     1 completed, |--finished...  from      split_par_8_appendata.log
             ES_CONTROL    1 of TOTAL     1 completed, |--finished...  from      split_par_7_appendata.log
             R1_INVOICE    1 of TOTAL     1 completed, |--finished...  from     split_par_10_appendata.log
               AR1_MEMO    1 of TOTAL     1 completed, |--finished...  from      split_par_6_appendata.log
             AY_CHANNEL    0 of TOTAL     1 completed, |--pending...   from                              
             R1_PAYMENT    1 of TOTAL     1 completed, |--finished...  from      split_par_9_appendata.log
            1T_ACTIVITY    1 of TOTAL     1 completed, |--finished...  from      split_par_4_appendata.log
            RNT_DETAILS    1 of TOTAL     1 completed, |--finished...  from      split_par_8_appendata.log
            _ND_BALANCE    0 of TOTAL     1 completed, |--pending...   from                              
            AND_REQUEST    0 of TOTAL     1 completed, |--pending...   from                              
             1_TAX_ITEM    0 of TOTAL    34 completed, |--pending...   from                              
              CTION_LOG   21 of TOTAL    21 completed, |--finished...  from      split_par_6_appendata.log
              ED_CREDIT    0 of TOTAL     2 completed, |--pending...   from                              
              WRITE_OFF    1 of TOTAL     1 completed, |--finished...  from     split_par_10_appendata.log
              COUNT_EXT    1 of TOTAL     1 completed, |--finished...  from      split_par_9_appendata.log
              T_COUNTER    1 of TOTAL     1 completed, |--finished...  from      split_par_8_appendata.log
              S_CONTROL    1 of TOTAL     1 completed, |--finished...  from      split_par_7_appendata.log
              BILLED_OC    1 of TOTAL     1 completed, |--finished...  from      split_par_6_appendata.log
              Y_HISTORY    0 of TOTAL    32 completed, |--pending...   from                              
              _REQUESTS    1 of TOTAL     1 completed, |--finished...  from      split_par_4_appendata.log
              ADD_COMPS    4 of TOTAL     4 completed, |--finished...  from     split_par_10_appendata.log

              
目录
相关文章
|
BI Shell Perl
通过shell脚本生成数据统计信息的报表
对于统计信息的收集,不同的环境中使用的策略也会有很大的不同,有的按照一定的时间频率来收集,有的比较稳定的系统根据数据的增长频率来收集,用户比较稳定的系统,甚至都不再收集统计信息。
831 0
|
2月前
|
Shell
一个用于添加/删除定时任务的shell脚本
一个用于添加/删除定时任务的shell脚本
86 1
|
29天前
|
Shell Linux 测试技术
6种方法打造出色的Shell脚本
6种方法打造出色的Shell脚本
53 2
6种方法打造出色的Shell脚本
|
15天前
|
XML JSON 监控
Shell脚本要点和难点以及具体应用和优缺点介绍
Shell脚本在系统管理和自动化任务中扮演着重要角色。尽管存在调试困难、可读性差等问题,但其简洁高效、易于学习和强大的功能使其在许多场景中不可或缺。通过掌握Shell脚本的基本语法、常用命令和函数,并了解其优缺点,开发者可以编写出高效的脚本来完成各种任务,提高工作效率。希望本文能为您在Shell脚本编写和应用中提供有价值的参考和指导。
41 1
|
20天前
|
Ubuntu Shell 开发工具
ubuntu/debian shell 脚本自动配置 gitea git 仓库
这是一个自动配置 Gitea Git 仓库的 Shell 脚本,支持 Ubuntu 20+ 和 Debian 12+ 系统。脚本会创建必要的目录、下载并安装 Gitea,创建 Gitea 用户和服务,确保 Gitea 在系统启动时自动运行。用户可以选择从官方或小绿叶技术博客下载安装包。
40 2
|
2月前
|
监控 网络协议 Shell
ip和ip网段攻击拦截系统-绿叶结界防火墙系统shell脚本
这是一个名为“小绿叶技术博客扫段攻击拦截系统”的Bash脚本,用于监控和拦截TCP攻击。通过抓取网络数据包监控可疑IP,并利用iptables和firewalld防火墙规则对这些IP进行拦截。同时,该系统能够查询数据库中的白名单,确保合法IP不受影响。此外,它还具备日志记录功能,以便于后续分析和审计。
49 6
|
1月前
|
运维 监控 Shell
深入理解Linux系统下的Shell脚本编程
【10月更文挑战第24天】本文将深入浅出地介绍Linux系统中Shell脚本的基础知识和实用技巧,帮助读者从零开始学习编写Shell脚本。通过本文的学习,你将能够掌握Shell脚本的基本语法、变量使用、流程控制以及函数定义等核心概念,并学会如何将这些知识应用于实际问题解决中。文章还将展示几个实用的Shell脚本例子,以加深对知识点的理解和应用。无论你是运维人员还是软件开发者,这篇文章都将为你提供强大的Linux自动化工具。
|
2月前
|
监控 Unix Shell
shell脚本编程学习
【10月更文挑战第1天】shell脚本编程
71 12
|
2月前
|
存储 运维 监控
自动化运维:使用Shell脚本简化日常任务
【9月更文挑战第35天】在IT运维的日常工作中,重复性的任务往往消耗大量的时间。本文将介绍如何通过编写简单的Shell脚本来自动化这些日常任务,从而提升效率。我们将一起探索Shell脚本的基础语法,并通过实际案例展示如何应用这些知识来创建有用的自动化工具。无论你是新手还是有一定经验的运维人员,这篇文章都会为你提供新的视角和技巧,让你的工作更加轻松。
66 2
|
3月前
|
Shell
shell脚本变量 $name ${name}啥区别
shell脚本变量 $name ${name}啥区别