Linux下Shell編程實現基於Hadoop的ETL(分析篇)__html5

來源:互聯網
上載者:User

加群:397706991,共同學習

conf/hive.xml

具體Shell代碼下載:http://download.csdn.net/detail/luo849278597/9490920

<?xml version="1.0" encoding="UTF-8"?><root><hive-shell type="analysis"><!-- 資料分析 --><hsql>create table if not exists think_statistics(date_type_name string,date_name string,type int,type_name string,count int) row format delimited fields terminated by '\\t' lines terminated by '\\n' stored as textfile</hsql><hsql>insert into think_statistics select concat(current_date,'-2'),current_date,2,'新任務數量',sum(case when status==2 then 1 else 0 end) from think_task</hsql><!-- hive 查詢語句 --></hive-shell></root>
bin/hive.sh
#!/bin/bash#########################以下命令的處理基於Hadoop環境以及Hive工具,並且相應的工具命令需要定義在環境變數中#sed命令是Shell編程中用於處理字串,過濾出所需字串的命令#tr -d '\r' 用於刪除每行中的分行符號#eval 用於執行字串命令#########################get the environmentif [ -f ~/.bashrc ];#進入Bash Shell命令,用於以下命令的執行then . ~/.bashrcfi#file exitif [ -z $1 ] ; then #判斷設定檔是否存在echo 'USAGE:COMMAND FILENAME'exit 0fi#預定義變數以及數組declare -a analysis_sqlsdeclare -i i=0FLAG=0content=`sed -e 's/\s*\(.*\)\s*$/\1/g' -e 's/\s*\(=\)\s*/\1/g' -e '/^\(\s\)*$/d' -e '/^$/d' -e 's/<!--.*-->//' $1`while read linedoif echo ${line}|grep -qE "^<hive-shell type=\"analysis\"" ; thenFLAG=1continuefiif echo ${line}|grep -qE "</hive-shell>" ;thenFLAG=0continuefiif [ ${FLAG} -ne 0 ] ; thensql=`echo ${line}|sed -n -e 's/<hsql>//' -e 's/<\/hsql>//p'|tr -d '\r'`fi#empty sql,then wo will not excute followif [ ${#sql} -eq 0 ] ; thencontinuefiif [ ${FLAG} -eq 1 ] ; thenanalysis_sqls[$i]=$sqllet i++continuefidone<<EOF$contentEOFshellsql="echo -e \"\033[41:33m excute hive.sh start analysis sqls \033[0m\""for ((i=0;i<${#analysis_sqls[*]};i++))doshellsql="${shellsql} && hive -e \"${analysis_sqls[$i]}\""doneshellsql="${shellsql} && echo -e \"\033[41:33m excute hive.sh finished analysis sqls \033[0m\""eval $shellsql
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.