前言:
解決了:
hbase + phoenix與 hadoop + hive:
2.1 上傳安裝包到linux系統,並解壓
cd /export/software
tar -xvzf apache-phoenix-5.0.0-hbase-2.0-bin.tar.gz -c /export/server/
2.2 將phoenix的所有jar包新增到所有hbase regionserver和master的複製到hbase的lib目錄# 拷貝jar包到hbase lib目錄
cp /export/server/apache-phoenix-5.0.0-hbase-2.0-bin/phoenix-*.jar /export/server/hbase-2.1.0/lib/
# 進入到hbase lib 目錄
cd /export/server/hbase-2.1.0/lib/
# 分發jar包到每個hbase 節點
scp phoenix-*.jar node2.xxyl.cn:$pwd
##自己主機配置的網域名稱
scp phoenix-*.jar node3.xxyl.cn:$pwd
3.3 修改配置檔案cd /export/server/hbase-2.1.0/conf/
vim hbase-site.xml
------
# 1. 將以下配置新增到 hbase-site.xml 後邊
<
!-- 支援hbase命名空間對映 -->
true
<
!-- 支援索引預寫日誌編碼 -->
hbase.regionserver.wal.codec
org.apache.hadoop.hbase.regionserver.wal.indexedwaleditcodec
# 2. 將hbase-site.xml分發到每個節點
scp hbase-site.xml node2.xxyl.cn:$pwd
scp hbase-site.xml node3.xxyl.cn:$pwd
3.4 將配置後的hbase-site.xml拷貝到phoenix的bin目錄cp /export/server/hbase-2.1.0/conf/hbase-site.xml /export/server/apache-phoenix-5.0.0-hbase-2.0-bin/bin/
#重新啟動hbase
stop-hbase.sh
start-hbase.sh
3.5 啟動phoenix客戶端,連線phoenix servercd /export/server/apache-phoenix-5.0.0-hbase-2.0-bin/
bin/sqlline.py node1.xxyl.cn:2181
# 輸入!table檢視phoenix中的表
!table
hbase的webui發現多了6張表:
到此 phoenix安裝結束!!!
Apache Phoenix的安裝及簡單地操作
apache phoenix的安裝 單機版hbase 2.解壓安裝包到 opt下並改名 3.修改配置 4.啟動phoenix及一些簡單操作 我使用的是apache phoenix 4.14.0 cdh5.14.2 bin.tar.gz版本 tar zxvf apache phoenix 4.14.0...
android PopupWindow 的簡單使用
簡單的介紹下 android popupwindwo的使用。因為用到了,所以做個記錄。here we go android的對話方塊有兩種 popupwindow和alertdialog。它們的不同點在於 popupwindow的位置按照有無偏移分,可以分為偏移和無偏移兩種 按照參照物的不同,可以分...
CMFCEditBrowseCtrl的簡單使用
在visual studio2010和visual studio2008 sp1中,微軟採用了bcg庫對應用程式介面進行美化,其中cmfceditbrowsectrl控制項可以實現在edit控制項中瀏覽開啟檔案或資料夾的功能。1.從工具箱中拖拽乙個mfc editbrowse control到窗體中...