hbase是我接觸的新東西。專案組也準備使用它開發乙個大的服務平台。我也趁機學習學習,先看看hbase的簡單操作方法吧:
雖然hbase與傳統的關係型資料庫有很大的不同,但首先建張表還是必須的:
/*** 定義幾個常量
*/public
static hbaseconfiguration conf = new hbaseconfiguration();
static htable table = null ;
/*** 建立hbase table
* @param table
* @throws ioexception
*/public
static
void creattable(string tablename) throws ioexception else
}
表建好了就可以插入資料了:
/*** 插入資料
* @throws exception
*/public
static
void insertdata() throws exception
}
hbase簡單操作
hbase shell 進入hbase list 給出所有表 count table name 檢視表的記錄數 scan table name 查詢多條記錄 scan table name limit 1 查詢一條記錄 truncate table name 清空表的記錄數 查詢含有 3091062...
hbase的簡單操作
基本命令 1 開啟hbase shell 2 建立表 create 表名 列族1 列族2 create user info data 3 新增資料 put 表名 行鍵 列族 key value put user r001 info name zhangsan put user r001 info g...
HBase學習之路 簡單命令操作介紹
在前面幾篇部落格中,已經簡單介紹了hbase的歷史和概念 hbase單機 完全分布式安裝 hbase底層機制等,這篇部落格主要是介紹hbase中的幾個簡單命令 hbase在windows系統中單機安裝 hbase在linux系統中單機安裝 hbase底層儲存架構機制簡單總結 1.list 列出所有表...