Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
张浩
/
BrBigDataTest
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
ebba0a1d
...
ebba0a1d9475edd6272372f2831d0385fe1276e5
authored
2022-02-11 18:12:18 +0800
by
zhanghao
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
commit
1 parent
9e61038a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
shell_debug/biz_data_count.hql
shell_debug/biz_data_response.hql
shell_debug/biz_data_count.hql
View file @
ebba0a1
...
...
@@ -2,5 +2,5 @@ use testdb;
INSERT OVERWRITE TABLE biz_data_count_debug
select method,biz_data,count(1) as count,max(timestamp) as timestamp
from (select * from qa_log_debug where method is not null and method!='N/A' and timestamp>
${hivevar:myTimestamp}
) my_debug
from (select * from qa_log_debug where method is not null and method!='N/A' and timestamp>
'${hivevar:myTimestamp}'
) my_debug
group by method,biz_data;
\ No newline at end of file
...
...
shell_debug/biz_data_response.hql
View file @
ebba0a1
...
...
@@ -3,4 +3,4 @@ use testdb;
INSERT OVERWRITE TABLE biz_data_response_debug
select method,biz_data,uid,timestamp,response
from qa_log_debug
where method is not null and method!='N/A' and timestamp>${hivevar:myTimestamp};
\ No newline at end of file
where method is not null and method!='N/A' and timestamp>'${hivevar:myTimestamp}';
\ No newline at end of file
...
...
Please
register
or
sign in
to post a comment