Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Mapreduceを使用してHbaseにデータをロードする必要があります。Hbaseから始める方法、HbaseをJavaと統合するには、jarファイルを使用する必要がありますか。
Java から Hbase にアクセスするには、以下のコードを使用します。
conf = new HBaseConfiguration(); conf.set("hbase.zookeeper.quorum", "ip1,ip2,ip3"); conf.addResource(new Path("/etc/hbase/conf/hbase-site.xml")); hbase = new HBaseAdmin(conf);