wen-hemin commented on a change in pull request #5390:
URL: https://github.com/apache/dolphinscheduler/pull/5390#discussion_r630180526
##########
File path: sql/dolphinscheduler_mysql.sql
##########
@@ -704,6 +805,7 @@ CREATE TABLE `t_ds_task_instance` (
`retry_times` int(4) DEFAULT '0' COMMENT 'task retry times',
`pid` int(4) DEFAULT NULL COMMENT 'pid of task',
`app_link` text COMMENT 'yarn app id',
+ `task_params` text COMMENT 'job custom parameters',
Review comment:
text -> longtext
##########
File path: sql/dolphinscheduler_mysql.sql
##########
@@ -391,59 +391,162 @@ CREATE TABLE `t_ds_error_command` (
-- ----------------------------
DROP TABLE IF EXISTS `t_ds_process_definition`;
CREATE TABLE `t_ds_process_definition` (
- `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'key',
- `name` varchar(255) DEFAULT NULL COMMENT 'process definition name',
+ `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'self-increasing id',
+ `code` bigint(20) NOT NULL COMMENT 'encoding',
+ `name` varchar(200) DEFAULT NULL COMMENT 'process definition name',
Review comment:
The length of the field should be the same as before.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]