Commit 7e69f494 7e69f494e9cd68a39ec75ff90d1f55aaf948127f by 张浩

commit

1 parent 5f2b12e0
CREATE DATABASE IF NOT EXISTS testdb;
use testdb;
CREATE TABLE qa_log(
rest string,
requestUri string,
......
......@@ -30,7 +30,7 @@ public class ETLApp {
Job job = Job.getInstance(configuration);
job.setJarByClass(ETLApp.class);
job.addArchiveToClassPath(new Path("/jar/fastjson-1.2.76.jar"));
job.addArchiveToClassPath(new Path("/jar/fastjson-1.2.79.jar"));
job.setMapperClass(MyMapper.class);
......