hbase表中添加数据
时间: 2023-08-08 18:08:07 浏览: 127
下载ftp文件,读取内容通过Phoenix JDBC连接往Hbase数据库中建表插入数据。
要向 HBase 表中添加数据,需要使用 HBase 的 Java API 或 HBase Shell 命令行工具。
以下是 Java API 的示例代码:
```
// 创建 HBase 配置对象
Configuration config = HBaseConfiguration.create();
// 创建 HBase 表对象
HTable table = new HTable(config, "table_name");
// 创建 Put 对象,用于插入数据
Put put = new Put(Bytes.toBytes("row_key"));
// 添加列族、列和值
put.add(Bytes.toBytes("column_family"), Bytes.toBytes("column"), Bytes.toBytes("value"));
// 将数据插入表中
table.put(put);
// 关闭表和连接
table.close();
```
在 HBase Shell 中,可以使用以下命令添加数据:
```
put 'table_name', 'row_key', 'column_family:column', 'value'
```
其中,`table_name` 是表名,`row_key` 是行键,`column_family` 是列族,`column` 是列名,`value` 是值。
阅读全文