HBase是一个分布式、可扩展的非关系型数据库,它基于Hadoop构建
启动HBase: 在终端中输入以下命令启动HBase:
hbase-daemon.sh start master
hbase-daemon.sh start regionserver
停止HBase: 在终端中输入以下命令停止HBase:
hbase-daemon.sh stop master
hbase-daemon.sh stop regionserver
查看HBase状态: 使用以下命令查看HBase的状态信息:
hbase hbck
创建表:
使用以下命令创建一个名为my_table
的表,其中有一个列族cf1
:
hbase> create 'my_table', 'cf1'
插入数据:
使用以下命令向my_table
表中插入一行数据:
hbase> put 'my_table', 'row1', 'cf1:column1', 'value1'
查询数据:
使用以下命令查询my_table
表中row1
行的数据:
hbase> get 'my_table', 'row1'
删除数据:
使用以下命令删除my_table
表中row1
行的cf1:column1
列的数据:
hbase> delete 'my_table', 'row1', 'cf1:column1'
列出表: 使用以下命令列出HBase中所有的表:
hbase> list
删除表:
使用以下命令删除名为my_table
的表:
hbase> drop 'my_table'
导入数据: 使用以下命令将CSV文件中的数据导入到HBase表中:
hbase org.apache.hadoop.hbase.mapreduce.ImportTsv -Dimport.columns="column1,column2" input="/path/to/csv" table="my_table"
导出数据: 使用以下命令将HBase表中的数据导出到CSV文件:
hbase org.apache.hadoop.hbase.mapreduce.ExportTsv -output "/path/to/csv" table="my_table"
这些是HBase命令行的基本操作,更多高级操作可以参考HBase官方文档:https://hbase.apache.org/book.html