|
@@ -339,7 +339,7 @@ CREATE TABLE `t_ds_command` (
|
|
|
`start_time` datetime DEFAULT NULL COMMENT 'start time',
|
|
|
`executor_id` int(11) DEFAULT NULL COMMENT 'executor id',
|
|
|
`update_time` datetime DEFAULT NULL COMMENT 'update time',
|
|
|
- `process_instance_priority` int(11) DEFAULT NULL COMMENT 'process instance priority: 0 Highest,1 High,2 Medium,3 Low,4 Lowest',
|
|
|
+ `process_instance_priority` int(11) DEFAULT '2' COMMENT 'process instance priority: 0 Highest,1 High,2 Medium,3 Low,4 Lowest',
|
|
|
`worker_group` varchar(64) COMMENT 'worker group',
|
|
|
`environment_code` bigint(20) DEFAULT '-1' COMMENT 'environment code',
|
|
|
`dry_run` tinyint(4) DEFAULT '0' COMMENT 'dry run flag:0 normal, 1 dry run',
|
|
@@ -391,7 +391,7 @@ CREATE TABLE `t_ds_error_command` (
|
|
|
`schedule_time` datetime DEFAULT NULL COMMENT 'scheduler time',
|
|
|
`start_time` datetime DEFAULT NULL COMMENT 'start time',
|
|
|
`update_time` datetime DEFAULT NULL COMMENT 'update time',
|
|
|
- `process_instance_priority` int(11) DEFAULT NULL COMMENT 'process instance priority, 0 Highest,1 High,2 Medium,3 Low,4 Lowest',
|
|
|
+ `process_instance_priority` int(11) DEFAULT '2' COMMENT 'process instance priority, 0 Highest,1 High,2 Medium,3 Low,4 Lowest',
|
|
|
`worker_group` varchar(64) COMMENT 'worker group',
|
|
|
`environment_code` bigint(20) DEFAULT '-1' COMMENT 'environment code',
|
|
|
`message` text COMMENT 'message',
|
|
@@ -476,7 +476,7 @@ CREATE TABLE `t_ds_task_definition` (
|
|
|
`task_execute_type` int(11) DEFAULT '0' COMMENT 'task execute type: 0-batch, 1-stream',
|
|
|
`task_params` longtext COMMENT 'job custom parameters',
|
|
|
`flag` tinyint(2) DEFAULT NULL COMMENT '0 not available, 1 available',
|
|
|
- `task_priority` tinyint(4) DEFAULT NULL COMMENT 'job priority',
|
|
|
+ `task_priority` tinyint(4) DEFAULT '2' COMMENT 'job priority',
|
|
|
`worker_group` varchar(200) DEFAULT NULL COMMENT 'worker grouping',
|
|
|
`environment_code` bigint(20) DEFAULT '-1' COMMENT 'environment code',
|
|
|
`fail_retry_times` int(11) DEFAULT NULL COMMENT 'number of failed retries',
|
|
@@ -511,7 +511,7 @@ CREATE TABLE `t_ds_task_definition_log` (
|
|
|
`task_execute_type` int(11) DEFAULT '0' COMMENT 'task execute type: 0-batch, 1-stream',
|
|
|
`task_params` longtext COMMENT 'job custom parameters',
|
|
|
`flag` tinyint(2) DEFAULT NULL COMMENT '0 not available, 1 available',
|
|
|
- `task_priority` tinyint(4) DEFAULT NULL COMMENT 'job priority',
|
|
|
+ `task_priority` tinyint(4) DEFAULT '2' COMMENT 'job priority',
|
|
|
`worker_group` varchar(200) DEFAULT NULL COMMENT 'worker grouping',
|
|
|
`environment_code` bigint(20) DEFAULT '-1' COMMENT 'environment code',
|
|
|
`fail_retry_times` int(11) DEFAULT NULL COMMENT 'number of failed retries',
|
|
@@ -612,7 +612,7 @@ CREATE TABLE `t_ds_process_instance` (
|
|
|
`is_sub_process` int(11) DEFAULT '0' COMMENT 'flag, whether the process is sub process',
|
|
|
`executor_id` int(11) NOT NULL COMMENT 'executor id',
|
|
|
`history_cmd` text COMMENT 'history commands of process instance operation',
|
|
|
- `process_instance_priority` int(11) DEFAULT NULL COMMENT 'process instance priority. 0 Highest,1 High,2 Medium,3 Low,4 Lowest',
|
|
|
+ `process_instance_priority` int(11) DEFAULT '2' COMMENT 'process instance priority. 0 Highest,1 High,2 Medium,3 Low,4 Lowest',
|
|
|
`worker_group` varchar(64) DEFAULT NULL COMMENT 'worker group id',
|
|
|
`environment_code` bigint(20) DEFAULT '-1' COMMENT 'environment code',
|
|
|
`timeout` int(11) DEFAULT '0' COMMENT 'time out',
|
|
@@ -800,7 +800,7 @@ CREATE TABLE `t_ds_schedules` (
|
|
|
`release_state` tinyint(4) NOT NULL COMMENT 'release state. 0:offline,1:online ',
|
|
|
`warning_type` tinyint(4) NOT NULL COMMENT 'Alarm type: 0 is not sent, 1 process is sent successfully, 2 process is sent failed, 3 process is sent successfully and all failures are sent',
|
|
|
`warning_group_id` int(11) DEFAULT NULL COMMENT 'alert group id',
|
|
|
- `process_instance_priority` int(11) DEFAULT NULL COMMENT 'process instance priority:0 Highest,1 High,2 Medium,3 Low,4 Lowest',
|
|
|
+ `process_instance_priority` int(11) DEFAULT '2' COMMENT 'process instance priority:0 Highest,1 High,2 Medium,3 Low,4 Lowest',
|
|
|
`worker_group` varchar(64) DEFAULT '' COMMENT 'worker group id',
|
|
|
`environment_code` bigint(20) DEFAULT '-1' COMMENT 'environment code',
|
|
|
`create_time` datetime NOT NULL COMMENT 'create time',
|