From 137a8970c535d181a2ca0f1089d0d641d9e3a26a Mon Sep 17 00:00:00 2001 From: heibaiying <31504331+heibaiying@users.noreply.github.com> Date: Thu, 4 Apr 2019 16:07:58 +0800 Subject: [PATCH] =?UTF-8?q?Update=20Hbase=E7=9A=84SQL=E5=B1=82=E2=80=94?= =?UTF-8?q?=E2=80=94Phoenix.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- notes/Hbase的SQL层——Phoenix.md | 47 ++++++++++++++-------------- 1 file changed, 24 insertions(+), 23 deletions(-) diff --git a/notes/Hbase的SQL层——Phoenix.md b/notes/Hbase的SQL层——Phoenix.md index e8d977a..5afb005 100644 --- a/notes/Hbase的SQL层——Phoenix.md +++ b/notes/Hbase的SQL层——Phoenix.md @@ -1,32 +1,33 @@ # Hbase的SQL中间层——Phoenix - - + + + ## 一、Phoenix简介 Phoenix是HBase的开源SQL层。使得您可以使用标准JDBC API而不是常规HBase客户端API来操作Hbases上的数据。 Phoenix完全使用Java编写,作为HBase内嵌的JDBC驱动。Phoenix查询引擎会将SQL查询转换为一个或多个HBase scan,并编排并行执行以生成标准的JDBC结果集,同时Phoenix还拥有二级索引等Hbase不具备的特性,这使得Phoenix具有极好的性能表现。 -