中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

HBASE二級索引

發布時間:2020-06-21 20:56:21 來源:網絡 閱讀:743 作者:誰伴我闖蕩 欄目:關系型數據庫

HBASE基于coprocessor實現二級索引


場景如下:存儲UC_TWEETS表,ROWKEY設計:folderId_dayId_siteId_docId,導出有如下需求:根據campaignId導出,所以需要存儲campaignId的索引表

實現步驟如下:

一, 代碼實現如下:

public class HbaseCoprocessor extends BaseRegionObserver {

@Override

public void prePut(final ObserverContext<RegionCoprocessorEnvironment> e, final Put put, 

final WALEdit edit, final Durability durability) throws IOException {

Configuration configuration = HBaseConfiguration.create();

configuration.set("hbase.regionserver.lease.period", "900000");  

        configuration.set("hbase.rpc.timeout", "1800000");  

        configuration.set("hbase.client.scanner.timeout.period", "1800000");

        configuration.set("hbase.zookeeper.property.clientPort", "2181");  

        configuration.set("hbase.zookeeper.quorum", "DEV-HADOOP-01,DEV-HADOOP-02,DEV-HADOOP-03");  

        configuration.set("hbase.master", "DEV-HADOOP-01:60000");

        

        HTable table = new HTable(configuration, "UC_INDEX");

   List<Cell> kv = put.get("f1".getBytes(), "campaignId".getBytes()); 

   Iterator<Cell> kvItor = kv.iterator(); 

   while (kvItor.hasNext()) { 

    KeyValue tmp = (KeyValue)kvItor.next(); 

    String rowkey = new String(tmp.getRow());

    String value = new String(tmp.getValue());

    String newRowkey = value + "_" + rowkey;

   Put indexPut = new Put(newRowkey.getBytes()); 

   indexPut.add("f1".getBytes(), tmp.getQualifier(), tmp.getValue()); 

   table.put(indexPut); 

   } 

   table.close();

}


}


二, 把上面的HbaseCoprocessor類導出.選擇Export -> Jar File,導出成ucTweet.jar文件

三, 把ucTweet.jar文件上傳到HDFS,命令如下:./hadoop fs -put /data/server/ucTweet_index.jar /jars

四, 設置UC_TWEETS表的coprocessor屬性,命令如下:alter 'UC_TWEETS',METHOD=>'table_att','coprocessor'=>'hdfs://192.168.9.110:9000/jars/ucTweet.jar|com.prime.dsc.inputservice.coprocessor.HbaseCoprocessor|1001|'

五, 把數據插入UC_TWEETS表,如果UC_INDEX表同樣有數據,并且符合設計,則說明二級索引建立成功

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

吉林省| 富顺县| 冀州市| 措勤县| 巴林左旗| 浏阳市| 白河县| 平利县| 武安市| 嘉峪关市| 和田市| 大渡口区| 黄浦区| 仁化县| 行唐县| 卓资县| 长丰县| 资溪县| 莆田市| 亳州市| 天台县| 融水| 平凉市| 台中市| 泸西县| 千阳县| 瓮安县| 寿光市| 璧山县| 五原县| 堆龙德庆县| 安阳市| 珲春市| SHOW| 十堰市| 曲阳县| 武鸣县| 万全县| 镇远县| 吴桥县| 夏邑县|