Skip to content

Commit 312fe45

Browse files
authored
Merge branch 'main' into front-sensitive-fix
2 parents 2c19c3b + ffa724e commit 312fe45

File tree

267 files changed

+36080
-934
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

267 files changed

+36080
-934
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,8 @@ streamis-appconn/target
2828
/streamis-jobmanager/streamis-job-log/job-log-collector/xspark-streamis-log-collector/target/
2929
/streamis-jobmanager/streamis-job-log/streamis-job-log-common/target/
3030
/streamis-jobmanager/streamis-job-log/streamis-job-log-server/target/
31+
/streamis-jobmanager/streamis-job-errorcode/target/
32+
/streamis-jobmanager/streamis-job-audit-log/target/
33+
34+
**/._*
35+
**/.flattened-pom.xml

README-ZH.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Dimension节点、Transform节点、Sink节点 和 [Visualis](https://github.com
5252

5353
## 依赖的生态组件
5454

55-
| 依赖的应用工具 | 描述 | Streamis 兼容版本 |
55+
| 依赖的应用工具 | 描述 | Streamis 兼容版本 |
5656
|--------------|---------------------------------------------------------------|---------------------------------------------|
5757
| [DataSphereStudio](https://github.com/WeBankFinTech/DataSphereStudio) | 数据应用开发管理集成框架。以工作流式的图形化拖拽开发体验,将满足从数据交换、脱敏清洗、分析挖掘、质量检测、可视化展现、定时调度到数据输出应用等,数据应用开发全流程场景需求。 | >= DSS1.1.2(已发布) |
5858
| [Linkis](https://github.com/apache/incubator-linkis) | 计算中间件 Apache Linkis,通过提供 REST/WebSocket/JDBC/SDK 等标准接口,上层应用可以方便地连接访问 MySQL/Spark/Hive/Presto/Flink 等底层引擎。 | >= Linkis1.4.0(已发布) |

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ The Dimension node, Transform node, Sink node and [Visualis](https://github.com/
5252

5353
## Depended ecosystems
5454

55-
| Depended Component | Description | Streamis compatibility |
55+
| Depended Component | Description | Streamis compatibility |
5656
| -------------- | -------------------------------------------------------------- |------------------------------|
5757
| [DataSphereStudio](https://github.com/WeBankFinTech/DataSphereStudio) | Data application development management framework. With a unified UI, the workflow-like graphical drag-and-drop development experience meets the entire lifecycle of data application development from data import, desensitization cleaning, data analysis, data mining, quality inspection, visualization, scheduling to data output applications, etc. | >= DSS1.1.2 (Released) |
5858
| [Linkis](https://github.com/apache/linkis) | Apache Linkis, builds a layer of computation middleware, by using standard interfaces such as REST/WS/JDBC provided by Linkis, the upper applications can easily access the underlying engines such as MySQL/Spark/Hive/Presto/Flink, etc. | >= Linkis1.4.0 (Released) |
@@ -115,7 +115,7 @@ please refer to [Streamis Installation and Deployment Document](docs/en_US/0.3.0
115115

116116
       For any questions or suggestions, please kindly submit an [issue](https://github.com/WeBankFinTech/Streamis/issues).
117117

118-
       You can scan the QR code below to join our WeChat group to get more immediate response.
118+
       You can scan the QR code below to join our WeChat and QQ group to get more immediate response.
119119

120120
![comminicate](images/zh_CN/readme/communication.png)
121121

assembly/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<artifactId>streamis</artifactId>
2222
<groupId>com.webank.wedatasphere.streamis</groupId>
23-
<version>0.3.0</version>
23+
<version>0.3.1</version>
2424
</parent>
2525
<modelVersion>4.0.0</modelVersion>
2626

conf/config.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,6 @@ GATEWAY_PORT=9001
4040
STREAMIS_SERVER_INSTALL_IP=127.0.0.1
4141
STREAMIS_SERVER_INSTALL_PORT=9400
4242

43-
STREAMIS_VERSION=0.3.0
43+
STREAMIS_VERSION=0.3.1
4444

4545
STREAMIS_FILE_NAME="STREAMIS-$STREAMIS_VERSION"

db/streamis_ddl.sql

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,7 @@ CREATE TABLE `linkis_stream_task` (
222222
`submit_user` varchar(50) DEFAULT NULL,
223223
`linkis_job_id` varchar(200) DEFAULT NULL,
224224
`linkis_job_info` mediumtext,
225+
`job_start_config` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT 'streamis job startup config',
225226
PRIMARY KEY (`id`) USING BTREE
226227
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='任务表';
227228

@@ -252,9 +253,39 @@ CREATE TABLE `linkis_stream_project_privilege` (
252253
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='项目权限表';
253254

254255

256+
DROP TABLE IF EXISTS `linkis_stream_error_code`;
257+
258+
CREATE TABLE `linkis_stream_error_code` (
259+
`id` bigint(20) NOT NULL AUTO_INCREMENT,
260+
`error_code` varchar(50) COLLATE utf8_bin NOT NULL,
261+
`error_desc` varchar(1024) COLLATE utf8_bin NOT NULL,
262+
`error_regex` varchar(1024) COLLATE utf8_bin DEFAULT NULL,
263+
`error_type` int(3) DEFAULT '0',
264+
PRIMARY KEY (`id`)
265+
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
266+
267+
DROP TABLE IF EXISTS `linkis_stream_audit_log`;
268+
269+
CREATE TABLE `linkis_stream_audit_log` (
270+
`id` bigint(20) NOT NULL AUTO_INCREMENT,
271+
`user` varchar(100) COLLATE utf8_bin DEFAULT NULL,
272+
`proxy_user` varchar(100) COLLATE utf8_bin DEFAULT NULL,
273+
`api_name` varchar(100) COLLATE utf8_bin DEFAULT NULL,
274+
`api_desc` varchar(100) COLLATE utf8_bin DEFAULT NULL,
275+
`api_type` varchar(100) COLLATE utf8_bin DEFAULT NULL,
276+
`operate_time` datetime DEFAULT NULL,
277+
`input_parameters` text COLLATE utf8_bin,
278+
`output_parameters` text COLLATE utf8_bin,
279+
`project_name` varchar(100) COLLATE utf8_bin DEFAULT NULL,
280+
`client_ip` varchar(100) COLLATE utf8_bin DEFAULT NULL,
281+
`cost_time_mills` bigint(20) NULL,
282+
PRIMARY KEY (`id`)
283+
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
284+
285+
255286
ALTER TABLE `linkis_stream_project` ADD create_time datetime DEFAULT NULL;
256287
ALTER TABLE `linkis_stream_project` ADD last_update_by varchar(50) DEFAULT NULL;
257288
ALTER TABLE `linkis_stream_project` ADD last_update_time datetime DEFAULT NULL;
258289
ALTER TABLE `linkis_stream_project` ADD is_deleted tinyint unsigned DEFAULT 0;
259-
290+
ALTER TABLE linkis_stream_project_files ADD source varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL;
260291
SET FOREIGN_KEY_CHECKS = 1;

0 commit comments

Comments
 (0)