博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Hbase之更新单条数据
阅读量:6324 次
发布时间:2019-06-22

本文共 1729 字,大约阅读时间需要 5 分钟。

import org.apache.hadoop.conf.Configuration;import org.apache.hadoop.hbase.HBaseConfiguration;import org.apache.hadoop.hbase.TableName;import org.apache.hadoop.hbase.client.*;import org.apache.hadoop.hbase.util.Bytes;import java.io.IOException;/** * 修改数据 */public class MutateDataSingle {    public static void main(String[] args) throws IOException{        Configuration configuration = HBaseConfiguration.create();        Connection connection = ConnectionFactory.createConnection(configuration);        //建立表的连接        Table table = connection.getTable(TableName.valueOf("testtable"));        //获取put实例        Put put = new Put(Bytes.toBytes("10086"));        put.addColumn(Bytes.toBytes("colfam1"),Bytes.toBytes("qual1"),4,Bytes.toBytes("china mobile 1"));        put.addColumn(Bytes.toBytes("colfam1"),Bytes.toBytes("qual4"),4,Bytes.toBytes("china mobile 4"));        //删除        Delete delete = new Delete(Bytes.toBytes("10086"));        delete.addColumn(Bytes.toBytes("colfam1"),Bytes.toBytes("qual1"));        //更新实例        RowMutations mutations = new RowMutations(Bytes.toBytes("10086"));        mutations.add(put);        mutations.add(delete);        table.mutateRow(mutations);    }}//olddata/** 10086                                           column=colfam1:qual1, timestamp=1471836722159, value=\xE4\xB8\xAD\xE5\x9B\xBD\xE7\xA7\xBB\xE5\x8A\xA8 *///newdata/** 10086                                           column=colfam1:qual1, timestamp=4, value=china mobile 1                                                                                       10086                                           column=colfam1:qual4, timestamp=4, value=china mobile 4    **/

 

转载于:https://www.cnblogs.com/similarface/p/5798556.html

你可能感兴趣的文章
第4 章序列的应用
查看>>
初识闭包
查看>>
hdu1874畅通工程续
查看>>
rails 字符串 转化为 html
查看>>
Yii2.0 下的 load() 方法的使用
查看>>
iOS8 Push Notifications
查看>>
各大名企笔试及面经大全(程序猿必读)
查看>>
轨磁条简介
查看>>
如何设计高扩展的在线网页制作平台
查看>>
SpringBoot整合MyBatis
查看>>
订餐系统之同步美团商家订单
查看>>
CentOS 6.9通过RPM安装EPEL源(http://dl.fedoraproject.org)
查看>>
采集音频和摄像头视频并实时H264编码及AAC编码
查看>>
堆排序算法
查看>>
STM32的TAMPER-RTC管脚作为Tamper的使用[转]
查看>>
[记]一个逐步“优化”的范例程序
查看>>
2012-01-09_2
查看>>
数学 - 线性代数导论 - #5 矩阵变换之置换与转置
查看>>
java数据结构:队列
查看>>
使用.NET进行高效率互联网敏捷开发的思考和探索【一、概述】
查看>>