用 Phoenix 通過 SQL 語句更新操作 HBase 資料

ixirong發表於2016-05-15

HBase 提供很方便的shell指令碼,可以對資料表進行 CURD 操作,但是畢竟是有一定的學習成本的,基本上對於開發來講,sql 語句都是看家本領,那麼,有沒有一種方法可以把 sql 語句轉換成 hbase的原生API呢? 這樣就可以通過普通平常的 sql 來對hbase 進行資料的管理,使用成本大大降低。

Apache Phoenix 元件就完成了這種需求,官方註解為 “Phoenix – we put the SQL back in NoSql”,通過官方說明,Phoenix 的效能很高,相對於 hbase 原生的scan 並不會差多少,而對於類似的元件 hive、Impala等,效能有著顯著的提升,詳細請閱讀 https://phoenix.apache.org/performance.html

Apache Phoenix 官方站點:https://phoenix.apache.org/
Phoenix支援的sql語句: https://phoenix.apache.org/language/index.html
Phoenix 支援的DataTypes:https://phoenix.apache.org/language/datatypes.html
Phoenix 支援的函式:https://phoenix.apache.org/language/functions.html

一、安裝使用

Phoenix 安裝很簡單,下載對應hbase版本的Phoenix,下載地址,以phoenix-4.4.0-HBase-0.98-bin.tar.gz為例,解壓檔案,將phoenix-4.4.0-server.jar 拷貝到hbase安裝目錄的lib下,注意:每臺regionserver均需要拷貝,重啟hbase server即可,官方如下:

  • download and expand the latest phoenix-[version]-bin.tar.
  • Add the phoenix-[version]-server.jar to the classpath of all HBase region server and master and remove any previous version. An easy way to do this is to copy it into the HBase lib directory (use phoenix-core-[version].jar for Phoenix 3.x)
  • restart the region servers
  • Add the phoenix-[version]-client.jar to the classpath of any Phoenix client.
  • download and setup SQuirrel as your SQL client so you can issue adhoc SQL against your HBase cluster

詳情檢視:Phoenix-in-15-minutes

二、shell 命令

通過案例,create 表,插入語句,更新語句,刪除語句案例,詳細可參考:https://phoenix.apache.org/faq.html

Phoenix 連線hbase的命令如下,sqlline.py [zookeeper]:

從上面能夠看到,已經連線到了hbase叢集上面,Phoenix version 4.2,sqlline version 4.2,輸入Phoenix支援的命令!tables可以檢視當前叢集中存在的資料表,能夠看到有些是SYSTEM TABLE,其它的都是自己建立的;

下面通過指令碼來模擬下使用Phoenix建立資料表、修改表、新增資料、修改資料、刪除資料、刪除表等操作:

1、新建一張Person表,含有IDCardNumNameAge 三個欄位 ,testtable_schem ,標準sql如下:

可以看到,hbase中已經存在資料表 Person了,包含了三列。

2、對錶進行插入操作,sql如下:

在 Phoenix 中插入的語句為 upsert ,具體如下:

從上面可以看到,三條資料已經進入hbase裡面了;好了,現在要對錶新增一列 sex 性別操作,怎麼辦?

3、alter 修改表資料,sql如下:

Phoenix 中操作如下:

上圖看到已經新增了列sex,每行的預設值為 null ,那麼怎麼樣修改這些值呢?

4、 更新表資料 ,標準的sql 如下:

Phoenix中不存在update的語法關鍵字,而是upsert ,功能上替代了Insert+update,官方說明為:

UPSERT VALUES
Inserts if not present and updates otherwise the value in the table. The list of columns is optional and if not present, the values will map to the column in the order they are declared in the schema. The values must evaluate to constants.

根據介紹,只需要在upsert語句中制定存在的idcardnum即可實現更新,在 Phoenix 客戶端中操作如下:

5、複雜查詢,通過Phoenix可以支援 where、group by、case when 等複雜的查詢條件,案例如下:

where + group by 語句例子:

case when 的例子:

更多支援語法參考:https://phoenix.apache.org/language/index.html

6、刪除資料及刪除表,標準sql如下:

Phoenix中同標準sql一樣,案例如下:

三、圖形化客戶端SQuirrel使用

如果你不喜歡 終端下的指令碼命令,青睞於GUI化的客戶端,那麼 SQuirrel是個好的選擇,就跟平日裡使用 MsSqlServer client、Navicat client 一樣,效果如下圖:

squirrel client

使用方法:(可以參照官網英文說明

  1. 下載SQuirrel 客戶端 ,地址 http://squirrel-sql.sourceforge.net/
  2. 解壓縮,刪除 lib/ 下老版本的 phoenix-[oldversion]-client.jar檔案,將你剛剛下載的Phoenix資料夾下最新的檔案 拷貝過去;
  3. 啟動SQuirrel客戶端,選擇 Drivers-new driver ,名稱隨便,url格式: jdbc:phoenix:(zk地址) ,class name textbox 填寫org.apache.phoenix.jdbc.PhoenixDriver
  4. ok, 點選 connect即可完成連線

squirrel 客戶端的用法 和 Phoenix 自帶終端一樣,都是常見的sql語句,大家可以自己搭建練習。

四、 java client api 使用

java api 完全可以採用傳統的 jdbc 連線的形式,案例如官方提供:

建立test.java 類,內容如下:

在終端使用javac編譯,通過Phoenix客戶端執行,就能看到結果:

當然,在生產使用中,往往採用的是 spring mvc + mybaits 的框架來進行訪問的,Phoenix 完全支援這種形式,就像平常寫mysql、SqlServer一樣,對應的jdbc.properties中的驅動修改為 org.apache.phoenix.jdbc.PhoenixDriver 即可,其它的寫法通普通的一樣。

相關文章