最新educoder平台HBase开发:表的扫描与扫描的缓存和批量处理.docx

最新educoder平台HBase开发:表的扫描与扫描的缓存和批量处理.docx

ID:62984881

大小:397.76 KB

页数:7页

时间:2021-07-23

最新educoder平台HBase开发:表的扫描与扫描的缓存和批量处理.docx_第1页
最新educoder平台HBase开发:表的扫描与扫描的缓存和批量处理.docx_第2页
最新educoder平台HBase开发:表的扫描与扫描的缓存和批量处理.docx_第3页
最新educoder平台HBase开发:表的扫描与扫描的缓存和批量处理.docx_第4页
最新educoder平台HBase开发:表的扫描与扫描的缓存和批量处理.docx_第5页
资源描述:

《最新educoder平台HBase开发:表的扫描与扫描的缓存和批量处理.docx》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库

1、精品资料educoder平台HBase开发:表的扫描与扫描的缓存和批量处理........................................精品资料第1关:批量处理packagestep1;importjava.util.ArrayList;importjava.util.List;importorg.apache.hadoop.conf.Configuration;importorg.apache.hadoop.hbase.Cell;importorg.apache.hadoop.hbase.CellUtil;im

2、portorg.apache.hadoop.hbase.HBaseConfiguration;importorg.apache.hadoop.hbase.TableName;importorg.apache.hadoop.hbase.client.*;importorg.apache.hadoop.hbase.client.coprocessor.Batch;importorg.apache.hadoop.hbase.util.Bytes;publicclassTask{publicObject[]batchOp(Stringta

3、blename)throwsException{/*********Begin*********/Configurationconf=HBaseConfiguration.create();........................................精品资料Connectionconn=ConnectionFactory.createConnection(conf);Tabletable=conn.getTable(TableName.valueOf(tablename));Listrows=newA

4、rrayList<>();//删除操作Deletedelete=newDelete(Bytes.toBytes("row1"));Deletedelete2=newDelete(Bytes.toBytes("row2"));rows.add(delete);rows.add(delete2);//获取操作Getget=newGet(Bytes.toBytes("row3"));Getget2=newGet(Bytes.toBytes("row10"));rows.add(get);rows.add(get2);//定义结果数组长度

5、Object[]results=newObject[rows.size()];........................................精品资料table.batch(rows,results);//这是一个同步的操作,批量操作的结果将会在操作之后放在results中//delete和put操作的结果为NONE即没有结果returnresults;/*********End*********/}}命令行:启动下Hadoop和hbase第2关:扫描表中所有的数据packagestep2;importorg.ap

6、ache.hadoop.conf.Configuration;importorg.apache.hadoop.hbase.Cell;importorg.apache.hadoop.hbase.CellUtil;importorg.apache.hadoop.hbase.HBaseConfiguration;importorg.apache.hadoop.hbase.TableName;importorg.apache.hadoop.hbase.client.*;publicclassTask{publicvoidscanTable

7、(Stringtablename)throwsException{........................................精品资料/*********Begin*********/Configurationconf=HBaseConfiguration.create();Connectionconn=ConnectionFactory.createConnection(conf);Tabletable=conn.getTable(TableName.valueOf(tablename));Scanscan=

8、newScan();ResultScannerscanner=table.getScanner(scan);for(Resultresult:scanner){for(Cellcell:result.listCells()){System.out.

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。