Skip to content

Commit b20c142

Browse files
authored
Merge pull request #118 from WeBankFinTech/1.0.0
1.0.0
2 parents dffd55f + 11adf76 commit b20c142

File tree

4 files changed

+129
-5
lines changed

4 files changed

+129
-5
lines changed

README-CH.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,20 @@
77

88
## 简介
99

10-
    Visualis是一个基于宜信的开源项目[Davinci](https://github.com/edp963/davinci)开发的数据可视化BI工具。现已被集成到数据应用开发门户[DataSphere Studio](https://github.com/WeBankFinTech/DataSphereStudio)中,此次发布的版本Visualis1.0.0-rc1版本支持Linkis1.1.1和DSS1.0.1版本
10+
    Visualis是一个基于宜信的开源项目[Davinci](https://github.com/edp963/davinci)开发的数据可视化BI工具。现已被集成到数据应用开发门户[DataSphere Studio](https://github.com/WeBankFinTech/DataSphereStudio)中,此次发布的版本Visualis1.0.0版本支持Linkis1.1.1和DSS1.1.0版本
1111

1212
    Visualis支持拖拽式报表定义、图表联动、钻取、全局筛选、多维分析、实时查询等数据开发探索的分析模式,并做了水印、数据质量校验等金融级增强。
1313

1414
## 功能特性
1515

16-
    基于达芬奇项目, Visualis与DataSphere Studio 1.0.1集成,实现了以下特性:
16+
    基于达芬奇项目, Visualis与DataSphere Studio 1.1.0集成,实现了以下特性:
1717
* 图表水印
1818
* 数据质量校验
1919
* 图表展示优化
2020
* 对接Linkis计算中间件
2121
* Scriptis结果集一键可视化
2222
* 外部应用参数支持
23-
* Widget/Dashboard/Display集成为DataSphere Studio的工作流节点
23+
* View/Widget/Dashboard/Display集成为DataSphere Studio的工作流节点
2424

2525
    Visualis同时支持以下Davinci v0.3版本的原生功能:
2626
* **数据源**
@@ -91,6 +91,9 @@
9191

9292
[虚拟视图设计文档](visualis_docs/zh_CN/Visualis_visual_doc_cn.md)
9393

94+
## 升级文档
95+
[升级文档](visualis_docs/zh_CN/visualis_update_cn.md)
96+
9497
## 交流贡献
9598

9699
![communication](images/communication.png)

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ English | [中文](README-CH.md)
77

88
## Introduction
99

10-
    Visualis is an open source project based on Yixin [davinci](https://github.com/edp963/davinci) Developed data visualization Bi tool. It has been integrated into the data application development portal [datasphere studio](https://github.com/WeBankFinTech/DataSphereStudio) In this release, visualis1.0.0-rc1 supports linkis1.1.1 and dss1.0.1.
10+
    Visualis is an open source project based on Yixin [davinci](https://github.com/edp963/davinci) Developed data visualization Bi tool. It has been integrated into the data application development portal [datasphere studio](https://github.com/WeBankFinTech/DataSphereStudio) In this release, visualis1.0.0 supports linkis1.1.1 and dss1.1.0.
1111
    Visualis provides data development/exploration functionalities including drag & drop style report definition, diagram correlation analysis, data drilling, global filtering, multi-dimensional analysis and real-time query, with the enhancement of report watermark and data quality management.
1212

1313
## Features
@@ -19,7 +19,7 @@ Based on Davinci project, Visualis achieves below features with DataSphere Studi
1919
* Linkis adaption for big-data queries
2020
* One-click visualization from Scriptis
2121
* External application parameters support
22-
* Dashboard/Display as an appjoint of DataSphere Studio workflow
22+
* View/Widget/Dashboard/Display as an appjoint of DataSphere Studio workflow
2323

2424
Visualis also supports most of the original features of Davinci v0.3.
2525
* Data Source Support
@@ -86,6 +86,9 @@ For more details: [Visualis User Manul Doc](./visualis_docs/en_US/Visualis_user_
8686

8787
[Virtual View Design Documentation](visualis_docs/en_US/Visualis_visual_doc_en.md)
8888

89+
## Upgrade documentation
90+
[Upgrade Documentation](visualis_docs/en_US/visualis_update_en.md)
91+
8992
## Communication
9093

9194
![communication](images/communication.png)
Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
Visualis 1.0.0-rc1 upgrading to 1.0.0 using documentation
2+
3+
---
4+
5+
6+
7+
## 1. The upgrade steps are mainly divided into:
8+
9+
- Service stop
10+
- Execute database upgrade script
11+
- Replace the visualis deployment directory with a new version package
12+
- Add and modify configuration files
13+
- Service startup
14+
15+
#### 1. Service stop
16+
17+
Enter the deployment directory of Visualis, and execute the command under the directory to stop the services of Visualis:
18+
```shell
19+
cd ${VISUALIS_INSTALL_PATH}
20+
sh bin/stop-visualis-server.sh
21+
```
22+
23+
#### 2. Execute database upgrade SQL script
24+
25+
After linking the visualis database, execute the following SQL:
26+
```sql
27+
alter table linkis_user rename to visualis_user;
28+
```
29+
30+
#### 3. Replace the visualis deployment directory with a new version package
31+
32+
- Back up the deployment directory of the old version of visualis. Take this directory as an example:
33+
```shell
34+
mv /appcom/Install/VisualisInstall/lib /appcom/Install/VisualisInstall/lib-bak
35+
```
36+
- Refer to [visualis installation and deployment document](./visualis_deploy_doc_cn.md). After compiling and packaging, replace lib.
37+
38+
39+
40+
#### 4. Modify configuration
41+
42+
- Visualis1.0.0-rc1 version is compatible with cookies in order to be compatible with dss1.0.1 and linkis1.1.1. You need to delete the following parameters and use the linkers configured by default in the code: linkis_user_session_ticket_id_v1 value.
43+
44+
```properties
45+
#Delete the following configuration
46+
wds. linkis. session. ticket. key=bdp-user-ticket-id
47+
wds. dss. visualis. ticketid=bdp-user-ticket-id
48+
49+
```
50+
- After the configuration modification is completed, you need to reinstall visualis appconn on the DSS side. To install visualis1.0.0 appconn, refer to [visualis appconn installation](./visualis_appconn_install_cn.md).
51+
52+
53+
54+
55+
#### 5. Service startup
56+
    Now you can start the new version of Visualis services. Execute the command to start the services:
57+
```shell
58+
sh bin/start-visualis-server. sh
59+
```
Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
Visualis 1.0.0-rc1 upgrading to 1.0.0 using documentation
2+
3+
---
4+
5+
6+
7+
## 1. The upgrade steps are mainly divided into:
8+
9+
- Service stop
10+
- Execute database upgrade script
11+
- Replace the visualis deployment directory with a new version package
12+
- Add and modify configuration files
13+
- Service startup
14+
15+
#### 1. Service stop
16+
17+
Enter the deployment directory of Visualis, and execute the command under the directory to stop the services of Visualis:
18+
```shell
19+
cd ${VISUALIS_INSTALL_PATH}
20+
sh bin/stop-visualis-server.sh
21+
```
22+
23+
#### 2. Execute database upgrade SQL script
24+
25+
After linking the visualis database, execute the following SQL:
26+
```sql
27+
alter table linkis_user rename to visualis_user;
28+
```
29+
30+
#### 3. Replace the visualis deployment directory with a new version package
31+
32+
- Back up the deployment directory of the old version of visualis. Take this directory as an example:
33+
```shell
34+
mv /appcom/Install/VisualisInstall/lib /appcom/Install/VisualisInstall/lib-bak
35+
```
36+
- Refer to [visualis installation and deployment document](./visualis_deploy_doc_cn.md). After compiling and packaging, replace lib.
37+
38+
39+
40+
#### 4. Modify configuration
41+
42+
- Visualis1.0.0-rc1 version is compatible with cookies in order to be compatible with dss1.0.1 and linkis1.1.1. You need to delete the following parameters and use the linkers configured by default in the code: linkis_user_session_ticket_id_v1 value.
43+
44+
```properties
45+
#Delete the following configuration
46+
wds. linkis. session. ticket. key=bdp-user-ticket-id
47+
wds. dss. visualis. ticketid=bdp-user-ticket-id
48+
49+
```
50+
- After the configuration modification is completed, you need to reinstall visualis appconn on the DSS side. To install visualis1.0.0 appconn, refer to [visualis appconn installation](./visualis_appconn_install_cn.md).
51+
52+
53+
54+
55+
#### 5. Service startup
56+
    Now you can start the new version of Visualis services. Execute the command to start the services:
57+
```shell
58+
sh bin/start-visualis-server. sh
59+
```

0 commit comments

Comments
 (0)