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
eb1c59da
...
eb1c59da611e0e11f1e979f43a42e2d5dd959f6d
authored
2022-03-01 16:22:03 +0800
by
zhanghao
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
commit
1 parent
d109de81
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
4 deletions
shell/biz_data_response.hql
shell/create_table.hql
shell/tc_response.hql
shell/biz_data_response.hql
View file @
eb1c59d
use testdb;
INSERT OVERWRITE TABLE biz_data_response
select method,biz_data,uid,platform,deviceInfo,version,imei,app_id,timestamp,response
select method,biz_data,uid,platform,deviceInfo,version,imei,app_id,timestamp,response
,trace
from qa_log
where method is not null and method!='N/A';
\ No newline at end of file
...
...
shell/create_table.hql
View file @
eb1c59d
...
...
@@ -44,7 +44,8 @@ version string,
imei string,
app_id string,
timestamp string,
response string
response string,
trace string
) ROW FORMAT DELIMITED FIELDS TERMINATED BY '\t';
CREATE TABLE tc_response(
...
...
@@ -57,5 +58,6 @@ version string,
imei string,
app_id string,
timestamp string,
response string
response string,
trace string
) ROW FORMAT DELIMITED FIELDS TERMINATED BY '\t';
\ No newline at end of file
...
...
shell/tc_response.hql
View file @
eb1c59d
use testdb;
INSERT OVERWRITE TABLE tc_response
select method,biz_data,uid,platform,deviceInfo,version,imei,app_id,timestamp,response
select method,biz_data,uid,platform,deviceInfo,version,imei,app_id,timestamp,response
,trace
from qa_log
where method is not null and method!='N/A'
and (method='com.lejane.handler.common.sidebar.operate.query.new.v3'
...
...
Please
register
or
sign in
to post a comment