This is an automated email from the ASF dual-hosted git repository.
peacewong pushed a commit to branch dev-1.3.2
in repository https://gitbox.apache.org/repos/asf/linkis.git
The following commit(s) were added to refs/heads/dev-1.3.2 by this push:
new de64fbd59 [ISSUES-4152]add error msg (#4332)
de64fbd59 is described below
commit de64fbd5920fa1778d06661e43d5fec9215a5fc9
Author: huangKai-2323 <[email protected]>
AuthorDate: Wed Mar 8 11:51:57 2023 +0800
[ISSUES-4152]add error msg (#4332)
---
linkis-dist/package/db/linkis_dml.sql | 1 +
linkis-dist/package/db/upgrade/1.3.2_schema/mysql/linkis_dml.sql | 4 +++-
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/linkis-dist/package/db/linkis_dml.sql
b/linkis-dist/package/db/linkis_dml.sql
index 54f2acf73..10545d7b5 100644
--- a/linkis-dist/package/db/linkis_dml.sql
+++ b/linkis-dist/package/db/linkis_dml.sql
@@ -396,6 +396,7 @@ INSERT INTO linkis_ps_error_code
(error_code,error_desc,error_regex,error_type)
INSERT INTO linkis_ps_error_code
(error_code,error_desc,error_regex,error_type) VALUES
('12012','集群队列实例数超过限制','Insufficient cluster queue instance',0);
INSERT INTO linkis_ps_error_code
(error_code,error_desc,error_regex,error_type) VALUES
('12013','资源不足导致启动引擎超时,您可以进行任务重试','wait for DefaultEngineConn',0);
INSERT INTO linkis_ps_error_code
(error_code,error_desc,error_regex,error_type) VALUES
('12014','请求引擎超时,可能是因为队列资源不足导致,请重试','wait for engineConn initial timeout',0);
+INSERT INTO linkis_ps_error_code
(error_code,error_desc,error_regex,error_type) VALUES
('12015','您设置的执行器内存已经超过了集群的限定值%s,请减少到限定值以下','is above the max threshold
(\\S+.+\\))',0);
INSERT INTO linkis_ps_error_code
(error_code,error_desc,error_regex,error_type) VALUES
('13001','Java进程内存溢出,建议优化脚本内容','OutOfMemoryError',0);
diff --git a/linkis-dist/package/db/upgrade/1.3.2_schema/mysql/linkis_dml.sql
b/linkis-dist/package/db/upgrade/1.3.2_schema/mysql/linkis_dml.sql
index cbfd73f62..17c58bee9 100644
--- a/linkis-dist/package/db/upgrade/1.3.2_schema/mysql/linkis_dml.sql
+++ b/linkis-dist/package/db/upgrade/1.3.2_schema/mysql/linkis_dml.sql
@@ -289,4 +289,6 @@ select @data_source_type_id := id from
`linkis_ps_dm_datasource_type` where `nam
INSERT INTO `linkis_ps_dm_datasource_type_key` (`data_source_type_id`, `key`,
`name`, `name_en`, `default_value`, `value_type`, `scope`, `require`,
`description`, `description_en`, `value_regex`, `ref_id`, `ref_value`,
`data_source`, `update_time`, `create_time`) VALUES (@data_source_type_id,
'address', '地址', 'Address', NULL, 'TEXT', NULL, 0,
'地址(host1:port1,host2:port2...)', 'Address(host1:port1,host2:port2...)', NULL,
NULL, NULL, NULL, now(), now());
INSERT INTO `linkis_ps_dm_datasource_type_key` (`data_source_type_id`, `key`,
`name`, `name_en`, `default_value`, `value_type`, `scope`, `require`,
`description`, `description_en`, `value_regex`, `ref_id`, `ref_value`,
`data_source`, `update_time`, `create_time`) VALUES (@data_source_type_id,
'databaseName', '数据库名(Database name)', 'Database name', NULL, 'TEXT', NULL, 0,
'数据库名(Database name)', 'Database name', NULL, NULL, NULL, NULL, now(), now());
-INSERT INTO linkis_ps_error_code
(error_code,error_desc,error_regex,error_type) VALUES ('43041','用户UDF函数 %s
加载失败,请检查后再执行','Invalid function (\\S+)',0);
\ No newline at end of file
+INSERT INTO linkis_ps_error_code
(error_code,error_desc,error_regex,error_type) VALUES ('43041','用户UDF函数 %s
加载失败,请检查后再执行','Invalid function (\\S+)',0);
+
+INSERT INTO linkis_ps_error_code
(error_code,error_desc,error_regex,error_type) VALUES
('12015','您设置的执行器内存已经超过了集群的限定值%s,请减少到限定值以下','is above the max threshold
(\\S+.+\\))',0);
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]