Commit 39fd414a 39fd414a3e1ce8ba379a4525a10d7b845b771f24 by zhanghao

commit

1 parent 581a6fc8
...@@ -4,7 +4,8 @@ hadoop fs -put /home/test/logs/app.out /input/debug/data/app.out ...@@ -4,7 +4,8 @@ hadoop fs -put /home/test/logs/app.out /input/debug/data/app.out
4 hadoop jar ./target/BrBigDataTest-1.0.0.jar com.bigdata.test.ETLAppDebug /input/debug/data/app.out /input/debug/etl/ 4 hadoop jar ./target/BrBigDataTest-1.0.0.jar com.bigdata.test.ETLAppDebug /input/debug/data/app.out /input/debug/etl/
5 sleep 3 5 sleep 3
6 6
7 maxTimestamp=$(hive -f ./shell_debug/max_timestamp.hql) 7 maxTimestamp='2022-02-10 17:13:21.308'
8 #maxTimestamp=$(hive -f ./shell_debug/max_timestamp.hql)
8 9
9 hive -f ./shell_debug/load_data.hql 10 hive -f ./shell_debug/load_data.hql
10 $(hive -hivevar myTimestamp=$maxTimestamp -f ./shell_debug/method_count.hql) 11 $(hive -hivevar myTimestamp=$maxTimestamp -f ./shell_debug/method_count.hql)
......
...@@ -2,5 +2,5 @@ use testdb; ...@@ -2,5 +2,5 @@ use testdb;
2 2
3 INSERT OVERWRITE TABLE biz_data_count_debug 3 INSERT OVERWRITE TABLE biz_data_count_debug
4 select method,biz_data,count(1) as count,max(timestamp) as timestamp 4 select method,biz_data,count(1) as count,max(timestamp) as timestamp
5 from (select * from qa_log_debug where method is not null and method!='N/A' and timestamp>${hivevar:maxTimestamp}) my_debug 5 from (select * from qa_log_debug where method is not null and method!='N/A' and timestamp>${hivevar:myTimestamp}) my_debug
6 group by method,biz_data; 6 group by method,biz_data;
...\ No newline at end of file ...\ No newline at end of file
......
...@@ -3,4 +3,4 @@ use testdb; ...@@ -3,4 +3,4 @@ use testdb;
3 INSERT OVERWRITE TABLE biz_data_response_debug 3 INSERT OVERWRITE TABLE biz_data_response_debug
4 select method,biz_data,uid,timestamp,response 4 select method,biz_data,uid,timestamp,response
5 from qa_log_debug 5 from qa_log_debug
6 where method is not null and method!='N/A' and timestamp>${hivevar:maxTimestamp};
...\ No newline at end of file ...\ No newline at end of file
6 where method is not null and method!='N/A' and timestamp>${hivevar:myTimestamp};
...\ No newline at end of file ...\ No newline at end of file
......