12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019 |
- /*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- SET FOREIGN_KEY_CHECKS=0;
- -- ----------------------------
- -- Table structure for QRTZ_BLOB_TRIGGERS
- -- ----------------------------
- DROP TABLE IF EXISTS `QRTZ_BLOB_TRIGGERS`;
- CREATE TABLE `QRTZ_BLOB_TRIGGERS` (
- `SCHED_NAME` varchar(120) NOT NULL,
- `TRIGGER_NAME` varchar(200) NOT NULL,
- `TRIGGER_GROUP` varchar(200) NOT NULL,
- `BLOB_DATA` blob,
- PRIMARY KEY (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`),
- KEY `SCHED_NAME` (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`),
- CONSTRAINT `QRTZ_BLOB_TRIGGERS_ibfk_1` FOREIGN KEY (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`) REFERENCES `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Records of QRTZ_BLOB_TRIGGERS
- -- ----------------------------
- -- ----------------------------
- -- Table structure for QRTZ_CALENDARS
- -- ----------------------------
- DROP TABLE IF EXISTS `QRTZ_CALENDARS`;
- CREATE TABLE `QRTZ_CALENDARS` (
- `SCHED_NAME` varchar(120) NOT NULL,
- `CALENDAR_NAME` varchar(200) NOT NULL,
- `CALENDAR` blob NOT NULL,
- PRIMARY KEY (`SCHED_NAME`,`CALENDAR_NAME`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Records of QRTZ_CALENDARS
- -- ----------------------------
- -- ----------------------------
- -- Table structure for QRTZ_CRON_TRIGGERS
- -- ----------------------------
- DROP TABLE IF EXISTS `QRTZ_CRON_TRIGGERS`;
- CREATE TABLE `QRTZ_CRON_TRIGGERS` (
- `SCHED_NAME` varchar(120) NOT NULL,
- `TRIGGER_NAME` varchar(200) NOT NULL,
- `TRIGGER_GROUP` varchar(200) NOT NULL,
- `CRON_EXPRESSION` varchar(120) NOT NULL,
- `TIME_ZONE_ID` varchar(80) DEFAULT NULL,
- PRIMARY KEY (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`),
- CONSTRAINT `QRTZ_CRON_TRIGGERS_ibfk_1` FOREIGN KEY (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`) REFERENCES `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Records of QRTZ_CRON_TRIGGERS
- -- ----------------------------
- -- ----------------------------
- -- Table structure for QRTZ_FIRED_TRIGGERS
- -- ----------------------------
- DROP TABLE IF EXISTS `QRTZ_FIRED_TRIGGERS`;
- CREATE TABLE `QRTZ_FIRED_TRIGGERS` (
- `SCHED_NAME` varchar(120) NOT NULL,
- `ENTRY_ID` varchar(200) NOT NULL,
- `TRIGGER_NAME` varchar(200) NOT NULL,
- `TRIGGER_GROUP` varchar(200) NOT NULL,
- `INSTANCE_NAME` varchar(200) NOT NULL,
- `FIRED_TIME` bigint(13) NOT NULL,
- `SCHED_TIME` bigint(13) NOT NULL,
- `PRIORITY` int(11) NOT NULL,
- `STATE` varchar(16) NOT NULL,
- `JOB_NAME` varchar(200) DEFAULT NULL,
- `JOB_GROUP` varchar(200) DEFAULT NULL,
- `IS_NONCONCURRENT` varchar(1) DEFAULT NULL,
- `REQUESTS_RECOVERY` varchar(1) DEFAULT NULL,
- PRIMARY KEY (`SCHED_NAME`,`ENTRY_ID`),
- KEY `IDX_QRTZ_FT_TRIG_INST_NAME` (`SCHED_NAME`,`INSTANCE_NAME`),
- KEY `IDX_QRTZ_FT_INST_JOB_REQ_RCVRY` (`SCHED_NAME`,`INSTANCE_NAME`,`REQUESTS_RECOVERY`),
- KEY `IDX_QRTZ_FT_J_G` (`SCHED_NAME`,`JOB_NAME`,`JOB_GROUP`),
- KEY `IDX_QRTZ_FT_JG` (`SCHED_NAME`,`JOB_GROUP`),
- KEY `IDX_QRTZ_FT_T_G` (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`),
- KEY `IDX_QRTZ_FT_TG` (`SCHED_NAME`,`TRIGGER_GROUP`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Records of QRTZ_FIRED_TRIGGERS
- -- ----------------------------
- -- ----------------------------
- -- Table structure for QRTZ_JOB_DETAILS
- -- ----------------------------
- DROP TABLE IF EXISTS `QRTZ_JOB_DETAILS`;
- CREATE TABLE `QRTZ_JOB_DETAILS` (
- `SCHED_NAME` varchar(120) NOT NULL,
- `JOB_NAME` varchar(200) NOT NULL,
- `JOB_GROUP` varchar(200) NOT NULL,
- `DESCRIPTION` varchar(250) DEFAULT NULL,
- `JOB_CLASS_NAME` varchar(250) NOT NULL,
- `IS_DURABLE` varchar(1) NOT NULL,
- `IS_NONCONCURRENT` varchar(1) NOT NULL,
- `IS_UPDATE_DATA` varchar(1) NOT NULL,
- `REQUESTS_RECOVERY` varchar(1) NOT NULL,
- `JOB_DATA` blob,
- PRIMARY KEY (`SCHED_NAME`,`JOB_NAME`,`JOB_GROUP`),
- KEY `IDX_QRTZ_J_REQ_RECOVERY` (`SCHED_NAME`,`REQUESTS_RECOVERY`),
- KEY `IDX_QRTZ_J_GRP` (`SCHED_NAME`,`JOB_GROUP`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Records of QRTZ_JOB_DETAILS
- -- ----------------------------
- -- ----------------------------
- -- Table structure for QRTZ_LOCKS
- -- ----------------------------
- DROP TABLE IF EXISTS `QRTZ_LOCKS`;
- CREATE TABLE `QRTZ_LOCKS` (
- `SCHED_NAME` varchar(120) NOT NULL,
- `LOCK_NAME` varchar(40) NOT NULL,
- PRIMARY KEY (`SCHED_NAME`,`LOCK_NAME`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Records of QRTZ_LOCKS
- -- ----------------------------
- -- ----------------------------
- -- Table structure for QRTZ_PAUSED_TRIGGER_GRPS
- -- ----------------------------
- DROP TABLE IF EXISTS `QRTZ_PAUSED_TRIGGER_GRPS`;
- CREATE TABLE `QRTZ_PAUSED_TRIGGER_GRPS` (
- `SCHED_NAME` varchar(120) NOT NULL,
- `TRIGGER_GROUP` varchar(200) NOT NULL,
- PRIMARY KEY (`SCHED_NAME`,`TRIGGER_GROUP`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Records of QRTZ_PAUSED_TRIGGER_GRPS
- -- ----------------------------
- -- ----------------------------
- -- Table structure for QRTZ_SCHEDULER_STATE
- -- ----------------------------
- DROP TABLE IF EXISTS `QRTZ_SCHEDULER_STATE`;
- CREATE TABLE `QRTZ_SCHEDULER_STATE` (
- `SCHED_NAME` varchar(120) NOT NULL,
- `INSTANCE_NAME` varchar(200) NOT NULL,
- `LAST_CHECKIN_TIME` bigint(13) NOT NULL,
- `CHECKIN_INTERVAL` bigint(13) NOT NULL,
- PRIMARY KEY (`SCHED_NAME`,`INSTANCE_NAME`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Records of QRTZ_SCHEDULER_STATE
- -- ----------------------------
- -- ----------------------------
- -- Table structure for QRTZ_SIMPLE_TRIGGERS
- -- ----------------------------
- DROP TABLE IF EXISTS `QRTZ_SIMPLE_TRIGGERS`;
- CREATE TABLE `QRTZ_SIMPLE_TRIGGERS` (
- `SCHED_NAME` varchar(120) NOT NULL,
- `TRIGGER_NAME` varchar(200) NOT NULL,
- `TRIGGER_GROUP` varchar(200) NOT NULL,
- `REPEAT_COUNT` bigint(7) NOT NULL,
- `REPEAT_INTERVAL` bigint(12) NOT NULL,
- `TIMES_TRIGGERED` bigint(10) NOT NULL,
- PRIMARY KEY (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`),
- CONSTRAINT `QRTZ_SIMPLE_TRIGGERS_ibfk_1` FOREIGN KEY (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`) REFERENCES `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Records of QRTZ_SIMPLE_TRIGGERS
- -- ----------------------------
- -- ----------------------------
- -- Table structure for QRTZ_SIMPROP_TRIGGERS
- -- ----------------------------
- DROP TABLE IF EXISTS `QRTZ_SIMPROP_TRIGGERS`;
- CREATE TABLE `QRTZ_SIMPROP_TRIGGERS` (
- `SCHED_NAME` varchar(120) NOT NULL,
- `TRIGGER_NAME` varchar(200) NOT NULL,
- `TRIGGER_GROUP` varchar(200) NOT NULL,
- `STR_PROP_1` varchar(512) DEFAULT NULL,
- `STR_PROP_2` varchar(512) DEFAULT NULL,
- `STR_PROP_3` varchar(512) DEFAULT NULL,
- `INT_PROP_1` int(11) DEFAULT NULL,
- `INT_PROP_2` int(11) DEFAULT NULL,
- `LONG_PROP_1` bigint(20) DEFAULT NULL,
- `LONG_PROP_2` bigint(20) DEFAULT NULL,
- `DEC_PROP_1` decimal(13,4) DEFAULT NULL,
- `DEC_PROP_2` decimal(13,4) DEFAULT NULL,
- `BOOL_PROP_1` varchar(1) DEFAULT NULL,
- `BOOL_PROP_2` varchar(1) DEFAULT NULL,
- PRIMARY KEY (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`),
- CONSTRAINT `QRTZ_SIMPROP_TRIGGERS_ibfk_1` FOREIGN KEY (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`) REFERENCES `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Records of QRTZ_SIMPROP_TRIGGERS
- -- ----------------------------
- -- ----------------------------
- -- Table structure for QRTZ_TRIGGERS
- -- ----------------------------
- DROP TABLE IF EXISTS `QRTZ_TRIGGERS`;
- CREATE TABLE `QRTZ_TRIGGERS` (
- `SCHED_NAME` varchar(120) NOT NULL,
- `TRIGGER_NAME` varchar(200) NOT NULL,
- `TRIGGER_GROUP` varchar(200) NOT NULL,
- `JOB_NAME` varchar(200) NOT NULL,
- `JOB_GROUP` varchar(200) NOT NULL,
- `DESCRIPTION` varchar(250) DEFAULT NULL,
- `NEXT_FIRE_TIME` bigint(13) DEFAULT NULL,
- `PREV_FIRE_TIME` bigint(13) DEFAULT NULL,
- `PRIORITY` int(11) DEFAULT NULL,
- `TRIGGER_STATE` varchar(16) NOT NULL,
- `TRIGGER_TYPE` varchar(8) NOT NULL,
- `START_TIME` bigint(13) NOT NULL,
- `END_TIME` bigint(13) DEFAULT NULL,
- `CALENDAR_NAME` varchar(200) DEFAULT NULL,
- `MISFIRE_INSTR` smallint(2) DEFAULT NULL,
- `JOB_DATA` blob,
- PRIMARY KEY (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`),
- KEY `IDX_QRTZ_T_J` (`SCHED_NAME`,`JOB_NAME`,`JOB_GROUP`),
- KEY `IDX_QRTZ_T_JG` (`SCHED_NAME`,`JOB_GROUP`),
- KEY `IDX_QRTZ_T_C` (`SCHED_NAME`,`CALENDAR_NAME`),
- KEY `IDX_QRTZ_T_G` (`SCHED_NAME`,`TRIGGER_GROUP`),
- KEY `IDX_QRTZ_T_STATE` (`SCHED_NAME`,`TRIGGER_STATE`),
- KEY `IDX_QRTZ_T_N_STATE` (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`,`TRIGGER_STATE`),
- KEY `IDX_QRTZ_T_N_G_STATE` (`SCHED_NAME`,`TRIGGER_GROUP`,`TRIGGER_STATE`),
- KEY `IDX_QRTZ_T_NEXT_FIRE_TIME` (`SCHED_NAME`,`NEXT_FIRE_TIME`),
- KEY `IDX_QRTZ_T_NFT_ST` (`SCHED_NAME`,`TRIGGER_STATE`,`NEXT_FIRE_TIME`),
- KEY `IDX_QRTZ_T_NFT_MISFIRE` (`SCHED_NAME`,`MISFIRE_INSTR`,`NEXT_FIRE_TIME`),
- KEY `IDX_QRTZ_T_NFT_ST_MISFIRE` (`SCHED_NAME`,`MISFIRE_INSTR`,`NEXT_FIRE_TIME`,`TRIGGER_STATE`),
- KEY `IDX_QRTZ_T_NFT_ST_MISFIRE_GRP` (`SCHED_NAME`,`MISFIRE_INSTR`,`NEXT_FIRE_TIME`,`TRIGGER_GROUP`,`TRIGGER_STATE`),
- CONSTRAINT `QRTZ_TRIGGERS_ibfk_1` FOREIGN KEY (`SCHED_NAME`, `JOB_NAME`, `JOB_GROUP`) REFERENCES `QRTZ_JOB_DETAILS` (`SCHED_NAME`, `JOB_NAME`, `JOB_GROUP`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Records of QRTZ_TRIGGERS
- -- ----------------------------
- -- ----------------------------
- -- Table structure for t_ds_access_token
- -- ----------------------------
- DROP TABLE IF EXISTS `t_ds_access_token`;
- CREATE TABLE `t_ds_access_token` (
- `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'key',
- `user_id` int(11) DEFAULT NULL COMMENT 'user id',
- `token` varchar(64) DEFAULT NULL COMMENT 'token',
- `expire_time` datetime DEFAULT NULL COMMENT 'end time of token ',
- `create_time` datetime DEFAULT NULL COMMENT 'create time',
- `update_time` datetime DEFAULT NULL COMMENT 'update time',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Records of t_ds_access_token
- -- ----------------------------
- -- ----------------------------
- -- Table structure for t_ds_alert
- -- ----------------------------
- DROP TABLE IF EXISTS `t_ds_alert`;
- CREATE TABLE `t_ds_alert` (
- `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'key',
- `title` varchar(64) DEFAULT NULL COMMENT 'title',
- `content` text COMMENT 'Message content (can be email, can be SMS. Mail is stored in JSON map, and SMS is string)',
- `alert_status` tinyint(4) DEFAULT '0' COMMENT '0:wait running,1:success,2:failed',
- `log` text COMMENT 'log',
- `alertgroup_id` int(11) DEFAULT NULL COMMENT 'alert group id',
- `create_time` datetime DEFAULT NULL COMMENT 'create time',
- `update_time` datetime DEFAULT NULL COMMENT 'update time',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Records of t_ds_alert
- -- ----------------------------
- -- ----------------------------
- -- Table structure for t_ds_alertgroup
- -- ----------------------------
- DROP TABLE IF EXISTS `t_ds_alertgroup`;
- CREATE TABLE `t_ds_alertgroup`(
- `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'key',
- `alert_instance_ids` varchar (255) DEFAULT NULL COMMENT 'alert instance ids',
- `create_user_id` int(11) DEFAULT NULL COMMENT 'create user id',
- `group_name` varchar(255) DEFAULT NULL COMMENT 'group name',
- `description` varchar(255) DEFAULT NULL,
- `create_time` datetime DEFAULT NULL COMMENT 'create time',
- `update_time` datetime DEFAULT NULL COMMENT 'update time',
- PRIMARY KEY (`id`),
- UNIQUE KEY `t_ds_alertgroup_name_un` (`group_name`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Records of t_ds_alertgroup
- -- ----------------------------
- -- ----------------------------
- -- Table structure for t_ds_command
- -- ----------------------------
- DROP TABLE IF EXISTS `t_ds_command`;
- CREATE TABLE `t_ds_command` (
- `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'key',
- `command_type` tinyint(4) DEFAULT NULL COMMENT 'Command type: 0 start workflow, 1 start execution from current node, 2 resume fault-tolerant workflow, 3 resume pause process, 4 start execution from failed node, 5 complement, 6 schedule, 7 rerun, 8 pause, 9 stop, 10 resume waiting thread',
- `process_definition_code` bigint(20) NOT NULL COMMENT 'process definition code',
- `process_definition_version` int(11) DEFAULT '0' COMMENT 'process definition version',
- `process_instance_id` int(11) DEFAULT '0' COMMENT 'process instance id',
- `command_param` text COMMENT 'json command parameters',
- `task_depend_type` tinyint(4) DEFAULT NULL COMMENT 'Node dependency type: 0 current node, 1 forward, 2 backward',
- `failure_strategy` tinyint(4) DEFAULT '0' COMMENT 'Failed policy: 0 end, 1 continue',
- `warning_type` tinyint(4) DEFAULT '0' 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 'warning group',
- `schedule_time` datetime DEFAULT NULL COMMENT 'schedule time',
- `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',
- `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',
- PRIMARY KEY (`id`),
- KEY `priority_id_index` (`process_instance_priority`,`id`) USING BTREE
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Records of t_ds_command
- -- ----------------------------
- -- ----------------------------
- -- Table structure for t_ds_datasource
- -- ----------------------------
- DROP TABLE IF EXISTS `t_ds_datasource`;
- CREATE TABLE `t_ds_datasource` (
- `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'key',
- `name` varchar(64) NOT NULL COMMENT 'data source name',
- `note` varchar(255) DEFAULT NULL COMMENT 'description',
- `type` tinyint(4) NOT NULL COMMENT 'data source type: 0:mysql,1:postgresql,2:hive,3:spark',
- `user_id` int(11) NOT NULL COMMENT 'the creator id',
- `connection_params` text NOT NULL COMMENT 'json connection params',
- `create_time` datetime NOT NULL COMMENT 'create time',
- `update_time` datetime DEFAULT NULL COMMENT 'update time',
- PRIMARY KEY (`id`),
- UNIQUE KEY `t_ds_datasource_name_un` (`name`, `type`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Records of t_ds_datasource
- -- ----------------------------
- -- ----------------------------
- -- Table structure for t_ds_error_command
- -- ----------------------------
- DROP TABLE IF EXISTS `t_ds_error_command`;
- CREATE TABLE `t_ds_error_command` (
- `id` int(11) NOT NULL COMMENT 'key',
- `command_type` tinyint(4) DEFAULT NULL COMMENT 'command type',
- `executor_id` int(11) DEFAULT NULL COMMENT 'executor id',
- `process_definition_code` bigint(20) NOT NULL COMMENT 'process definition code',
- `process_definition_version` int(11) DEFAULT '0' COMMENT 'process definition version',
- `process_instance_id` int(11) DEFAULT '0' COMMENT 'process instance id: 0',
- `command_param` text COMMENT 'json command parameters',
- `task_depend_type` tinyint(4) DEFAULT NULL COMMENT 'task depend type',
- `failure_strategy` tinyint(4) DEFAULT '0' COMMENT 'failure strategy',
- `warning_type` tinyint(4) DEFAULT '0' COMMENT 'warning type',
- `warning_group_id` int(11) DEFAULT NULL COMMENT 'warning group id',
- `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',
- `worker_group` varchar(64) COMMENT 'worker group',
- `environment_code` bigint(20) DEFAULT '-1' COMMENT 'environment code',
- `message` text COMMENT 'message',
- `dry_run` tinyint(4) DEFAULT '0' COMMENT 'dry run flag: 0 normal, 1 dry run',
- PRIMARY KEY (`id`) USING BTREE
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
- -- ----------------------------
- -- Records of t_ds_error_command
- -- ----------------------------
- -- ----------------------------
- -- Table structure for t_ds_process_definition
- -- ----------------------------
- DROP TABLE IF EXISTS `t_ds_process_definition`;
- CREATE TABLE `t_ds_process_definition` (
- `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'self-increasing id',
- `code` bigint(20) NOT NULL COMMENT 'encoding',
- `name` varchar(255) DEFAULT NULL COMMENT 'process definition name',
- `version` int(11) DEFAULT '0' COMMENT 'process definition version',
- `description` text COMMENT 'description',
- `project_code` bigint(20) NOT NULL COMMENT 'project code',
- `release_state` tinyint(4) DEFAULT NULL COMMENT 'process definition release state:0:offline,1:online',
- `user_id` int(11) DEFAULT NULL COMMENT 'process definition creator id',
- `global_params` text COMMENT 'global parameters',
- `flag` tinyint(4) DEFAULT NULL COMMENT '0 not available, 1 available',
- `locations` text COMMENT 'Node location information',
- `warning_group_id` int(11) DEFAULT NULL COMMENT 'alert group id',
- `timeout` int(11) DEFAULT '0' COMMENT 'time out, unit: minute',
- `tenant_id` int(11) NOT NULL DEFAULT '-1' COMMENT 'tenant id',
- `execution_type` tinyint(4) DEFAULT '0' COMMENT 'execution_type 0:parallel,1:serial wait,2:serial discard,3:serial priority',
- `create_time` datetime NOT NULL COMMENT 'create time',
- `update_time` datetime NOT NULL COMMENT 'update time',
- PRIMARY KEY (`id`,`code`),
- UNIQUE KEY `process_unique` (`name`,`project_code`) USING BTREE
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Records of t_ds_process_definition
- -- ----------------------------
- -- ----------------------------
- -- Table structure for t_ds_process_definition_log
- -- ----------------------------
- DROP TABLE IF EXISTS `t_ds_process_definition_log`;
- CREATE TABLE `t_ds_process_definition_log` (
- `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',
- `version` int(11) DEFAULT '0' COMMENT 'process definition version',
- `description` text COMMENT 'description',
- `project_code` bigint(20) NOT NULL COMMENT 'project code',
- `release_state` tinyint(4) DEFAULT NULL COMMENT 'process definition release state:0:offline,1:online',
- `user_id` int(11) DEFAULT NULL COMMENT 'process definition creator id',
- `global_params` text COMMENT 'global parameters',
- `flag` tinyint(4) DEFAULT NULL COMMENT '0 not available, 1 available',
- `locations` text COMMENT 'Node location information',
- `warning_group_id` int(11) DEFAULT NULL COMMENT 'alert group id',
- `timeout` int(11) DEFAULT '0' COMMENT 'time out,unit: minute',
- `tenant_id` int(11) NOT NULL DEFAULT '-1' COMMENT 'tenant id',
- `execution_type` tinyint(4) DEFAULT '0' COMMENT 'execution_type 0:parallel,1:serial wait,2:serial discard,3:serial priority',
- `operator` int(11) DEFAULT NULL COMMENT 'operator user id',
- `operate_time` datetime DEFAULT NULL COMMENT 'operate time',
- `create_time` datetime NOT NULL COMMENT 'create time',
- `update_time` datetime NOT NULL COMMENT 'update time',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Table structure for t_ds_task_definition
- -- ----------------------------
- DROP TABLE IF EXISTS `t_ds_task_definition`;
- CREATE TABLE `t_ds_task_definition` (
- `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'self-increasing id',
- `code` bigint(20) NOT NULL COMMENT 'encoding',
- `name` varchar(200) DEFAULT NULL COMMENT 'task definition name',
- `version` int(11) DEFAULT '0' COMMENT 'task definition version',
- `description` text COMMENT 'description',
- `project_code` bigint(20) NOT NULL COMMENT 'project code',
- `user_id` int(11) DEFAULT NULL COMMENT 'task definition creator id',
- `task_type` varchar(50) NOT NULL COMMENT 'task type',
- `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',
- `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',
- `fail_retry_interval` int(11) DEFAULT NULL COMMENT 'failed retry interval',
- `timeout_flag` tinyint(2) DEFAULT '0' COMMENT 'timeout flag:0 close, 1 open',
- `timeout_notify_strategy` tinyint(4) DEFAULT NULL COMMENT 'timeout notification policy: 0 warning, 1 fail',
- `timeout` int(11) DEFAULT '0' COMMENT 'timeout length,unit: minute',
- `delay_time` int(11) DEFAULT '0' COMMENT 'delay execution time,unit: minute',
- `resource_ids` text COMMENT 'resource id, separated by comma',
- `create_time` datetime NOT NULL COMMENT 'create time',
- `update_time` datetime NOT NULL COMMENT 'update time',
- PRIMARY KEY (`id`,`code`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Table structure for t_ds_task_definition_log
- -- ----------------------------
- DROP TABLE IF EXISTS `t_ds_task_definition_log`;
- CREATE TABLE `t_ds_task_definition_log` (
- `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'self-increasing id',
- `code` bigint(20) NOT NULL COMMENT 'encoding',
- `name` varchar(200) DEFAULT NULL COMMENT 'task definition name',
- `version` int(11) DEFAULT '0' COMMENT 'task definition version',
- `description` text COMMENT 'description',
- `project_code` bigint(20) NOT NULL COMMENT 'project code',
- `user_id` int(11) DEFAULT NULL COMMENT 'task definition creator id',
- `task_type` varchar(50) NOT NULL COMMENT 'task type',
- `task_params` text COMMENT 'job custom parameters',
- `flag` tinyint(2) DEFAULT NULL COMMENT '0 not available, 1 available',
- `task_priority` tinyint(4) DEFAULT NULL 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',
- `fail_retry_interval` int(11) DEFAULT NULL COMMENT 'failed retry interval',
- `timeout_flag` tinyint(2) DEFAULT '0' COMMENT 'timeout flag:0 close, 1 open',
- `timeout_notify_strategy` tinyint(4) DEFAULT NULL COMMENT 'timeout notification policy: 0 warning, 1 fail',
- `timeout` int(11) DEFAULT '0' COMMENT 'timeout length,unit: minute',
- `delay_time` int(11) DEFAULT '0' COMMENT 'delay execution time,unit: minute',
- `resource_ids` text DEFAULT NULL COMMENT 'resource id, separated by comma',
- `operator` int(11) DEFAULT NULL COMMENT 'operator user id',
- `operate_time` datetime DEFAULT NULL COMMENT 'operate time',
- `create_time` datetime NOT NULL COMMENT 'create time',
- `update_time` datetime NOT NULL COMMENT 'update time',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Table structure for t_ds_process_task_relation
- -- ----------------------------
- DROP TABLE IF EXISTS `t_ds_process_task_relation`;
- CREATE TABLE `t_ds_process_task_relation` (
- `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'self-increasing id',
- `name` varchar(200) DEFAULT NULL COMMENT 'relation name',
- `project_code` bigint(20) NOT NULL COMMENT 'project code',
- `process_definition_code` bigint(20) NOT NULL COMMENT 'process code',
- `process_definition_version` int(11) NOT NULL COMMENT 'process version',
- `pre_task_code` bigint(20) NOT NULL COMMENT 'pre task code',
- `pre_task_version` int(11) NOT NULL COMMENT 'pre task version',
- `post_task_code` bigint(20) NOT NULL COMMENT 'post task code',
- `post_task_version` int(11) NOT NULL COMMENT 'post task version',
- `condition_type` tinyint(2) DEFAULT NULL COMMENT 'condition type : 0 none, 1 judge 2 delay',
- `condition_params` text COMMENT 'condition params(json)',
- `create_time` datetime NOT NULL COMMENT 'create time',
- `update_time` datetime NOT NULL COMMENT 'update time',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Table structure for t_ds_process_task_relation_log
- -- ----------------------------
- DROP TABLE IF EXISTS `t_ds_process_task_relation_log`;
- CREATE TABLE `t_ds_process_task_relation_log` (
- `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'self-increasing id',
- `name` varchar(200) DEFAULT NULL COMMENT 'relation name',
- `project_code` bigint(20) NOT NULL COMMENT 'project code',
- `process_definition_code` bigint(20) NOT NULL COMMENT 'process code',
- `process_definition_version` int(11) NOT NULL COMMENT 'process version',
- `pre_task_code` bigint(20) NOT NULL COMMENT 'pre task code',
- `pre_task_version` int(11) NOT NULL COMMENT 'pre task version',
- `post_task_code` bigint(20) NOT NULL COMMENT 'post task code',
- `post_task_version` int(11) NOT NULL COMMENT 'post task version',
- `condition_type` tinyint(2) DEFAULT NULL COMMENT 'condition type : 0 none, 1 judge 2 delay',
- `condition_params` text COMMENT 'condition params(json)',
- `operator` int(11) DEFAULT NULL COMMENT 'operator user id',
- `operate_time` datetime DEFAULT NULL COMMENT 'operate time',
- `create_time` datetime NOT NULL COMMENT 'create time',
- `update_time` datetime NOT NULL COMMENT 'update time',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Table structure for t_ds_process_instance
- -- ----------------------------
- DROP TABLE IF EXISTS `t_ds_process_instance`;
- CREATE TABLE `t_ds_process_instance` (
- `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'key',
- `name` varchar(255) DEFAULT NULL COMMENT 'process instance name',
- `process_definition_code` bigint(20) NOT NULL COMMENT 'process definition code',
- `process_definition_version` int(11) DEFAULT '0' COMMENT 'process definition version',
- `state` tinyint(4) DEFAULT NULL COMMENT 'process instance Status: 0 commit succeeded, 1 running, 2 prepare to pause, 3 pause, 4 prepare to stop, 5 stop, 6 fail, 7 succeed, 8 need fault tolerance, 9 kill, 10 wait for thread, 11 wait for dependency to complete',
- `recovery` tinyint(4) DEFAULT NULL COMMENT 'process instance failover flag:0:normal,1:failover instance',
- `start_time` datetime DEFAULT NULL COMMENT 'process instance start time',
- `end_time` datetime DEFAULT NULL COMMENT 'process instance end time',
- `run_times` int(11) DEFAULT NULL COMMENT 'process instance run times',
- `host` varchar(135) DEFAULT NULL COMMENT 'process instance host',
- `command_type` tinyint(4) DEFAULT NULL COMMENT 'command type',
- `command_param` text COMMENT 'json command parameters',
- `task_depend_type` tinyint(4) DEFAULT NULL COMMENT 'task depend type. 0: only current node,1:before the node,2:later nodes',
- `max_try_times` tinyint(4) DEFAULT '0' COMMENT 'max try times',
- `failure_strategy` tinyint(4) DEFAULT '0' COMMENT 'failure strategy. 0:end the process when node failed,1:continue running the other nodes when node failed',
- `warning_type` tinyint(4) DEFAULT '0' COMMENT 'warning type. 0:no warning,1:warning if process success,2:warning if process failed,3:warning if success',
- `warning_group_id` int(11) DEFAULT NULL COMMENT 'warning group id',
- `schedule_time` datetime DEFAULT NULL COMMENT 'schedule time',
- `command_start_time` datetime DEFAULT NULL COMMENT 'command start time',
- `global_params` text COMMENT 'global parameters',
- `flag` tinyint(4) DEFAULT '1' COMMENT 'flag',
- `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
- `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',
- `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',
- `tenant_id` int(11) NOT NULL DEFAULT '-1' COMMENT 'tenant id',
- `var_pool` longtext COMMENT 'var_pool',
- `dry_run` tinyint(4) DEFAULT '0' COMMENT 'dry run flag:0 normal, 1 dry run',
- `next_process_instance_id` int(11) DEFAULT '0' COMMENT 'serial queue next processInstanceId',
- PRIMARY KEY (`id`),
- KEY `process_instance_index` (`process_definition_code`,`id`) USING BTREE,
- KEY `start_time_index` (`start_time`) USING BTREE
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Records of t_ds_process_instance
- -- ----------------------------
- -- ----------------------------
- -- Table structure for t_ds_project
- -- ----------------------------
- DROP TABLE IF EXISTS `t_ds_project`;
- CREATE TABLE `t_ds_project` (
- `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'key',
- `name` varchar(100) DEFAULT NULL COMMENT 'project name',
- `code` bigint(20) NOT NULL COMMENT 'encoding',
- `description` varchar(200) DEFAULT NULL,
- `user_id` int(11) DEFAULT NULL COMMENT 'creator id',
- `flag` tinyint(4) DEFAULT '1' COMMENT '0 not available, 1 available',
- `create_time` datetime NOT NULL COMMENT 'create time',
- `update_time` datetime DEFAULT NULL COMMENT 'update time',
- PRIMARY KEY (`id`),
- KEY `user_id_index` (`user_id`) USING BTREE
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Records of t_ds_project
- -- ----------------------------
- -- ----------------------------
- -- Table structure for t_ds_queue
- -- ----------------------------
- DROP TABLE IF EXISTS `t_ds_queue`;
- CREATE TABLE `t_ds_queue` (
- `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'key',
- `queue_name` varchar(64) DEFAULT NULL COMMENT 'queue name',
- `queue` varchar(64) DEFAULT NULL COMMENT 'yarn queue name',
- `create_time` datetime DEFAULT NULL COMMENT 'create time',
- `update_time` datetime DEFAULT NULL COMMENT 'update time',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Records of t_ds_queue
- -- ----------------------------
- INSERT INTO `t_ds_queue` VALUES ('1', 'default', 'default', null, null);
- -- ----------------------------
- -- Table structure for t_ds_relation_datasource_user
- -- ----------------------------
- DROP TABLE IF EXISTS `t_ds_relation_datasource_user`;
- CREATE TABLE `t_ds_relation_datasource_user` (
- `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'key',
- `user_id` int(11) NOT NULL COMMENT 'user id',
- `datasource_id` int(11) DEFAULT NULL COMMENT 'data source id',
- `perm` int(11) DEFAULT '1' COMMENT 'limits of authority',
- `create_time` datetime DEFAULT NULL COMMENT 'create time',
- `update_time` datetime DEFAULT NULL COMMENT 'update time',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Records of t_ds_relation_datasource_user
- -- ----------------------------
- -- ----------------------------
- -- Table structure for t_ds_relation_process_instance
- -- ----------------------------
- DROP TABLE IF EXISTS `t_ds_relation_process_instance`;
- CREATE TABLE `t_ds_relation_process_instance` (
- `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'key',
- `parent_process_instance_id` int(11) DEFAULT NULL COMMENT 'parent process instance id',
- `parent_task_instance_id` int(11) DEFAULT NULL COMMENT 'parent process instance id',
- `process_instance_id` int(11) DEFAULT NULL COMMENT 'child process instance id',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Records of t_ds_relation_process_instance
- -- ----------------------------
- -- ----------------------------
- -- Table structure for t_ds_relation_project_user
- -- ----------------------------
- DROP TABLE IF EXISTS `t_ds_relation_project_user`;
- CREATE TABLE `t_ds_relation_project_user` (
- `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'key',
- `user_id` int(11) NOT NULL COMMENT 'user id',
- `project_id` int(11) DEFAULT NULL COMMENT 'project id',
- `perm` int(11) DEFAULT '1' COMMENT 'limits of authority',
- `create_time` datetime DEFAULT NULL COMMENT 'create time',
- `update_time` datetime DEFAULT NULL COMMENT 'update time',
- PRIMARY KEY (`id`),
- KEY `user_id_index` (`user_id`) USING BTREE
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Records of t_ds_relation_project_user
- -- ----------------------------
- -- ----------------------------
- -- Table structure for t_ds_relation_resources_user
- -- ----------------------------
- DROP TABLE IF EXISTS `t_ds_relation_resources_user`;
- CREATE TABLE `t_ds_relation_resources_user` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `user_id` int(11) NOT NULL COMMENT 'user id',
- `resources_id` int(11) DEFAULT NULL COMMENT 'resource id',
- `perm` int(11) DEFAULT '1' COMMENT 'limits of authority',
- `create_time` datetime DEFAULT NULL COMMENT 'create time',
- `update_time` datetime DEFAULT NULL COMMENT 'update time',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Records of t_ds_relation_resources_user
- -- ----------------------------
- -- ----------------------------
- -- Table structure for t_ds_relation_udfs_user
- -- ----------------------------
- DROP TABLE IF EXISTS `t_ds_relation_udfs_user`;
- CREATE TABLE `t_ds_relation_udfs_user` (
- `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'key',
- `user_id` int(11) NOT NULL COMMENT 'userid',
- `udf_id` int(11) DEFAULT NULL COMMENT 'udf id',
- `perm` int(11) DEFAULT '1' COMMENT 'limits of authority',
- `create_time` datetime DEFAULT NULL COMMENT 'create time',
- `update_time` datetime DEFAULT NULL COMMENT 'update time',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Table structure for t_ds_resources
- -- ----------------------------
- DROP TABLE IF EXISTS `t_ds_resources`;
- CREATE TABLE `t_ds_resources` (
- `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'key',
- `alias` varchar(64) DEFAULT NULL COMMENT 'alias',
- `file_name` varchar(64) DEFAULT NULL COMMENT 'file name',
- `description` varchar(255) DEFAULT NULL,
- `user_id` int(11) DEFAULT NULL COMMENT 'user id',
- `type` tinyint(4) DEFAULT NULL COMMENT 'resource type,0:FILE,1:UDF',
- `size` bigint(20) DEFAULT NULL COMMENT 'resource size',
- `create_time` datetime DEFAULT NULL COMMENT 'create time',
- `update_time` datetime DEFAULT NULL COMMENT 'update time',
- `pid` int(11) DEFAULT NULL,
- `full_name` varchar(64) DEFAULT NULL,
- `is_directory` tinyint(4) DEFAULT NULL,
- PRIMARY KEY (`id`),
- UNIQUE KEY `t_ds_resources_un` (`full_name`,`type`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Records of t_ds_resources
- -- ----------------------------
- -- ----------------------------
- -- Table structure for t_ds_schedules
- -- ----------------------------
- DROP TABLE IF EXISTS `t_ds_schedules`;
- CREATE TABLE `t_ds_schedules` (
- `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'key',
- `process_definition_code` bigint(20) NOT NULL COMMENT 'process definition code',
- `start_time` datetime NOT NULL COMMENT 'start time',
- `end_time` datetime NOT NULL COMMENT 'end time',
- `timezone_id` varchar(40) DEFAULT NULL COMMENT 'schedule timezone id',
- `crontab` varchar(255) NOT NULL COMMENT 'crontab description',
- `failure_strategy` tinyint(4) NOT NULL COMMENT 'failure strategy. 0:end,1:continue',
- `user_id` int(11) NOT NULL COMMENT 'user id',
- `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',
- `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',
- `update_time` datetime NOT NULL COMMENT 'update time',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Records of t_ds_schedules
- -- ----------------------------
- -- ----------------------------
- -- Table structure for t_ds_session
- -- ----------------------------
- DROP TABLE IF EXISTS `t_ds_session`;
- CREATE TABLE `t_ds_session` (
- `id` varchar(64) NOT NULL COMMENT 'key',
- `user_id` int(11) DEFAULT NULL COMMENT 'user id',
- `ip` varchar(45) DEFAULT NULL COMMENT 'ip',
- `last_login_time` datetime DEFAULT NULL COMMENT 'last login time',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Records of t_ds_session
- -- ----------------------------
- -- ----------------------------
- -- Table structure for t_ds_task_instance
- -- ----------------------------
- DROP TABLE IF EXISTS `t_ds_task_instance`;
- CREATE TABLE `t_ds_task_instance` (
- `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'key',
- `name` varchar(255) DEFAULT NULL COMMENT 'task name',
- `task_type` varchar(50) NOT NULL COMMENT 'task type',
- `task_code` bigint(20) NOT NULL COMMENT 'task definition code',
- `task_definition_version` int(11) DEFAULT '0' COMMENT 'task definition version',
- `process_instance_id` int(11) DEFAULT NULL COMMENT 'process instance id',
- `state` tinyint(4) DEFAULT NULL COMMENT 'Status: 0 commit succeeded, 1 running, 2 prepare to pause, 3 pause, 4 prepare to stop, 5 stop, 6 fail, 7 succeed, 8 need fault tolerance, 9 kill, 10 wait for thread, 11 wait for dependency to complete',
- `submit_time` datetime DEFAULT NULL COMMENT 'task submit time',
- `start_time` datetime DEFAULT NULL COMMENT 'task start time',
- `end_time` datetime DEFAULT NULL COMMENT 'task end time',
- `host` varchar(135) DEFAULT NULL COMMENT 'host of task running on',
- `execute_path` varchar(200) DEFAULT NULL COMMENT 'task execute path in the host',
- `log_path` varchar(200) DEFAULT NULL COMMENT 'task log path',
- `alert_flag` tinyint(4) DEFAULT NULL COMMENT 'whether alert',
- `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',
- `flag` tinyint(4) DEFAULT '1' COMMENT '0 not available, 1 available',
- `retry_interval` int(4) DEFAULT NULL COMMENT 'retry interval when task failed ',
- `max_retry_times` int(2) DEFAULT NULL COMMENT 'max retry times',
- `task_instance_priority` int(11) DEFAULT NULL COMMENT 'task 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',
- `environment_config` text COMMENT 'this config contains many environment variables config',
- `executor_id` int(11) DEFAULT NULL,
- `first_submit_time` datetime DEFAULT NULL COMMENT 'task first submit time',
- `delay_time` int(4) DEFAULT '0' COMMENT 'task delay execution time',
- `var_pool` longtext COMMENT 'var_pool',
- `dry_run` tinyint(4) DEFAULT '0' COMMENT 'dry run flag: 0 normal, 1 dry run',
- PRIMARY KEY (`id`),
- KEY `process_instance_id` (`process_instance_id`) USING BTREE,
- CONSTRAINT `foreign_key_instance_id` FOREIGN KEY (`process_instance_id`) REFERENCES `t_ds_process_instance` (`id`) ON DELETE CASCADE
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Records of t_ds_task_instance
- -- ----------------------------
- -- ----------------------------
- -- Table structure for t_ds_tenant
- -- ----------------------------
- DROP TABLE IF EXISTS `t_ds_tenant`;
- CREATE TABLE `t_ds_tenant` (
- `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'key',
- `tenant_code` varchar(64) DEFAULT NULL COMMENT 'tenant code',
- `description` varchar(255) DEFAULT NULL,
- `queue_id` int(11) DEFAULT NULL COMMENT 'queue id',
- `create_time` datetime DEFAULT NULL COMMENT 'create time',
- `update_time` datetime DEFAULT NULL COMMENT 'update time',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Records of t_ds_tenant
- -- ----------------------------
- -- ----------------------------
- -- Table structure for t_ds_udfs
- -- ----------------------------
- DROP TABLE IF EXISTS `t_ds_udfs`;
- CREATE TABLE `t_ds_udfs` (
- `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'key',
- `user_id` int(11) NOT NULL COMMENT 'user id',
- `func_name` varchar(100) NOT NULL COMMENT 'UDF function name',
- `class_name` varchar(255) NOT NULL COMMENT 'class of udf',
- `type` tinyint(4) NOT NULL COMMENT 'Udf function type',
- `arg_types` varchar(255) DEFAULT NULL COMMENT 'arguments types',
- `database` varchar(255) DEFAULT NULL COMMENT 'data base',
- `description` varchar(255) DEFAULT NULL,
- `resource_id` int(11) NOT NULL COMMENT 'resource id',
- `resource_name` varchar(255) NOT NULL COMMENT 'resource name',
- `create_time` datetime NOT NULL COMMENT 'create time',
- `update_time` datetime NOT NULL COMMENT 'update time',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Records of t_ds_udfs
- -- ----------------------------
- -- ----------------------------
- -- Table structure for t_ds_user
- -- ----------------------------
- DROP TABLE IF EXISTS `t_ds_user`;
- CREATE TABLE `t_ds_user` (
- `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'user id',
- `user_name` varchar(64) DEFAULT NULL COMMENT 'user name',
- `user_password` varchar(64) DEFAULT NULL COMMENT 'user password',
- `user_type` tinyint(4) DEFAULT NULL COMMENT 'user type, 0:administrator,1:ordinary user',
- `email` varchar(64) DEFAULT NULL COMMENT 'email',
- `phone` varchar(11) DEFAULT NULL COMMENT 'phone',
- `tenant_id` int(11) DEFAULT NULL COMMENT 'tenant id',
- `create_time` datetime DEFAULT NULL COMMENT 'create time',
- `update_time` datetime DEFAULT NULL COMMENT 'update time',
- `queue` varchar(64) DEFAULT NULL COMMENT 'queue',
- `state` tinyint(4) DEFAULT '1' COMMENT 'state 0:disable 1:enable',
- PRIMARY KEY (`id`),
- UNIQUE KEY `user_name_unique` (`user_name`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Records of t_ds_user
- -- ----------------------------
- -- ----------------------------
- -- Table structure for t_ds_worker_group
- -- ----------------------------
- DROP TABLE IF EXISTS `t_ds_worker_group`;
- CREATE TABLE `t_ds_worker_group` (
- `id` bigint(11) NOT NULL AUTO_INCREMENT COMMENT 'id',
- `name` varchar(255) NOT NULL COMMENT 'worker group name',
- `addr_list` text NULL DEFAULT NULL COMMENT 'worker addr list. split by [,]',
- `create_time` datetime NULL DEFAULT NULL COMMENT 'create time',
- `update_time` datetime NULL DEFAULT NULL COMMENT 'update time',
- PRIMARY KEY (`id`),
- UNIQUE KEY `name_unique` (`name`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Records of t_ds_worker_group
- -- ----------------------------
- -- ----------------------------
- -- Table structure for t_ds_version
- -- ----------------------------
- DROP TABLE IF EXISTS `t_ds_version`;
- CREATE TABLE `t_ds_version` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `version` varchar(200) NOT NULL,
- PRIMARY KEY (`id`),
- UNIQUE KEY `version_UNIQUE` (`version`)
- ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='version';
- -- ----------------------------
- -- Records of t_ds_version
- -- ----------------------------
- INSERT INTO `t_ds_version` VALUES ('1', '2.0.2');
- -- ----------------------------
- -- Records of t_ds_alertgroup
- -- ----------------------------
- INSERT INTO `t_ds_alertgroup`(alert_instance_ids, create_user_id, group_name, description, create_time, update_time)
- VALUES ("1,2", 1, 'default admin warning group', 'default admin warning group', '2018-11-29 10:20:39', '2018-11-29 10:20:39');
- -- ----------------------------
- -- Records of t_ds_user
- -- ----------------------------
- INSERT INTO `t_ds_user`
- VALUES ('1', 'admin', '7ad2410b2f4c074479a8937a28a22b8f', '0', 'xxx@qq.com', '', '0', '2018-03-27 15:48:50', '2018-10-24 17:40:22', null, 1);
- -- ----------------------------
- -- Table structure for t_ds_plugin_define
- -- ----------------------------
- SET sql_mode=(SELECT REPLACE(@@sql_mode,'ONLY_FULL_GROUP_BY',''));
- DROP TABLE IF EXISTS `t_ds_plugin_define`;
- CREATE TABLE `t_ds_plugin_define` (
- `id` int NOT NULL AUTO_INCREMENT,
- `plugin_name` varchar(100) NOT NULL COMMENT 'the name of plugin eg: email',
- `plugin_type` varchar(100) NOT NULL COMMENT 'plugin type . alert=alert plugin, job=job plugin',
- `plugin_params` text COMMENT 'plugin params',
- `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
- `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
- PRIMARY KEY (`id`),
- UNIQUE KEY `t_ds_plugin_define_UN` (`plugin_name`,`plugin_type`)
- ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Table structure for t_ds_alert_plugin_instance
- -- ----------------------------
- DROP TABLE IF EXISTS `t_ds_alert_plugin_instance`;
- CREATE TABLE `t_ds_alert_plugin_instance` (
- `id` int NOT NULL AUTO_INCREMENT,
- `plugin_define_id` int NOT NULL,
- `plugin_instance_params` text COMMENT 'plugin instance params. Also contain the params value which user input in web ui.',
- `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
- `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
- `instance_name` varchar(200) DEFAULT NULL COMMENT 'alert instance name',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Table structure for t_ds_environment
- -- ----------------------------
- DROP TABLE IF EXISTS `t_ds_environment`;
- CREATE TABLE `t_ds_environment` (
- `id` bigint(11) NOT NULL AUTO_INCREMENT COMMENT 'id',
- `code` bigint(20) DEFAULT NULL COMMENT 'encoding',
- `name` varchar(100) NOT NULL COMMENT 'environment name',
- `config` text NULL DEFAULT NULL COMMENT 'this config contains many environment variables config',
- `description` text NULL DEFAULT NULL COMMENT 'the details',
- `operator` int(11) DEFAULT NULL COMMENT 'operator user id',
- `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
- `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
- PRIMARY KEY (`id`),
- UNIQUE KEY `environment_name_unique` (`name`),
- UNIQUE KEY `environment_code_unique` (`code`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Table structure for t_ds_environment_worker_group_relation
- -- ----------------------------
- DROP TABLE IF EXISTS `t_ds_environment_worker_group_relation`;
- CREATE TABLE `t_ds_environment_worker_group_relation` (
- `id` bigint(11) NOT NULL AUTO_INCREMENT COMMENT 'id',
- `environment_code` bigint(20) NOT NULL COMMENT 'environment code',
- `worker_group` varchar(255) NOT NULL COMMENT 'worker group id',
- `operator` int(11) DEFAULT NULL COMMENT 'operator user id',
- `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
- `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
- PRIMARY KEY (`id`),
- UNIQUE KEY `environment_worker_group_unique` (`environment_code`,`worker_group`)
- ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
|