与Hadoop一样,HBase也有三种运行模式:Standalone,?Distributed,?Pseudo-distributed。其中,Pseudo-distributed称为伪集群模式,与Distributed基本一样,只不过进程都运行在一台机器上。1、对HDFS配置伪集群模式。见:Hadoop伪集群测试?与?Hadoop集群配置
与Hadoop一样,HBase也有三种运行模式:Standalone,?Distributed,?Pseudo-distributed。 其中,Pseudo-distributed称为伪集群模式,与Distributed基本一样,只不过进程都运行在一台机器上。 1、对HDFS配置伪集群模式。 见:Hadoop伪集群测试?与?Hadoop集群配置详细版 2、配置HBase hbase-site.xml<?xml version="1.0"?> <?xml-stylesheet type="text/xsl" href="http://www.coder4.com/archives/configuration.xsl"?> hbase.rootdir hdfs://localhost:9000/hbase hbase.cluster.distributed true hbase.zookeeper.quorum localhost hbase.zookeeper.property.dataDir /home/liheyuan/soft/hbase-0.94.9/zk_data
./bin/start-hbase.sh
14962 HQuorumPeer 15274 HRegionServer 15034 HMaster
Configuration conf = new Configuration(); conf.set("hbase.zookeeper.quorum", "localhost"); pool = new HTablePool(conf, 1); pool.getTable("test");
原文地址:HBase伪集群配置, 感谢原作者分享。