您好,登錄后才能下訂單哦!
這篇文章主要介紹了多維數據分析引擎Saiku怎么安裝使用,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
一、Saiku的下載安裝和啟動
下載地址:
https://community.meteorite.bi/
下載后解壓,即完成安裝。
修改環境變量為安裝目錄下的tomcat目錄:
CATALINA_HOME = D:\yizit\software\saiku-server\tomcat
執行start-saiku.bat啟動saiku,啟動后命令行窗口不能關閉。命令窗口中文亂碼情況,需要修改start-saiku.bat文件,將UTF-8更改為GBK。
在瀏覽器地址欄輸入http://localhost:8080/upload.html,出現以下要求上傳License的頁面
License獲取網址:https://licensing.meteorite.bi/login
先點擊sign up進行用戶注冊,注冊后收到確認郵件,在郵件里點擊進入License獲取頁面
先創建公司,再創建License,將生成的License保存到本地文件。
在上傳License頁面將License文件上傳,需要帳戶admin,admin。
前往localhost:8080,輸入admin,admin,即可進入Saiku系統。
二、使用示例
將需要的數據庫驅動jar包復制到D:\yizit\software\saiku-server\tomcat\webapps\saiku\WEB-INF\lib目錄下,這里連接的是Oracle數據庫。
一個最為簡單的例子是直接使用Oracle數據庫里自帶的SCOTT用戶,對員工表EMP和部門表DEPT構建模型,模式文件如下:
<Schema name="scott">
<Cube name="Cube_scott" visible="true" cache="true" enabled="true">
<Table name="EMP" schema="SCOTT">
</Table>
<Dimension type="StandardDimension" visible="true" foreignKey="DEPTNO" highCardinality="false" name="Dim_dept" caption="部门维度">
<Hierarchy visible="true" hasAll="true" primaryKey="DEPTNO">
<Table name="DEPT" schema="SCOTT">
</Table>
<Level name="Level_deptno" visible="true" table="DEPT" column="DEPTNO" type="String" uniqueMembers="false" levelType="Regular" hideMemberIf="Never" caption="部门编号">
</Level>
<Level name="Level_deptname" visible="true" column="DNAME" type="String" uniqueMembers="false" levelType="Regular" hideMemberIf="Never" caption="部门名称">
</Level>
<Level name="Level_loc" visible="true" column="LOC" type="String" uniqueMembers="false" levelType="Regular" hideMemberIf="Never" caption="所在地区">
</Level>
</Hierarchy>
</Dimension>
<Measure name="SalAmount" column="SAL" aggregator="sum" caption="工资总额" visible="true">
</Measure>
<Measure name="EmpQuantity" column="EMPNO" aggregator="count" caption="员工数量" visible="true">
</Measure>
</Cube>
</Schema>
在Saiku中查詢展示結果
下面再搭建一個典型的測試用例:
1、數據庫表準備
創建表空間
create tablespace sales_tbs datafile 'd:\oradata\mes\sales_tbs01.dbf' size 100m;
創建用戶并授權
create user sales identified by sales default tablespace sales_tbs;
grant connect, resource to sales;
alter user sales quota unlimited on sales_tbs;
創建表,插入測試數據
/**產品類別表*/
create table protype(protype_id number, protype_name varchar(32));
alter table protype add constraint pk_protype primary key(protype_id);
insert into protype values(1, '硬件');
insert into protype values(2, '軟件');
insert into protype values(3, '服務');
commit;
/**產品表*/
create table product(pro_id number, protype_id number, pro_name varchar(32));
alter table product add constraint pk_product primary key(pro_id);
insert into product values(101, 1, '工控機');
insert into product values(102, 1, '條碼打印機');
insert into product values(103, 1, '顯示器');
insert into product values(201, 2, 'MES');
insert into product values(202, 2, 'LES');
insert into product values(203, 2, 'GoodMES');
insert into product values(204, 2, 'VEDI');
insert into product values(205, 2, 'Flexsite');
insert into product values(301, 3, '電話遠程服務');
insert into product values(302, 3, '現場服務');
commit;
/**用戶表*/
create table customer(cus_id number, cust_name varchar2(50), gender char(1));
alter table customer add constraint pk_customer primary key(cus_id);
insert into customer values(1001, '王某某', '1');
insert into customer values(1002, '張某某', '0');
insert into customer values(1003, '李某某', '1');
insert into customer values(1004, '趙某某', '1');
commit;
/**銷售表*/
create table sale(sale_id number, pro_id number, cus_id number, unit_price number, quantity number);
alter table sale add constraint pk_sale primary key(sale_id);
insert into sale values(1, 101, 1001, 5000, 10);
insert into sale values(2, 202, 1003, 80000, 3);
insert into sale values(3, 204, 1003, 45000, 3);
insert into sale values(4, 102, 1004, 8000, 5);
insert into sale values(5, 201, 1001, 120000, 2);
insert into sale values(6, 205, 1001, 7000, 4);
insert into sale values(7, 301, 1002, 30000, 1);
insert into sale values(8, 302, 1002, 2000, 10);
insert into sale values(9, 101, 1004, 5000, 2);
insert into sale values(10, 103, 1004, 2000, 2);
insert into sale values(11, 201, 1002, 2000, 1);
commit;
2、在Schema Workbench中構建多維數據的立方體模型
模式文件如下(Schema Workbench的使用可參考另一篇文章):
<Schema name="sales">
<Cube name="Cube_sales" visible="true" cache="true" enabled="true">
<Table name="SALE" schema="SALES">
</Table>
<Dimension type="StandardDimension" visible="true" foreignKey="CUS_ID" highCardinality="false" name="Dim_Cust" caption="客户维度">
<Hierarchy visible="true" hasAll="true" allMemberName="AllCustomer" allMemberCaption="所有客户" primaryKey="CUS_ID">
<Table name="CUSTOMER" schema="SALES">
</Table>
<Level name="Level_Gender" visible="true" column="GENDER" type="String" uniqueMembers="false" levelType="Regular" hideMemberIf="Never" caption="客户性别">
</Level>
<Level name="Level_Name" visible="true" column="CUST_NAME" type="String" uniqueMembers="false" levelType="Regular" hideMemberIf="Never" caption="客户姓名">
</Level>
</Hierarchy>
</Dimension>
<Dimension type="StandardDimension" visible="true" foreignKey="PRO_ID" highCardinality="false" name="Dim_Product" caption="产品维度">
<Hierarchy visible="true" hasAll="true" allMemberName="AllProduct" allMemberCaption="所有产品" primaryKey="PRO_ID" primaryKeyTable="PRODUCT">
<Join leftKey="PROTYPE_ID" rightKey="PROTYPE_ID">
<Table name="PRODUCT" schema="SALES">
</Table>
<Table name="PROTYPE" schema="SALES">
</Table>
</Join>
<Level name="Level_ProductName" visible="true" table="PRODUCT" column="PRO_ID" nameColumn="PRO_NAME" type="String" uniqueMembers="true" levelType="Regular" hideMemberIf="Never" caption="产品名称">
</Level>
<Level name="Level_ProductType" visible="true" table="PROTYPE" column="PROTYPE_ID" nameColumn="PROTYPE_NAME" type="String" uniqueMembers="true" levelType="Regular" hideMemberIf="Never" caption="产品类别">
</Level>
</Hierarchy>
</Dimension>
<Measure name="SaleQuantity" column="QUANTITY" datatype="Numeric" aggregator="sum" caption="销售数量" visible="true">
</Measure>
<Measure name="SaleAmount" datatype="Numeric" aggregator="sum" caption="销售总额" visible="true">
<MeasureExpression>
<SQL dialect="generic">
<![CDATA[(UNIT_PRICE*QUANTITY)]]>
</SQL>
</MeasureExpression>
</Measure>
<CalculatedMember name="AvgPrice" formatString="¥#,##0.00" caption="平均单价" formula="[Measures].SaleAmount/[Measures].SaleQuantity" dimension="Measures" visible="true">
</CalculatedMember>
</Cube>
</Schema>
3、Saiku中添加模式和數據源
進入管理控制臺
http://localhost:8080
添加模式文件,注意模式名最好和Schema文件中的Schema name一致,上傳成功后應提示Upload Successsful!
添加數據源
4、添加完成后注銷并重新登陸,如果配置和數據庫連接無誤,在多維數據列表里就可以看到添加的新模型
選取指標和維度,可以看到數據分析結果
直方圖展示
曲線圖展示
熱點圖展示
感謝你能夠認真閱讀完這篇文章,希望小編分享的“多維數據分析引擎Saiku怎么安裝使用”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。