HBase shell执行脚本(批量添加数据)

HBase shell执行脚本(批量添加数据)


上一篇文章中(http://blog.csdn.net/wild46cat/article/details/53214159)写了一些如何在HBase 的shell中单条添加数据。现在介绍一种通过shell脚本方式批量进行Hbase shell操作的方法。
本文主要参考,官方文档:http://hbase.apache.org/book.html#shell

1、首先,编写一个文本文件firsthbaseshell.txt:
create 'test', 'cf'
list 'test'
put 'test', 'row1', 'cf:a', 'value1'
put 'test', 'row2', 'cf:b', 'value2'
put 'test', 'row3', 'cf:c', 'value3'
put 'test', 'row4', 'cf:d', 'value4'
scan 'test'
get 'test', 'row1'
disable 'test'
enable 'test'

2、在HBase shell中运行这个脚本:
利用命令:hbase shell firstbaseshell.txt:
下面是运行结果:
HBase shell执行脚本(批量添加数据)_第1张图片
需要注意的是,如果编写的txt文件中没有exit这条命令的话,当脚本执行完成后,会停留在hbase shell的界面中,如果有exit命令的话,就会退出到系统shell中。

你可能感兴趣的:(linux,hbase)