1、数据格式a.txt:

1363157985066 13726230503
00-FD-07-A4-72-B8:CMCC 120.196.100.82
i02.c.aliimg.com 24
27 2481
24681 200

1363157995052 13826544101
5C-0E-8B-C7-F1-E0:CMCC 120.197.40.4
4 0
264 0 200

1363157991076 13926435656
20-10-7A-28-CC-0A:CMCC 120.196.100.99
2 4
132 1512
200

1363154400022 13926251106
5C-0E-8B-8B-B1-50:CMCC 120.197.40.4
4 0
240 0 200

1363157993044 18211575961
94-71-AC-CD-E6-18:CMCC-EASY 120.196.100.99
iface.qiyi.com 视频站点
15 12
1527 2106
200

1363157995074 84138413
5C-0E-8B-8C-E8-20:7DaysInn 120.197.40.4
122.72.52.12 20
16 4116
1432 200

1363157993055 13560439658
C4-17-FE-BA-DE-D9:CMCC 120.196.100.99
18 15
1116 954
200

1363157995033 15920133257
5C-0E-8B-C7-BA-20:CMCC 120.197.40.4
sug.so.360.cn 信息安全
20 20
3156 2936
200

1363157983019 13719199419
68-A1-B7-03-07-B1:CMCC-EASY 120.196.100.82
4 0
240 0 200

1363157984041 13660577991
5C-0E-8B-92-5C-20:CMCC-EASY 120.197.40.4
s19.cnzz.com 网站统计
24 9
6960 690
200

1363157973098 15013685858
5C-0E-8B-C7-F7-90:CMCC 120.197.40.4
rank.ie.sogou.com 搜索引擎
28 27
3659 3538
200

1363157986029 15989002119
E8-99-C4-4E-93-E0:CMCC-EASY 120.196.100.99
www.umeng.com 网站统计
3 3
1938 180
200

1363157992093 13560439658
C4-17-FE-BA-DE-D9:CMCC 120.196.100.99
15 9
918 4938
200

1363157986041 13480253104
5C-0E-8B-C7-FC-80:CMCC-EASY 120.197.40.4
3 3
180 180
200

1363157984040 13602846565
5C-0E-8B-8B-B6-00:CMCC 120.197.40.4
2052.flash2-http.qq.com 综合门户
15 12
1938 2910
200

1363157995093 13922314466
00-FD-07-A2-EC-BA:CMCC 120.196.100.82
img.qfc.cn 12
12 3008
3720 200

1363157982040 13502468823
5C-0A-5B-6A-0B-D4:CMCC-EASY 120.196.100.99
y0.ifengimg.com 综合门户
57 102
7335 110349
200

1363157986072 18320173382
84-25-DB-4F-10-1A:CMCC-EASY 120.196.100.99
input.shouji.sogou.com 搜索引擎
21 18
9531 2412
200

1363157990043 13925057413
00-1F-64-E1-E6-9A:CMCC 120.196.100.55
t3.baidu.com 搜索引擎
69 63
11058 48243
200

1363157988072 13760778710
00-FD-07-A4-7B-08:CMCC 120.196.100.82
2 2
120 120
200

1363157985079 13823070001
20-7C-8F-70-68-1F:CMCC 120.196.100.99
6 3
360 180
200

1363157985069 13600217502
00-1F-64-E2-E8-B1:CMCC 120.196.100.55
18 138
1080 186852
200

2、hbase 创建表 create 'wlan','cf'

3、代码

package com.utils;





import java.io.IOException;

import java.text.SimpleDateFormat;

import java.util.Date;





import org.apache.hadoop.conf.Configuration;

import org.apache.hadoop.hbase.HBaseConfiguration;

import org.apache.hadoop.hbase.client.Mutation;

import org.apache.hadoop.hbase.client.Put;

import org.apache.hadoop.hbase.mapreduce.TableMapReduceUtil;

import org.apache.hadoop.hbase.mapreduce.TableOutputFormat;

import org.apache.hadoop.hbase.mapreduce.TableReducer;

import org.apache.hadoop.io.LongWritable;

import org.apache.hadoop.io.NullWritable;

import org.apache.hadoop.io.Text;

import org.apache.hadoop.mapreduce.Job;

import org.apache.hadoop.mapreduce.Mapper;

import org.apache.hadoop.mapreduce.Reducer;

import org.apache.hadoop.mapreduce.lib.input.FileInputFormat;

import org.apache.hadoop.mapreduce.lib.input.TextInputFormat;





public class HBaseImport {

static class BatchMapper extends Mapper<LongWritable, Text, LongWritable, Text>{

@Override

protected void map(LongWritable key, Text value,

Mapper<LongWritable, Text, LongWritable, Text>.Context context)

throws IOException, InterruptedException {

String line = value.toString();

String[] splited = line.split("\t");

SimpleDateFormat simpleDateFormatimpleDateFormat = new SimpleDateFormat("yyyyMMddHHmmss");

String format = simpleDateFormatimpleDateFormat.format(new Date(Long.parseLong(splited[0].trim())));

String rowKey=splited[1]+"_"+format;

Text v2s = new Text();

v2s.set(rowKey+"\t"+line);

context.write(key, v2s);

}

}

static class BatchReducer extends TableReducer<LongWritable, Text, NullWritable>{

private String family="cf";//列族





@Override

protected void reduce(LongWritable arg0, Iterable<Text> v2s,

Reducer<LongWritable, Text, NullWritable, Mutation>.Context context)

throws IOException, InterruptedException {

for (Text v2 : v2s) {

String[] splited = v2.toString().split("\t");

String rowKey = splited[0];

Put put = new Put(rowKey.getBytes());

put.add(family.getBytes(), "raw".getBytes(), v2.toString().getBytes());

put.add(family.getBytes(), "rePortTime".getBytes(), splited[1].getBytes());

put.add(family.getBytes(), "msisdn".getBytes(), splited[2].getBytes());

put.add(family.getBytes(), "apmac".getBytes(), splited[3].getBytes());

put.add(family.getBytes(), "acmac".getBytes(), splited[4].getBytes());

put.add(family.getBytes(), "host".getBytes(), splited[5].getBytes());

put.add(family.getBytes(), "siteType".getBytes(), splited[6].getBytes());

put.add(family.getBytes(), "upPackNum".getBytes(), splited[7].getBytes());

put.add(family.getBytes(), "downPackNum".getBytes(), splited[8].getBytes());

put.add(family.getBytes(), "upPayLoad".getBytes(), splited[9].getBytes());

put.add(family.getBytes(), "downPayLoad".getBytes(), splited[10].getBytes());

put.add(family.getBytes(), "httpStatus".getBytes(), splited[11].getBytes());

context.write(NullWritable.get(), put);

}

}

}

private static final String TableName = "waln_log";

public static void main(String[] args) throws Exception {

Configuration conf = HBaseConfiguration.create();

conf.set("hbase.zookeeper.quorum","192.168.80.20,192.168.80.21,192.168.80.22");

//conf.set("hbase.rootdir", "hdfs://cluster/hbase");

conf.set("hbase.rootdir", "hdfs://192.168.80.20:9000/hbase");

conf.set(TableOutputFormat.OUTPUT_TABLE, TableName);



Job job = new Job(conf, HBaseImport.class.getSimpleName());

TableMapReduceUtil.addDependencyJars(job);

job.setJarByClass(HBaseImport.class);



job.setMapperClass(BatchMapper.class);

job.setReducerClass(BatchReducer.class);



job.setMapOutputKeyClass(LongWritable.class);

job.setMapOutputValueClass(Text.class);



job.setInputFormatClass(TextInputFormat.class);

job.setOutputFormatClass(TableOutputFormat.class);



FileInputFormat.setInputPaths(job, "hdfs://192.168.80.20:9000/data");

System.out.println("xxxxxxx1xxxxxxxx");

job.waitForCompletion(true);

}

}

hbase 批量插入api的更多相关文章

  1. HBase批量插入的简单代码

    由于项目需要从HBase里读取数据,进行MapReduce之后输出到HDFS中. 为了测试方便,我这里写了一个批量插入HBase数据的测试代码.采用的Maven工程. 打算,今后的所有用到的小测试例子 ...

  2. Hbase批量插入优化记录

    2016年5月11日10:08:29 hbase原本的put方式是一条一条的put,在客户端修改 AutoFlush 将HTable的setAutoFlush设为false,可以支持客户端批量更新.即 ...

  3. C#/.NET使用HttpWebRequest、SqlBulkCopy从API获取数据批量插入DB

    小弟新手程序员一枚,代码技术和文章水平均不才.所写文章均为对自己所写所学代码的简单记录,可能对于老手程序员营养价值不高,望莫见怪. 我工作上有个需求:从某处API接口上获取数据(大约1W条而已)并插入 ...

  4. elasticsearch REST API方式批量插入数据

    elasticsearch REST API方式批量插入数据 1:ES的服务地址  http://127.0.0.1:9600/_bulk 2:请求的数据体,注意数据的最后一行记得加换行 { &quo ...

  5. C API 连接MySQL及批量插入

    CMySQLMgr.h: #ifndef _CMYSQLMGR_H_ #define _CMYSQLMGR_H_ #include <iostream> #include "my ...

  6. android SQLite 批量插入数据慢的解决方案 (针对于不同的android api 版本)

    原地址 :http://www.cnblogs.com/wangmars/p/3914090.html SQLite,是一款轻型的数据库,被广泛的运用到很多嵌入式的产品中,因为占用的资源非常少,二其中 ...

  7. HBASE学习笔记--API

    HBaseConfiguration HBaseConfiguration是每一个hbase client都会使用到的对象,它代表的是HBase配置信息.它有两种构造方式: public HBaseC ...

  8. Hbase框架原理及相关的知识点理解、Hbase访问MapReduce、Hbase访问Java API、Hbase shell及Hbase性能优化总结

    转自:http://blog.csdn.net/zhongwen7710/article/details/39577431 本blog的内容包含: 第一部分:Hbase框架原理理解 第二部分:Hbas ...

  9. Hibernate的批量插入(&&JDBC)

    来自: http://blog.csdn.net/an_2016/article/details/51759890 一.批量插入(两种方式) 1,通过hibernate缓存 如果这样写代码进行批量插入 ...

随机推荐

  1. json,xml,html三种数据格式

    json.xml.html xml解析如下: 1.DOM:基于XML文档树结构的解析 解析器读入整个文档,然后构建一个驻留内存的树结构,然后代码就可以使用 DOM 接口来操作这个树结构.优点:整个文档 ...

  2. [NOIp2017提高组]列队

    [NOIp2017提高组]列队 题目大意 一个\(n\times m(n,m\le3\times10^5)\)的方阵,每个格子里的人都有一个编号.初始时第\(i\)行第\(j\)列的编号为\((i-1 ...

  3. http请求 url 传递参数(特殊字符)解决方法

    有些符号在URL中是不能直接传递的,如果要在URL中传递这些特殊符号,那么就要使用他们的编码了.下表中列出了一些URL特殊符号及编码       十六进制值 1. + URL 中+号表示空格 %2B ...

  4. MongoDB 刷新几次就报错

    官方: MongoDB.Driver 在页面上 速度刷新几次,就会抛错? 为何? Service 层  Autofac

  5. [典型漏洞分享]Insert型SQL注入的发现和利用,篡改订单金额

    本例中的SQL注入和其它发现的SQL注入的主要区别:1.生成订单接口是一次性的,反复提交无效,因此,此类型的SQL注入比较难通过扫描器发现,需要人工提取和手动测试.2.Insert类型的SQL注入,不 ...

  6. Oracle session active 和 inactive 状态 说明

    Oracle session active 和 inactive 状态 说明 原创 2011年06月12日 13:08:00 标签: session / oracle / database / ser ...

  7. Netty游戏服务器二

    上节我们写个server主类,那么发现什么事情都干不了,是的,我们还没有做任何的业务处理. 接着我们开始写处理客户端连接,发送接收数据的类ServerHandler. public class Ser ...

  8. Oracle错误代码ORA-01653,表空间容量无法扩展

    业务模块在进行增操作时,报错“Caused by: java.sql.BatchUpdateException: ORA-01653: 表 JAZZ_V3.T_MZ_BK 无法通过 128 (在表空间 ...

  9. Bootstrap导航栏实例讲解

    导航栏是一个很好的功能,是 Bootstrap 网站的一个突出特点.导航栏是响应式元组件就,作为应用程序或网站的导航标题.导航栏在移动设备的视图中是折叠的,随着可用视口宽度的增加,导航栏也会水平展开. ...

  10. latex 三个不同的图放在一行且每个图都有注释

    \begin{figure}[htbp] \begin{minipage}[t]{0.3\linewidth} \centering \includegraphics[width=.2.0.eps} ...