提前安装好ZK集群、hadoop集群、Hbase集群
从对应的地址下载:http://mirrors.cnnic.cn/apache/phoenix/
这里我们使用的是:
phoenix-4.8.2-HBase-1.2-bin.tar.gz
将对应的安装包上传到对应的Hbase集群其中一个服务器的一个目录下
解压:tar -zxvf phoenix-4.8.2-HBase-1.2-bin.tar.gz -C /var/local
重命名:mv phoenix-4.8.2-HBase-1.2-bin phoenix
(1) 将phoenix目录下的phoenix-4.8.2-HBase-1.2-server.jar、
phoenix-core-4.8.2-HBase-1.2.jar拷贝到各个 hbase的lib目录下。
端口可以省略
[root@itcast01 bin]# ./sqlline.py itcast01:2181
出现如下界面说明启动成功
+------------+--------------+----------------+---------------+----------+------------+-----------------+
| TABLE_CAT | TABLE_SCHEM | TABLE_NAME | TABLE_TYPE | REMARKS | TYPE_NAME | SELF_REFERENCIN |
+------------+--------------+----------------+---------------+----------+------------+-----------------+
| | SYSTEM | CATALOG | SYSTEM TABLE | | | |
| | SYSTEM | FUNCTION | SYSTEM TABLE | | | |
| | SYSTEM | SEQUENCE | SYSTEM TABLE | | | |
| | SYSTEM | STATS | SYSTEM TABLE | | | | |
+------------+--------------+----------------+---------------+----------+------------+-----------------+
Phoenix可以有4种方式调用:
内容如下
CREATE TABLE IF NOT EXISTS user_phoenix ( state CHAR(2) NOT NULL, city VARCHAR NOT NULL, population BIGINT CONSTRAINT my_pk PRIMARY KEY (state, city)); |
NY,New York,8143197 CA,Los Angeles,3844829 IL,Chicago,2842518 TX,Houston,2016582 PA,Philadelphia,1463281 AZ,Phoenix,1461575 TX,San Antonio,1256509 CA,San Diego,1255540 TX,Dallas,1213825 CA,San Jose,912332 |
内容为:
SELECT state as "State",count(city) as "City Count",sum(population) as "Population Sum" FROM user_phoenix GROUP BY state ORDER BY sum(population) DESC; |
/var/local/phoenix/bin/psql.py itcast01:2181 user_phoenix.sql user_phoenix.csv user_phoenix_query.sql
|
这条命令同时做了三件事:创建表、插入数据、查询结果
用Hbase shell 看下会发现多出来一个 USER_PHOENIX 表,用scan 命令查看一下这个表的数据
hbase(main):054:0> scan 'USER_PHOENIX' ROW COLUMN+CELL AZPhoenix column=0:POPULATION, timestamp=1484736243467, value=\x80\x00\x00\x00\x00\x16 MG AZPhoenix column=0:_0, timestamp=1484736243467, value=x CALos Angeles column=0:POPULATION, timestamp=1484736243467, value=\x80\x00\x00\x00\x00:\xA A\xDD CALos Angeles column=0:_0, timestamp=1484736243467, value=x CASan Diego column=0:POPULATION, timestamp=1484736243467, value=\x80\x00\x00\x00\x00\x13 (t CASan Diego column=0:_0, timestamp=1484736243467, value=x CASan Jose column=0:POPULATION, timestamp=1484736243467, value=\x80\x00\x00\x00\x00\x0D \xEB\xCC CASan Jose column=0:_0, timestamp=1484736243467, value=x ILChicago column=0:POPULATION, timestamp=1484736243467, value=\x80\x00\x00\x00\x00+_\x 96 ILChicago column=0:_0, timestamp=1484736243467, value=x PAPhiladelphia column=0:POPULATION, timestamp=1484736243467, value=\x80\x00\x00\x00\x00\x16 S\xF1 PAPhiladelphia column=0:_0, timestamp=1484736243467, value=x TXDallas column=0:POPULATION, timestamp=1484736243467, value=\x80\x00\x00\x00\x00\x12 \x85\x81 TXDallas column=0:_0, timestamp=1484736243467, value=x TXHouston column=0:POPULATION, timestamp=1484736243467, value=\x80\x00\x00\x00\x00\x1E \xC5F TXHouston column=0:_0, timestamp=1484736243467, value=x TXSan Antonio column=0:POPULATION, timestamp=1484736243467, value=\x80\x00\x00\x00\x00\x13 ,= TXSan Antonio column=0:_0, timestamp=1484736243467, value=x |
结论:
./sqlline.py itcast01
0: jdbc:phoenix:itcast01>
然后执行相关的命令
执行 !quit
使用help可以打印出所有命令
0: jdbc:phoenix:itcast01> help !all Execute the specified SQL against all the current connections !autocommit Set autocommit mode on or off !batch Start or execute a batch of statements !brief Set verbose mode off !call Execute a callable statement !close Close the current connection to the database !closeall Close all current open connections !columns List all the columns for the specified table !commit Commit the current transaction (if autocommit is off) !connect Open a new connection to the database. !dbinfo Give metadata information about the database !describe Describe a table !dropall Drop all tables in the current database !exportedkeys List all the exported keys for the specified table !go Select the current connection !help Print a summary of command usage !history Display the command history !importedkeys List all the imported keys for the specified table !indexes List all the indexes for the specified table !isolation Set the transaction isolation for this connection !list List the current connections !manual Display the SQLLine manual !metadata Obtain metadata information !nativesql Show the native SQL for the specified statement !outputformat Set the output format for displaying results (table,vertical,csv,tsv,xmlattrs,xmlelements) !primarykeys List all the primary keys for the specified table !procedures List all the procedures !properties Connect to the database specified in the properties file(s) !quit Exits the program !reconnect Reconnect to the database !record Record all output to the specified file !rehash Fetch table and column names for command completion !rollback Roll back the current transaction (if autocommit is off) !run Run a script from the specified file !save Save the current variabes and aliases !scan Scan for installed JDBC drivers !script Start saving a script to a file !set Set a sqlline variable |
数据准备然后我们来建立一个映射表,映射我之前建立过的一个hbase表 employee.有2个列族 company、family
create 'employee','company','family' put 'employee','row1','company:name','ted' put 'employee','row1','company:position','worker' put 'employee','row1','family:tel','13600912345' put 'employee','row2','company:name','michael' put 'employee','row2','company:position','manager' put 'employee','row2','family:tel','1894225698' scan 'employee' |
在建立映射表之前要说明的是,Phoenix是大小写敏感的,并且所有命令都是大写,如果你建的表名没有用双引号括起来,那么无论你输入的是大写还是小写,建立出来的表名都是大写的,如果你需要建立出同时包含大写和小写的表名和字段名,请把表名或者字段名用双引号括起来。
你可以建立读写的表或者只读的表,他们的区别如下
0: jdbc:phoenix:itcast01>CREATE TABLE IF NOT EXISTS "employee" ("no" VARCHAR(10) NOT NULL PRIMARY KEY, "company"."name" VARCHAR(30),"company"."position" VARCHAR(20), "family"."tel" VARCHAR(20), "family"."age" INTEGER); |
这个语句有几个注意点
建立好后,查询一下数据
0: jdbc:phoenix:itcast01> SELECT * FROM "employee"; +-------+----------+-----------+--------------+-------+ | no | name | position | tel | age | +-------+----------+-----------+--------------+-------+ | row1 | ted | worker | 13600912345 | null | | row2 | michael | manager | 1894225698 | null | +-------+----------+-----------+--------------+-------+ |
插入或者更改数据在phoenix中使用upsert关键字,
如果表中不存在该数据则插入,否则更新
插入: 0: jdbc:phoenix:itcast01> upsert INTO "employee" VALUES ('row3','billy','worker','16974681345',33); 修改数据: 0: jdbc:phoenix:itcast01:2181> UPSERT INTO "employee" ("no","tel") VALUES ('row2','13588888888');
查询: 0: jdbc:phoenix:itcast01:2181> select * from "employee"; +-------+----------+-----------+--------------+-------+ | no | name | position | tel | age | +-------+----------+-----------+--------------+-------+ | row1 | ted | worker | 13600912345 | null | | row2 | michael | manager | 13588888888 | null | | row3 | billy | worker | 16974681345 | 33 | +-------+----------+-----------+--------------+-------+ 3 rows selected (0.06 seconds)
|
hbase(main):056:0> scan 'employee' ROW COLUMN+CELL row1 column=company:_0, timestamp=1484730892661, value= row1 column=company:name, timestamp=1484730892527, value=ted row1 column=company:position, timestamp=1484730892565, value=worker row1 column=family:tel, timestamp=1484730892661, value=13600912345 row2 column=company:_0, timestamp=1484730892762, value= row2 column=company:name, timestamp=1484730892702, value=michael row2 column=company:position, timestamp=1484730892730, value=manager row2 column=family:tel, timestamp=1484730892762, value=13588888888 row3 column=company:_0, timestamp=1484809036587, value=x row3 column=company:name, timestamp=1484809036587, value=billy row3 column=company:position, timestamp=1484809036587, value=worker row3 column=family:age, timestamp=1484809036587, value=\x80\x00\x00! row3 column=family:tel, timestamp=1484809036587, value=16974681345 |
从网址http://www.squirrelsql.org/下载相应版本的squirrel的安装jar包,比如下载squirrel-sql-3.7-standard.jar window版本。
Window下:通过cmd进入window控制台,
输入 java -jar squirrel-sql-3.7-standard.jar
显示安装界面。
解压的phoenix-4.7.0-HBase-1.1-bin.tar.gz包的主目录下将如下几个jar包拷贝到squirrel安装目录的lib下
在安装目录下双击squirrel-sql.bat、点击左侧的Drivers,添加图标
配置说明:
在出现的窗口中填写如下项
Name:就是个名字任意取就可以,这里使用phoenix
Example URL :jdbc:phoenix:itcast01:2181(这里是你的phonenix的jdbc地址,注意端口也可以不写,多个用逗号隔开)
Class Name:org.apache.phoenix.jdbc.PhoenixDriver
点击Aiiasses,点击右边的添加图标
配置说明:
这里还是名字随意写(这里使用phoenix),driver要选择刚才配置的可用的driver,我们刚才配置的是phoenix
url这里就是连接phonex的url选择了phoenix的driver以后自动出现也可以改,user name就是phoenix连接的主机的用户名,密码就是该机器的密码,点击自动登录
然后点击test,显示连接成功即可(在这里最好不要直接点OK,先点Test,连接成功了再OK)
点击OK按钮