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
7e69f494
...
7e69f494e9cd68a39ec75ff90d1f55aaf948127f
authored
2022-01-12 11:00:56 +0800
by
张浩
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
commit
1 parent
5f2b12e0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletions
shell/create_table.hql
src/main/java/com/bigdata/test/ETLApp.java
shell/create_table.hql
View file @
7e69f49
CREATE DATABASE IF NOT EXISTS testdb;
use testdb;
CREATE TABLE qa_log(
rest string,
requestUri string,
...
...
src/main/java/com/bigdata/test/ETLApp.java
View file @
7e69f49
...
...
@@ -30,7 +30,7 @@ public class ETLApp {
Job
job
=
Job
.
getInstance
(
configuration
);
job
.
setJarByClass
(
ETLApp
.
class
);
job
.
addArchiveToClassPath
(
new
Path
(
"/jar/fastjson-1.2.7
6
.jar"
));
job
.
addArchiveToClassPath
(
new
Path
(
"/jar/fastjson-1.2.7
9
.jar"
));
job
.
setMapperClass
(
MyMapper
.
class
);
...
...
Please
register
or
sign in
to post a comment