Hbase学习:安装和测试

本文介绍了HBase的基本配置方法,包括在Linux环境下配置hbase-site.xml文件,并演示了如何通过命令行启动HBase及使用hbase shell进行基本操作。此外,还提供了一个Eclipse项目中的示例代码,展示了如何通过Java API对HBase表进行写入操作。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

1.在linux:
hbase-site.xml 中
property>
<name>hbase.rootdir</name>
<value>hdfs://*****:54310/hbase</value>
<description>The directory shared by region servers.
</description>
</property>


<property>
<name>hbase.master</name>
<value>****:60000</value>
<description>The host and port that the HBase master runs at.
</description>
</property>

2.bin/startup-hbase.sh ,启动

3. 在window 上,同样的 hbase-site.xml , 用 bin/hbase shell --->list , ok
4. 在 eclipse 中建立项目,hbase : code a junit test
public class F1 extends HBaseTestCase{

public void testT() throws IOException{
HBaseConfiguration config = new HBaseConfiguration();


HTable table = new HTable(config, "t1");

byte [] row = Bytes.toBytes("row");

BatchUpdate batchUpdate = new BatchUpdate(row);

byte[] value = "value".getBytes("utf-8");

batchUpdate.put("f1:", value);
table.commit(batchUpdate);

}

}
5. ok.
继续探索 hbase 适用的场景
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值