Java操作hbase總結

木子小僧發表於2016-07-13

用過以後,總得寫個總結,不然,就忘嘍。

一、尋找操作的jar包。

java操作hbase,首先要考慮到使用hbase的jar包。

因為我們裝的是CDH5,比較方便,使用SecureCRT工具,遠端連線到你安裝的那臺伺服器上。

jar包的存放位置在/opt/cloudera/parcels/CDH/lib/hbase,找到,下載下來。

在當前路徑下,有一個lib包,裡面是支援hbase的hadoop的jar包,根據需求,可以下載下來。

二、找一個API文件當成手冊,哪裡不會查哪裡

      百度分享,http://pan.baidu.com/s/1jICqdgy,可以下載。

三、java操作Hbase。

     建構函式:

     

public static Configuration configuration;
    static{
        configuration = HBaseConfiguration.create();
        configuration.set("hbase.master","ip1:60000");
        configuration.set("hbase.zookeeper.quorum", "ip1:2181,ip2:2181") ;
    }

     1、如何建立一個hbase表並put資料。

public static void creaTable(String tablename) throws Exception{
        HBaseAdmin admin = new HBaseAdmin(configuration);
        if(admin.tableExists(tablename)){
            admin.disableTable(tablename);
            admin.deleteTable(tablename);
            System.out.println("開始建立表!");
        }
        System.out.println("新的表正在建立中!!!");
        HTableDescriptor tableDescriptor = new HTableDescriptor(tablename);
        tableDescriptor.addFamily(new HColumnDescriptor("cf1"));
        admin.createTable(tableDescriptor);
        
        Put put = new Put("123".getBytes());
        put.add("cf1".getBytes(), "colum1".getBytes(), "value1".getBytes()) ;
        put.add("cf1".getBytes(), "colum2".getBytes(), "value2".getBytes()) ;
        put.add("cf1".getBytes(), "colum3".getBytes(), "value3".getBytes()) ;
        
        Put put2 = new Put("234".getBytes()) ;
        put2.add("cf1".getBytes(), "colum1".getBytes(), "value1".getBytes()) ;
        put2.add("cf1".getBytes(), "colum2".getBytes(), "value2".getBytes()) ;
        put2.add("cf1".getBytes(), "colum3".getBytes(), "value3".getBytes()) ;
        
        HTable table = new HTable(configuration, tablename);
        table.put(put);
        table.put(put2);    
    }

         2、刪除hbase中的table裡面的rowkey

 

1 public static void deleteRow(String tableName,String rowKey) throws Exception{
2         HTable hTable = new HTable(configuration,tableName);
3         Delete delete = new Delete(rowKey.getBytes());
4         List<Delete> list = new ArrayList<Delete>();
5         list.add(delete);
6         hTable.delete(list);
7     }

 

       3、查詢row = rowKey的資料

 1 /**
 2      * 查詢row = rowKey的資料
 3      * @param tableName
 4      * @param rowKey
 5      * @throws Exception
 6      */
 7     public static void getRow(String tableName,String rowKey) throws Exception{
 8         HTable hTable = new HTable(configuration, tableName);
 9         Get get = new Get(rowKey.getBytes());
10         Result result = hTable.get(get);
11         for(KeyValue value:result.raw()){
12             System.out.println("cf:"+new String(value.getFamily())+new String(value.getQualifier())+"="+new String(value.getValue()));
13         }
14     }

     4、查詢rowkey在startRow和endRow之間的資料,及rowkey的範圍查詢

   Put、Delete與Get物件都是Row的子類,從該繼承關係中我們就可以瞭解到Get、Delete與Pu物件本身就只能進行單行的操作,

     HBase客戶端還提供了一套能夠進行全表掃描的API,方便使用者能夠快速對整張表進行掃描,以獲取想要的結果---scan、

 1 /**
 2      * 查詢rowkey在startRow和endRow之間的資料
 3      * @param tablename
 4      * @param startRow
 5      * @param endRow
 6      * @throws Exception 
 7      */
 8     public static void getBetweenRow(String tableName,String startRow,String stopRow) throws Exception{
 9         HTable table = new HTable(configuration, tableName);
10         Scan scan = new Scan();
11         scan.addColumn("cf1".getBytes(), "colum1".getBytes());
12         scan.addColumn("cf1".getBytes(), "colum2".getBytes());
13         scan.addColumn("cf1".getBytes(), "colum3".getBytes());
14         
15         scan.setStartRow(startRow.getBytes());
16         scan.setStopRow(stopRow.getBytes());
17         
18         ResultScanner scanner = table.getScanner(scan);
19         
20         for(Result result:scanner){
21             for(KeyValue value:result.raw()){
22                 System.out.println("cf:"+new String(value.getFamily())+new String(value.getQualifier())+"="+new String(value.getValue()));
23             }
24         }
25     }

  

 

     

相關文章