dolphinscheduler_mysql.sql 48 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019
  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one or more
  3. * contributor license agreements. See the NOTICE file distributed with
  4. * this work for additional information regarding copyright ownership.
  5. * The ASF licenses this file to You under the Apache License, Version 2.0
  6. * (the "License"); you may not use this file except in compliance with
  7. * the License. You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. SET FOREIGN_KEY_CHECKS=0;
  18. -- ----------------------------
  19. -- Table structure for QRTZ_BLOB_TRIGGERS
  20. -- ----------------------------
  21. DROP TABLE IF EXISTS `QRTZ_BLOB_TRIGGERS`;
  22. CREATE TABLE `QRTZ_BLOB_TRIGGERS` (
  23. `SCHED_NAME` varchar(120) NOT NULL,
  24. `TRIGGER_NAME` varchar(200) NOT NULL,
  25. `TRIGGER_GROUP` varchar(200) NOT NULL,
  26. `BLOB_DATA` blob,
  27. PRIMARY KEY (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`),
  28. KEY `SCHED_NAME` (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`),
  29. CONSTRAINT `QRTZ_BLOB_TRIGGERS_ibfk_1` FOREIGN KEY (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`) REFERENCES `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`)
  30. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  31. -- ----------------------------
  32. -- Records of QRTZ_BLOB_TRIGGERS
  33. -- ----------------------------
  34. -- ----------------------------
  35. -- Table structure for QRTZ_CALENDARS
  36. -- ----------------------------
  37. DROP TABLE IF EXISTS `QRTZ_CALENDARS`;
  38. CREATE TABLE `QRTZ_CALENDARS` (
  39. `SCHED_NAME` varchar(120) NOT NULL,
  40. `CALENDAR_NAME` varchar(200) NOT NULL,
  41. `CALENDAR` blob NOT NULL,
  42. PRIMARY KEY (`SCHED_NAME`,`CALENDAR_NAME`)
  43. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  44. -- ----------------------------
  45. -- Records of QRTZ_CALENDARS
  46. -- ----------------------------
  47. -- ----------------------------
  48. -- Table structure for QRTZ_CRON_TRIGGERS
  49. -- ----------------------------
  50. DROP TABLE IF EXISTS `QRTZ_CRON_TRIGGERS`;
  51. CREATE TABLE `QRTZ_CRON_TRIGGERS` (
  52. `SCHED_NAME` varchar(120) NOT NULL,
  53. `TRIGGER_NAME` varchar(200) NOT NULL,
  54. `TRIGGER_GROUP` varchar(200) NOT NULL,
  55. `CRON_EXPRESSION` varchar(120) NOT NULL,
  56. `TIME_ZONE_ID` varchar(80) DEFAULT NULL,
  57. PRIMARY KEY (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`),
  58. CONSTRAINT `QRTZ_CRON_TRIGGERS_ibfk_1` FOREIGN KEY (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`) REFERENCES `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`)
  59. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  60. -- ----------------------------
  61. -- Records of QRTZ_CRON_TRIGGERS
  62. -- ----------------------------
  63. -- ----------------------------
  64. -- Table structure for QRTZ_FIRED_TRIGGERS
  65. -- ----------------------------
  66. DROP TABLE IF EXISTS `QRTZ_FIRED_TRIGGERS`;
  67. CREATE TABLE `QRTZ_FIRED_TRIGGERS` (
  68. `SCHED_NAME` varchar(120) NOT NULL,
  69. `ENTRY_ID` varchar(200) NOT NULL,
  70. `TRIGGER_NAME` varchar(200) NOT NULL,
  71. `TRIGGER_GROUP` varchar(200) NOT NULL,
  72. `INSTANCE_NAME` varchar(200) NOT NULL,
  73. `FIRED_TIME` bigint(13) NOT NULL,
  74. `SCHED_TIME` bigint(13) NOT NULL,
  75. `PRIORITY` int(11) NOT NULL,
  76. `STATE` varchar(16) NOT NULL,
  77. `JOB_NAME` varchar(200) DEFAULT NULL,
  78. `JOB_GROUP` varchar(200) DEFAULT NULL,
  79. `IS_NONCONCURRENT` varchar(1) DEFAULT NULL,
  80. `REQUESTS_RECOVERY` varchar(1) DEFAULT NULL,
  81. PRIMARY KEY (`SCHED_NAME`,`ENTRY_ID`),
  82. KEY `IDX_QRTZ_FT_TRIG_INST_NAME` (`SCHED_NAME`,`INSTANCE_NAME`),
  83. KEY `IDX_QRTZ_FT_INST_JOB_REQ_RCVRY` (`SCHED_NAME`,`INSTANCE_NAME`,`REQUESTS_RECOVERY`),
  84. KEY `IDX_QRTZ_FT_J_G` (`SCHED_NAME`,`JOB_NAME`,`JOB_GROUP`),
  85. KEY `IDX_QRTZ_FT_JG` (`SCHED_NAME`,`JOB_GROUP`),
  86. KEY `IDX_QRTZ_FT_T_G` (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`),
  87. KEY `IDX_QRTZ_FT_TG` (`SCHED_NAME`,`TRIGGER_GROUP`)
  88. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  89. -- ----------------------------
  90. -- Records of QRTZ_FIRED_TRIGGERS
  91. -- ----------------------------
  92. -- ----------------------------
  93. -- Table structure for QRTZ_JOB_DETAILS
  94. -- ----------------------------
  95. DROP TABLE IF EXISTS `QRTZ_JOB_DETAILS`;
  96. CREATE TABLE `QRTZ_JOB_DETAILS` (
  97. `SCHED_NAME` varchar(120) NOT NULL,
  98. `JOB_NAME` varchar(200) NOT NULL,
  99. `JOB_GROUP` varchar(200) NOT NULL,
  100. `DESCRIPTION` varchar(250) DEFAULT NULL,
  101. `JOB_CLASS_NAME` varchar(250) NOT NULL,
  102. `IS_DURABLE` varchar(1) NOT NULL,
  103. `IS_NONCONCURRENT` varchar(1) NOT NULL,
  104. `IS_UPDATE_DATA` varchar(1) NOT NULL,
  105. `REQUESTS_RECOVERY` varchar(1) NOT NULL,
  106. `JOB_DATA` blob,
  107. PRIMARY KEY (`SCHED_NAME`,`JOB_NAME`,`JOB_GROUP`),
  108. KEY `IDX_QRTZ_J_REQ_RECOVERY` (`SCHED_NAME`,`REQUESTS_RECOVERY`),
  109. KEY `IDX_QRTZ_J_GRP` (`SCHED_NAME`,`JOB_GROUP`)
  110. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  111. -- ----------------------------
  112. -- Records of QRTZ_JOB_DETAILS
  113. -- ----------------------------
  114. -- ----------------------------
  115. -- Table structure for QRTZ_LOCKS
  116. -- ----------------------------
  117. DROP TABLE IF EXISTS `QRTZ_LOCKS`;
  118. CREATE TABLE `QRTZ_LOCKS` (
  119. `SCHED_NAME` varchar(120) NOT NULL,
  120. `LOCK_NAME` varchar(40) NOT NULL,
  121. PRIMARY KEY (`SCHED_NAME`,`LOCK_NAME`)
  122. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  123. -- ----------------------------
  124. -- Records of QRTZ_LOCKS
  125. -- ----------------------------
  126. -- ----------------------------
  127. -- Table structure for QRTZ_PAUSED_TRIGGER_GRPS
  128. -- ----------------------------
  129. DROP TABLE IF EXISTS `QRTZ_PAUSED_TRIGGER_GRPS`;
  130. CREATE TABLE `QRTZ_PAUSED_TRIGGER_GRPS` (
  131. `SCHED_NAME` varchar(120) NOT NULL,
  132. `TRIGGER_GROUP` varchar(200) NOT NULL,
  133. PRIMARY KEY (`SCHED_NAME`,`TRIGGER_GROUP`)
  134. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  135. -- ----------------------------
  136. -- Records of QRTZ_PAUSED_TRIGGER_GRPS
  137. -- ----------------------------
  138. -- ----------------------------
  139. -- Table structure for QRTZ_SCHEDULER_STATE
  140. -- ----------------------------
  141. DROP TABLE IF EXISTS `QRTZ_SCHEDULER_STATE`;
  142. CREATE TABLE `QRTZ_SCHEDULER_STATE` (
  143. `SCHED_NAME` varchar(120) NOT NULL,
  144. `INSTANCE_NAME` varchar(200) NOT NULL,
  145. `LAST_CHECKIN_TIME` bigint(13) NOT NULL,
  146. `CHECKIN_INTERVAL` bigint(13) NOT NULL,
  147. PRIMARY KEY (`SCHED_NAME`,`INSTANCE_NAME`)
  148. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  149. -- ----------------------------
  150. -- Records of QRTZ_SCHEDULER_STATE
  151. -- ----------------------------
  152. -- ----------------------------
  153. -- Table structure for QRTZ_SIMPLE_TRIGGERS
  154. -- ----------------------------
  155. DROP TABLE IF EXISTS `QRTZ_SIMPLE_TRIGGERS`;
  156. CREATE TABLE `QRTZ_SIMPLE_TRIGGERS` (
  157. `SCHED_NAME` varchar(120) NOT NULL,
  158. `TRIGGER_NAME` varchar(200) NOT NULL,
  159. `TRIGGER_GROUP` varchar(200) NOT NULL,
  160. `REPEAT_COUNT` bigint(7) NOT NULL,
  161. `REPEAT_INTERVAL` bigint(12) NOT NULL,
  162. `TIMES_TRIGGERED` bigint(10) NOT NULL,
  163. PRIMARY KEY (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`),
  164. CONSTRAINT `QRTZ_SIMPLE_TRIGGERS_ibfk_1` FOREIGN KEY (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`) REFERENCES `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`)
  165. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  166. -- ----------------------------
  167. -- Records of QRTZ_SIMPLE_TRIGGERS
  168. -- ----------------------------
  169. -- ----------------------------
  170. -- Table structure for QRTZ_SIMPROP_TRIGGERS
  171. -- ----------------------------
  172. DROP TABLE IF EXISTS `QRTZ_SIMPROP_TRIGGERS`;
  173. CREATE TABLE `QRTZ_SIMPROP_TRIGGERS` (
  174. `SCHED_NAME` varchar(120) NOT NULL,
  175. `TRIGGER_NAME` varchar(200) NOT NULL,
  176. `TRIGGER_GROUP` varchar(200) NOT NULL,
  177. `STR_PROP_1` varchar(512) DEFAULT NULL,
  178. `STR_PROP_2` varchar(512) DEFAULT NULL,
  179. `STR_PROP_3` varchar(512) DEFAULT NULL,
  180. `INT_PROP_1` int(11) DEFAULT NULL,
  181. `INT_PROP_2` int(11) DEFAULT NULL,
  182. `LONG_PROP_1` bigint(20) DEFAULT NULL,
  183. `LONG_PROP_2` bigint(20) DEFAULT NULL,
  184. `DEC_PROP_1` decimal(13,4) DEFAULT NULL,
  185. `DEC_PROP_2` decimal(13,4) DEFAULT NULL,
  186. `BOOL_PROP_1` varchar(1) DEFAULT NULL,
  187. `BOOL_PROP_2` varchar(1) DEFAULT NULL,
  188. PRIMARY KEY (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`),
  189. CONSTRAINT `QRTZ_SIMPROP_TRIGGERS_ibfk_1` FOREIGN KEY (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`) REFERENCES `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`)
  190. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  191. -- ----------------------------
  192. -- Records of QRTZ_SIMPROP_TRIGGERS
  193. -- ----------------------------
  194. -- ----------------------------
  195. -- Table structure for QRTZ_TRIGGERS
  196. -- ----------------------------
  197. DROP TABLE IF EXISTS `QRTZ_TRIGGERS`;
  198. CREATE TABLE `QRTZ_TRIGGERS` (
  199. `SCHED_NAME` varchar(120) NOT NULL,
  200. `TRIGGER_NAME` varchar(200) NOT NULL,
  201. `TRIGGER_GROUP` varchar(200) NOT NULL,
  202. `JOB_NAME` varchar(200) NOT NULL,
  203. `JOB_GROUP` varchar(200) NOT NULL,
  204. `DESCRIPTION` varchar(250) DEFAULT NULL,
  205. `NEXT_FIRE_TIME` bigint(13) DEFAULT NULL,
  206. `PREV_FIRE_TIME` bigint(13) DEFAULT NULL,
  207. `PRIORITY` int(11) DEFAULT NULL,
  208. `TRIGGER_STATE` varchar(16) NOT NULL,
  209. `TRIGGER_TYPE` varchar(8) NOT NULL,
  210. `START_TIME` bigint(13) NOT NULL,
  211. `END_TIME` bigint(13) DEFAULT NULL,
  212. `CALENDAR_NAME` varchar(200) DEFAULT NULL,
  213. `MISFIRE_INSTR` smallint(2) DEFAULT NULL,
  214. `JOB_DATA` blob,
  215. PRIMARY KEY (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`),
  216. KEY `IDX_QRTZ_T_J` (`SCHED_NAME`,`JOB_NAME`,`JOB_GROUP`),
  217. KEY `IDX_QRTZ_T_JG` (`SCHED_NAME`,`JOB_GROUP`),
  218. KEY `IDX_QRTZ_T_C` (`SCHED_NAME`,`CALENDAR_NAME`),
  219. KEY `IDX_QRTZ_T_G` (`SCHED_NAME`,`TRIGGER_GROUP`),
  220. KEY `IDX_QRTZ_T_STATE` (`SCHED_NAME`,`TRIGGER_STATE`),
  221. KEY `IDX_QRTZ_T_N_STATE` (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`,`TRIGGER_STATE`),
  222. KEY `IDX_QRTZ_T_N_G_STATE` (`SCHED_NAME`,`TRIGGER_GROUP`,`TRIGGER_STATE`),
  223. KEY `IDX_QRTZ_T_NEXT_FIRE_TIME` (`SCHED_NAME`,`NEXT_FIRE_TIME`),
  224. KEY `IDX_QRTZ_T_NFT_ST` (`SCHED_NAME`,`TRIGGER_STATE`,`NEXT_FIRE_TIME`),
  225. KEY `IDX_QRTZ_T_NFT_MISFIRE` (`SCHED_NAME`,`MISFIRE_INSTR`,`NEXT_FIRE_TIME`),
  226. KEY `IDX_QRTZ_T_NFT_ST_MISFIRE` (`SCHED_NAME`,`MISFIRE_INSTR`,`NEXT_FIRE_TIME`,`TRIGGER_STATE`),
  227. KEY `IDX_QRTZ_T_NFT_ST_MISFIRE_GRP` (`SCHED_NAME`,`MISFIRE_INSTR`,`NEXT_FIRE_TIME`,`TRIGGER_GROUP`,`TRIGGER_STATE`),
  228. CONSTRAINT `QRTZ_TRIGGERS_ibfk_1` FOREIGN KEY (`SCHED_NAME`, `JOB_NAME`, `JOB_GROUP`) REFERENCES `QRTZ_JOB_DETAILS` (`SCHED_NAME`, `JOB_NAME`, `JOB_GROUP`)
  229. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  230. -- ----------------------------
  231. -- Records of QRTZ_TRIGGERS
  232. -- ----------------------------
  233. -- ----------------------------
  234. -- Table structure for t_ds_access_token
  235. -- ----------------------------
  236. DROP TABLE IF EXISTS `t_ds_access_token`;
  237. CREATE TABLE `t_ds_access_token` (
  238. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'key',
  239. `user_id` int(11) DEFAULT NULL COMMENT 'user id',
  240. `token` varchar(64) DEFAULT NULL COMMENT 'token',
  241. `expire_time` datetime DEFAULT NULL COMMENT 'end time of token ',
  242. `create_time` datetime DEFAULT NULL COMMENT 'create time',
  243. `update_time` datetime DEFAULT NULL COMMENT 'update time',
  244. PRIMARY KEY (`id`)
  245. ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
  246. -- ----------------------------
  247. -- Records of t_ds_access_token
  248. -- ----------------------------
  249. -- ----------------------------
  250. -- Table structure for t_ds_alert
  251. -- ----------------------------
  252. DROP TABLE IF EXISTS `t_ds_alert`;
  253. CREATE TABLE `t_ds_alert` (
  254. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'key',
  255. `title` varchar(64) DEFAULT NULL COMMENT 'title',
  256. `content` text COMMENT 'Message content (can be email, can be SMS. Mail is stored in JSON map, and SMS is string)',
  257. `alert_status` tinyint(4) DEFAULT '0' COMMENT '0:wait running,1:success,2:failed',
  258. `log` text COMMENT 'log',
  259. `alertgroup_id` int(11) DEFAULT NULL COMMENT 'alert group id',
  260. `create_time` datetime DEFAULT NULL COMMENT 'create time',
  261. `update_time` datetime DEFAULT NULL COMMENT 'update time',
  262. PRIMARY KEY (`id`)
  263. ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
  264. -- ----------------------------
  265. -- Records of t_ds_alert
  266. -- ----------------------------
  267. -- ----------------------------
  268. -- Table structure for t_ds_alertgroup
  269. -- ----------------------------
  270. DROP TABLE IF EXISTS `t_ds_alertgroup`;
  271. CREATE TABLE `t_ds_alertgroup`(
  272. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'key',
  273. `alert_instance_ids` varchar (255) DEFAULT NULL COMMENT 'alert instance ids',
  274. `create_user_id` int(11) DEFAULT NULL COMMENT 'create user id',
  275. `group_name` varchar(255) DEFAULT NULL COMMENT 'group name',
  276. `description` varchar(255) DEFAULT NULL,
  277. `create_time` datetime DEFAULT NULL COMMENT 'create time',
  278. `update_time` datetime DEFAULT NULL COMMENT 'update time',
  279. PRIMARY KEY (`id`),
  280. UNIQUE KEY `t_ds_alertgroup_name_un` (`group_name`)
  281. ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
  282. -- ----------------------------
  283. -- Records of t_ds_alertgroup
  284. -- ----------------------------
  285. -- ----------------------------
  286. -- Table structure for t_ds_command
  287. -- ----------------------------
  288. DROP TABLE IF EXISTS `t_ds_command`;
  289. CREATE TABLE `t_ds_command` (
  290. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'key',
  291. `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',
  292. `process_definition_code` bigint(20) NOT NULL COMMENT 'process definition code',
  293. `process_definition_version` int(11) DEFAULT '0' COMMENT 'process definition version',
  294. `process_instance_id` int(11) DEFAULT '0' COMMENT 'process instance id',
  295. `command_param` text COMMENT 'json command parameters',
  296. `task_depend_type` tinyint(4) DEFAULT NULL COMMENT 'Node dependency type: 0 current node, 1 forward, 2 backward',
  297. `failure_strategy` tinyint(4) DEFAULT '0' COMMENT 'Failed policy: 0 end, 1 continue',
  298. `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',
  299. `warning_group_id` int(11) DEFAULT NULL COMMENT 'warning group',
  300. `schedule_time` datetime DEFAULT NULL COMMENT 'schedule time',
  301. `start_time` datetime DEFAULT NULL COMMENT 'start time',
  302. `executor_id` int(11) DEFAULT NULL COMMENT 'executor id',
  303. `update_time` datetime DEFAULT NULL COMMENT 'update time',
  304. `process_instance_priority` int(11) DEFAULT NULL COMMENT 'process instance priority: 0 Highest,1 High,2 Medium,3 Low,4 Lowest',
  305. `worker_group` varchar(64) COMMENT 'worker group',
  306. `environment_code` bigint(20) DEFAULT '-1' COMMENT 'environment code',
  307. `dry_run` tinyint(4) DEFAULT '0' COMMENT 'dry run flag:0 normal, 1 dry run',
  308. PRIMARY KEY (`id`),
  309. KEY `priority_id_index` (`process_instance_priority`,`id`) USING BTREE
  310. ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
  311. -- ----------------------------
  312. -- Records of t_ds_command
  313. -- ----------------------------
  314. -- ----------------------------
  315. -- Table structure for t_ds_datasource
  316. -- ----------------------------
  317. DROP TABLE IF EXISTS `t_ds_datasource`;
  318. CREATE TABLE `t_ds_datasource` (
  319. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'key',
  320. `name` varchar(64) NOT NULL COMMENT 'data source name',
  321. `note` varchar(255) DEFAULT NULL COMMENT 'description',
  322. `type` tinyint(4) NOT NULL COMMENT 'data source type: 0:mysql,1:postgresql,2:hive,3:spark',
  323. `user_id` int(11) NOT NULL COMMENT 'the creator id',
  324. `connection_params` text NOT NULL COMMENT 'json connection params',
  325. `create_time` datetime NOT NULL COMMENT 'create time',
  326. `update_time` datetime DEFAULT NULL COMMENT 'update time',
  327. PRIMARY KEY (`id`),
  328. UNIQUE KEY `t_ds_datasource_name_un` (`name`, `type`)
  329. ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
  330. -- ----------------------------
  331. -- Records of t_ds_datasource
  332. -- ----------------------------
  333. -- ----------------------------
  334. -- Table structure for t_ds_error_command
  335. -- ----------------------------
  336. DROP TABLE IF EXISTS `t_ds_error_command`;
  337. CREATE TABLE `t_ds_error_command` (
  338. `id` int(11) NOT NULL COMMENT 'key',
  339. `command_type` tinyint(4) DEFAULT NULL COMMENT 'command type',
  340. `executor_id` int(11) DEFAULT NULL COMMENT 'executor id',
  341. `process_definition_code` bigint(20) NOT NULL COMMENT 'process definition code',
  342. `process_definition_version` int(11) DEFAULT '0' COMMENT 'process definition version',
  343. `process_instance_id` int(11) DEFAULT '0' COMMENT 'process instance id: 0',
  344. `command_param` text COMMENT 'json command parameters',
  345. `task_depend_type` tinyint(4) DEFAULT NULL COMMENT 'task depend type',
  346. `failure_strategy` tinyint(4) DEFAULT '0' COMMENT 'failure strategy',
  347. `warning_type` tinyint(4) DEFAULT '0' COMMENT 'warning type',
  348. `warning_group_id` int(11) DEFAULT NULL COMMENT 'warning group id',
  349. `schedule_time` datetime DEFAULT NULL COMMENT 'scheduler time',
  350. `start_time` datetime DEFAULT NULL COMMENT 'start time',
  351. `update_time` datetime DEFAULT NULL COMMENT 'update time',
  352. `process_instance_priority` int(11) DEFAULT NULL COMMENT 'process instance priority, 0 Highest,1 High,2 Medium,3 Low,4 Lowest',
  353. `worker_group` varchar(64) COMMENT 'worker group',
  354. `environment_code` bigint(20) DEFAULT '-1' COMMENT 'environment code',
  355. `message` text COMMENT 'message',
  356. `dry_run` tinyint(4) DEFAULT '0' COMMENT 'dry run flag: 0 normal, 1 dry run',
  357. PRIMARY KEY (`id`) USING BTREE
  358. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
  359. -- ----------------------------
  360. -- Records of t_ds_error_command
  361. -- ----------------------------
  362. -- ----------------------------
  363. -- Table structure for t_ds_process_definition
  364. -- ----------------------------
  365. DROP TABLE IF EXISTS `t_ds_process_definition`;
  366. CREATE TABLE `t_ds_process_definition` (
  367. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'self-increasing id',
  368. `code` bigint(20) NOT NULL COMMENT 'encoding',
  369. `name` varchar(255) DEFAULT NULL COMMENT 'process definition name',
  370. `version` int(11) DEFAULT '0' COMMENT 'process definition version',
  371. `description` text COMMENT 'description',
  372. `project_code` bigint(20) NOT NULL COMMENT 'project code',
  373. `release_state` tinyint(4) DEFAULT NULL COMMENT 'process definition release state:0:offline,1:online',
  374. `user_id` int(11) DEFAULT NULL COMMENT 'process definition creator id',
  375. `global_params` text COMMENT 'global parameters',
  376. `flag` tinyint(4) DEFAULT NULL COMMENT '0 not available, 1 available',
  377. `locations` text COMMENT 'Node location information',
  378. `warning_group_id` int(11) DEFAULT NULL COMMENT 'alert group id',
  379. `timeout` int(11) DEFAULT '0' COMMENT 'time out, unit: minute',
  380. `tenant_id` int(11) NOT NULL DEFAULT '-1' COMMENT 'tenant id',
  381. `execution_type` tinyint(4) DEFAULT '0' COMMENT 'execution_type 0:parallel,1:serial wait,2:serial discard,3:serial priority',
  382. `create_time` datetime NOT NULL COMMENT 'create time',
  383. `update_time` datetime NOT NULL COMMENT 'update time',
  384. PRIMARY KEY (`id`,`code`),
  385. UNIQUE KEY `process_unique` (`name`,`project_code`) USING BTREE
  386. ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
  387. -- ----------------------------
  388. -- Records of t_ds_process_definition
  389. -- ----------------------------
  390. -- ----------------------------
  391. -- Table structure for t_ds_process_definition_log
  392. -- ----------------------------
  393. DROP TABLE IF EXISTS `t_ds_process_definition_log`;
  394. CREATE TABLE `t_ds_process_definition_log` (
  395. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'self-increasing id',
  396. `code` bigint(20) NOT NULL COMMENT 'encoding',
  397. `name` varchar(200) DEFAULT NULL COMMENT 'process definition name',
  398. `version` int(11) DEFAULT '0' COMMENT 'process definition version',
  399. `description` text COMMENT 'description',
  400. `project_code` bigint(20) NOT NULL COMMENT 'project code',
  401. `release_state` tinyint(4) DEFAULT NULL COMMENT 'process definition release state:0:offline,1:online',
  402. `user_id` int(11) DEFAULT NULL COMMENT 'process definition creator id',
  403. `global_params` text COMMENT 'global parameters',
  404. `flag` tinyint(4) DEFAULT NULL COMMENT '0 not available, 1 available',
  405. `locations` text COMMENT 'Node location information',
  406. `warning_group_id` int(11) DEFAULT NULL COMMENT 'alert group id',
  407. `timeout` int(11) DEFAULT '0' COMMENT 'time out,unit: minute',
  408. `tenant_id` int(11) NOT NULL DEFAULT '-1' COMMENT 'tenant id',
  409. `execution_type` tinyint(4) DEFAULT '0' COMMENT 'execution_type 0:parallel,1:serial wait,2:serial discard,3:serial priority',
  410. `operator` int(11) DEFAULT NULL COMMENT 'operator user id',
  411. `operate_time` datetime DEFAULT NULL COMMENT 'operate time',
  412. `create_time` datetime NOT NULL COMMENT 'create time',
  413. `update_time` datetime NOT NULL COMMENT 'update time',
  414. PRIMARY KEY (`id`)
  415. ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
  416. -- ----------------------------
  417. -- Table structure for t_ds_task_definition
  418. -- ----------------------------
  419. DROP TABLE IF EXISTS `t_ds_task_definition`;
  420. CREATE TABLE `t_ds_task_definition` (
  421. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'self-increasing id',
  422. `code` bigint(20) NOT NULL COMMENT 'encoding',
  423. `name` varchar(200) DEFAULT NULL COMMENT 'task definition name',
  424. `version` int(11) DEFAULT '0' COMMENT 'task definition version',
  425. `description` text COMMENT 'description',
  426. `project_code` bigint(20) NOT NULL COMMENT 'project code',
  427. `user_id` int(11) DEFAULT NULL COMMENT 'task definition creator id',
  428. `task_type` varchar(50) NOT NULL COMMENT 'task type',
  429. `task_params` longtext COMMENT 'job custom parameters',
  430. `flag` tinyint(2) DEFAULT NULL COMMENT '0 not available, 1 available',
  431. `task_priority` tinyint(4) DEFAULT NULL COMMENT 'job priority',
  432. `worker_group` varchar(200) DEFAULT NULL COMMENT 'worker grouping',
  433. `environment_code` bigint(20) DEFAULT '-1' COMMENT 'environment code',
  434. `fail_retry_times` int(11) DEFAULT NULL COMMENT 'number of failed retries',
  435. `fail_retry_interval` int(11) DEFAULT NULL COMMENT 'failed retry interval',
  436. `timeout_flag` tinyint(2) DEFAULT '0' COMMENT 'timeout flag:0 close, 1 open',
  437. `timeout_notify_strategy` tinyint(4) DEFAULT NULL COMMENT 'timeout notification policy: 0 warning, 1 fail',
  438. `timeout` int(11) DEFAULT '0' COMMENT 'timeout length,unit: minute',
  439. `delay_time` int(11) DEFAULT '0' COMMENT 'delay execution time,unit: minute',
  440. `resource_ids` text COMMENT 'resource id, separated by comma',
  441. `create_time` datetime NOT NULL COMMENT 'create time',
  442. `update_time` datetime NOT NULL COMMENT 'update time',
  443. PRIMARY KEY (`id`,`code`)
  444. ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
  445. -- ----------------------------
  446. -- Table structure for t_ds_task_definition_log
  447. -- ----------------------------
  448. DROP TABLE IF EXISTS `t_ds_task_definition_log`;
  449. CREATE TABLE `t_ds_task_definition_log` (
  450. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'self-increasing id',
  451. `code` bigint(20) NOT NULL COMMENT 'encoding',
  452. `name` varchar(200) DEFAULT NULL COMMENT 'task definition name',
  453. `version` int(11) DEFAULT '0' COMMENT 'task definition version',
  454. `description` text COMMENT 'description',
  455. `project_code` bigint(20) NOT NULL COMMENT 'project code',
  456. `user_id` int(11) DEFAULT NULL COMMENT 'task definition creator id',
  457. `task_type` varchar(50) NOT NULL COMMENT 'task type',
  458. `task_params` text COMMENT 'job custom parameters',
  459. `flag` tinyint(2) DEFAULT NULL COMMENT '0 not available, 1 available',
  460. `task_priority` tinyint(4) DEFAULT NULL COMMENT 'job priority',
  461. `worker_group` varchar(200) DEFAULT NULL COMMENT 'worker grouping',
  462. `environment_code` bigint(20) DEFAULT '-1' COMMENT 'environment code',
  463. `fail_retry_times` int(11) DEFAULT NULL COMMENT 'number of failed retries',
  464. `fail_retry_interval` int(11) DEFAULT NULL COMMENT 'failed retry interval',
  465. `timeout_flag` tinyint(2) DEFAULT '0' COMMENT 'timeout flag:0 close, 1 open',
  466. `timeout_notify_strategy` tinyint(4) DEFAULT NULL COMMENT 'timeout notification policy: 0 warning, 1 fail',
  467. `timeout` int(11) DEFAULT '0' COMMENT 'timeout length,unit: minute',
  468. `delay_time` int(11) DEFAULT '0' COMMENT 'delay execution time,unit: minute',
  469. `resource_ids` text DEFAULT NULL COMMENT 'resource id, separated by comma',
  470. `operator` int(11) DEFAULT NULL COMMENT 'operator user id',
  471. `operate_time` datetime DEFAULT NULL COMMENT 'operate time',
  472. `create_time` datetime NOT NULL COMMENT 'create time',
  473. `update_time` datetime NOT NULL COMMENT 'update time',
  474. PRIMARY KEY (`id`)
  475. ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
  476. -- ----------------------------
  477. -- Table structure for t_ds_process_task_relation
  478. -- ----------------------------
  479. DROP TABLE IF EXISTS `t_ds_process_task_relation`;
  480. CREATE TABLE `t_ds_process_task_relation` (
  481. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'self-increasing id',
  482. `name` varchar(200) DEFAULT NULL COMMENT 'relation name',
  483. `project_code` bigint(20) NOT NULL COMMENT 'project code',
  484. `process_definition_code` bigint(20) NOT NULL COMMENT 'process code',
  485. `process_definition_version` int(11) NOT NULL COMMENT 'process version',
  486. `pre_task_code` bigint(20) NOT NULL COMMENT 'pre task code',
  487. `pre_task_version` int(11) NOT NULL COMMENT 'pre task version',
  488. `post_task_code` bigint(20) NOT NULL COMMENT 'post task code',
  489. `post_task_version` int(11) NOT NULL COMMENT 'post task version',
  490. `condition_type` tinyint(2) DEFAULT NULL COMMENT 'condition type : 0 none, 1 judge 2 delay',
  491. `condition_params` text COMMENT 'condition params(json)',
  492. `create_time` datetime NOT NULL COMMENT 'create time',
  493. `update_time` datetime NOT NULL COMMENT 'update time',
  494. PRIMARY KEY (`id`)
  495. ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
  496. -- ----------------------------
  497. -- Table structure for t_ds_process_task_relation_log
  498. -- ----------------------------
  499. DROP TABLE IF EXISTS `t_ds_process_task_relation_log`;
  500. CREATE TABLE `t_ds_process_task_relation_log` (
  501. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'self-increasing id',
  502. `name` varchar(200) DEFAULT NULL COMMENT 'relation name',
  503. `project_code` bigint(20) NOT NULL COMMENT 'project code',
  504. `process_definition_code` bigint(20) NOT NULL COMMENT 'process code',
  505. `process_definition_version` int(11) NOT NULL COMMENT 'process version',
  506. `pre_task_code` bigint(20) NOT NULL COMMENT 'pre task code',
  507. `pre_task_version` int(11) NOT NULL COMMENT 'pre task version',
  508. `post_task_code` bigint(20) NOT NULL COMMENT 'post task code',
  509. `post_task_version` int(11) NOT NULL COMMENT 'post task version',
  510. `condition_type` tinyint(2) DEFAULT NULL COMMENT 'condition type : 0 none, 1 judge 2 delay',
  511. `condition_params` text COMMENT 'condition params(json)',
  512. `operator` int(11) DEFAULT NULL COMMENT 'operator user id',
  513. `operate_time` datetime DEFAULT NULL COMMENT 'operate time',
  514. `create_time` datetime NOT NULL COMMENT 'create time',
  515. `update_time` datetime NOT NULL COMMENT 'update time',
  516. PRIMARY KEY (`id`)
  517. ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
  518. -- ----------------------------
  519. -- Table structure for t_ds_process_instance
  520. -- ----------------------------
  521. DROP TABLE IF EXISTS `t_ds_process_instance`;
  522. CREATE TABLE `t_ds_process_instance` (
  523. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'key',
  524. `name` varchar(255) DEFAULT NULL COMMENT 'process instance name',
  525. `process_definition_code` bigint(20) NOT NULL COMMENT 'process definition code',
  526. `process_definition_version` int(11) DEFAULT '0' COMMENT 'process definition version',
  527. `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',
  528. `recovery` tinyint(4) DEFAULT NULL COMMENT 'process instance failover flag:0:normal,1:failover instance',
  529. `start_time` datetime DEFAULT NULL COMMENT 'process instance start time',
  530. `end_time` datetime DEFAULT NULL COMMENT 'process instance end time',
  531. `run_times` int(11) DEFAULT NULL COMMENT 'process instance run times',
  532. `host` varchar(135) DEFAULT NULL COMMENT 'process instance host',
  533. `command_type` tinyint(4) DEFAULT NULL COMMENT 'command type',
  534. `command_param` text COMMENT 'json command parameters',
  535. `task_depend_type` tinyint(4) DEFAULT NULL COMMENT 'task depend type. 0: only current node,1:before the node,2:later nodes',
  536. `max_try_times` tinyint(4) DEFAULT '0' COMMENT 'max try times',
  537. `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',
  538. `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',
  539. `warning_group_id` int(11) DEFAULT NULL COMMENT 'warning group id',
  540. `schedule_time` datetime DEFAULT NULL COMMENT 'schedule time',
  541. `command_start_time` datetime DEFAULT NULL COMMENT 'command start time',
  542. `global_params` text COMMENT 'global parameters',
  543. `flag` tinyint(4) DEFAULT '1' COMMENT 'flag',
  544. `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  545. `is_sub_process` int(11) DEFAULT '0' COMMENT 'flag, whether the process is sub process',
  546. `executor_id` int(11) NOT NULL COMMENT 'executor id',
  547. `history_cmd` text COMMENT 'history commands of process instance operation',
  548. `process_instance_priority` int(11) DEFAULT NULL COMMENT 'process instance priority. 0 Highest,1 High,2 Medium,3 Low,4 Lowest',
  549. `worker_group` varchar(64) DEFAULT NULL COMMENT 'worker group id',
  550. `environment_code` bigint(20) DEFAULT '-1' COMMENT 'environment code',
  551. `timeout` int(11) DEFAULT '0' COMMENT 'time out',
  552. `tenant_id` int(11) NOT NULL DEFAULT '-1' COMMENT 'tenant id',
  553. `var_pool` longtext COMMENT 'var_pool',
  554. `dry_run` tinyint(4) DEFAULT '0' COMMENT 'dry run flag:0 normal, 1 dry run',
  555. `next_process_instance_id` int(11) DEFAULT '0' COMMENT 'serial queue next processInstanceId',
  556. PRIMARY KEY (`id`),
  557. KEY `process_instance_index` (`process_definition_code`,`id`) USING BTREE,
  558. KEY `start_time_index` (`start_time`) USING BTREE
  559. ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
  560. -- ----------------------------
  561. -- Records of t_ds_process_instance
  562. -- ----------------------------
  563. -- ----------------------------
  564. -- Table structure for t_ds_project
  565. -- ----------------------------
  566. DROP TABLE IF EXISTS `t_ds_project`;
  567. CREATE TABLE `t_ds_project` (
  568. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'key',
  569. `name` varchar(100) DEFAULT NULL COMMENT 'project name',
  570. `code` bigint(20) NOT NULL COMMENT 'encoding',
  571. `description` varchar(200) DEFAULT NULL,
  572. `user_id` int(11) DEFAULT NULL COMMENT 'creator id',
  573. `flag` tinyint(4) DEFAULT '1' COMMENT '0 not available, 1 available',
  574. `create_time` datetime NOT NULL COMMENT 'create time',
  575. `update_time` datetime DEFAULT NULL COMMENT 'update time',
  576. PRIMARY KEY (`id`),
  577. KEY `user_id_index` (`user_id`) USING BTREE
  578. ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
  579. -- ----------------------------
  580. -- Records of t_ds_project
  581. -- ----------------------------
  582. -- ----------------------------
  583. -- Table structure for t_ds_queue
  584. -- ----------------------------
  585. DROP TABLE IF EXISTS `t_ds_queue`;
  586. CREATE TABLE `t_ds_queue` (
  587. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'key',
  588. `queue_name` varchar(64) DEFAULT NULL COMMENT 'queue name',
  589. `queue` varchar(64) DEFAULT NULL COMMENT 'yarn queue name',
  590. `create_time` datetime DEFAULT NULL COMMENT 'create time',
  591. `update_time` datetime DEFAULT NULL COMMENT 'update time',
  592. PRIMARY KEY (`id`)
  593. ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
  594. -- ----------------------------
  595. -- Records of t_ds_queue
  596. -- ----------------------------
  597. INSERT INTO `t_ds_queue` VALUES ('1', 'default', 'default', null, null);
  598. -- ----------------------------
  599. -- Table structure for t_ds_relation_datasource_user
  600. -- ----------------------------
  601. DROP TABLE IF EXISTS `t_ds_relation_datasource_user`;
  602. CREATE TABLE `t_ds_relation_datasource_user` (
  603. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'key',
  604. `user_id` int(11) NOT NULL COMMENT 'user id',
  605. `datasource_id` int(11) DEFAULT NULL COMMENT 'data source id',
  606. `perm` int(11) DEFAULT '1' COMMENT 'limits of authority',
  607. `create_time` datetime DEFAULT NULL COMMENT 'create time',
  608. `update_time` datetime DEFAULT NULL COMMENT 'update time',
  609. PRIMARY KEY (`id`)
  610. ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
  611. -- ----------------------------
  612. -- Records of t_ds_relation_datasource_user
  613. -- ----------------------------
  614. -- ----------------------------
  615. -- Table structure for t_ds_relation_process_instance
  616. -- ----------------------------
  617. DROP TABLE IF EXISTS `t_ds_relation_process_instance`;
  618. CREATE TABLE `t_ds_relation_process_instance` (
  619. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'key',
  620. `parent_process_instance_id` int(11) DEFAULT NULL COMMENT 'parent process instance id',
  621. `parent_task_instance_id` int(11) DEFAULT NULL COMMENT 'parent process instance id',
  622. `process_instance_id` int(11) DEFAULT NULL COMMENT 'child process instance id',
  623. PRIMARY KEY (`id`)
  624. ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
  625. -- ----------------------------
  626. -- Records of t_ds_relation_process_instance
  627. -- ----------------------------
  628. -- ----------------------------
  629. -- Table structure for t_ds_relation_project_user
  630. -- ----------------------------
  631. DROP TABLE IF EXISTS `t_ds_relation_project_user`;
  632. CREATE TABLE `t_ds_relation_project_user` (
  633. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'key',
  634. `user_id` int(11) NOT NULL COMMENT 'user id',
  635. `project_id` int(11) DEFAULT NULL COMMENT 'project id',
  636. `perm` int(11) DEFAULT '1' COMMENT 'limits of authority',
  637. `create_time` datetime DEFAULT NULL COMMENT 'create time',
  638. `update_time` datetime DEFAULT NULL COMMENT 'update time',
  639. PRIMARY KEY (`id`),
  640. KEY `user_id_index` (`user_id`) USING BTREE
  641. ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
  642. -- ----------------------------
  643. -- Records of t_ds_relation_project_user
  644. -- ----------------------------
  645. -- ----------------------------
  646. -- Table structure for t_ds_relation_resources_user
  647. -- ----------------------------
  648. DROP TABLE IF EXISTS `t_ds_relation_resources_user`;
  649. CREATE TABLE `t_ds_relation_resources_user` (
  650. `id` int(11) NOT NULL AUTO_INCREMENT,
  651. `user_id` int(11) NOT NULL COMMENT 'user id',
  652. `resources_id` int(11) DEFAULT NULL COMMENT 'resource id',
  653. `perm` int(11) DEFAULT '1' COMMENT 'limits of authority',
  654. `create_time` datetime DEFAULT NULL COMMENT 'create time',
  655. `update_time` datetime DEFAULT NULL COMMENT 'update time',
  656. PRIMARY KEY (`id`)
  657. ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
  658. -- ----------------------------
  659. -- Records of t_ds_relation_resources_user
  660. -- ----------------------------
  661. -- ----------------------------
  662. -- Table structure for t_ds_relation_udfs_user
  663. -- ----------------------------
  664. DROP TABLE IF EXISTS `t_ds_relation_udfs_user`;
  665. CREATE TABLE `t_ds_relation_udfs_user` (
  666. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'key',
  667. `user_id` int(11) NOT NULL COMMENT 'userid',
  668. `udf_id` int(11) DEFAULT NULL COMMENT 'udf id',
  669. `perm` int(11) DEFAULT '1' COMMENT 'limits of authority',
  670. `create_time` datetime DEFAULT NULL COMMENT 'create time',
  671. `update_time` datetime DEFAULT NULL COMMENT 'update time',
  672. PRIMARY KEY (`id`)
  673. ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
  674. -- ----------------------------
  675. -- Table structure for t_ds_resources
  676. -- ----------------------------
  677. DROP TABLE IF EXISTS `t_ds_resources`;
  678. CREATE TABLE `t_ds_resources` (
  679. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'key',
  680. `alias` varchar(64) DEFAULT NULL COMMENT 'alias',
  681. `file_name` varchar(64) DEFAULT NULL COMMENT 'file name',
  682. `description` varchar(255) DEFAULT NULL,
  683. `user_id` int(11) DEFAULT NULL COMMENT 'user id',
  684. `type` tinyint(4) DEFAULT NULL COMMENT 'resource type,0:FILE,1:UDF',
  685. `size` bigint(20) DEFAULT NULL COMMENT 'resource size',
  686. `create_time` datetime DEFAULT NULL COMMENT 'create time',
  687. `update_time` datetime DEFAULT NULL COMMENT 'update time',
  688. `pid` int(11) DEFAULT NULL,
  689. `full_name` varchar(64) DEFAULT NULL,
  690. `is_directory` tinyint(4) DEFAULT NULL,
  691. PRIMARY KEY (`id`),
  692. UNIQUE KEY `t_ds_resources_un` (`full_name`,`type`)
  693. ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
  694. -- ----------------------------
  695. -- Records of t_ds_resources
  696. -- ----------------------------
  697. -- ----------------------------
  698. -- Table structure for t_ds_schedules
  699. -- ----------------------------
  700. DROP TABLE IF EXISTS `t_ds_schedules`;
  701. CREATE TABLE `t_ds_schedules` (
  702. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'key',
  703. `process_definition_code` bigint(20) NOT NULL COMMENT 'process definition code',
  704. `start_time` datetime NOT NULL COMMENT 'start time',
  705. `end_time` datetime NOT NULL COMMENT 'end time',
  706. `timezone_id` varchar(40) DEFAULT NULL COMMENT 'schedule timezone id',
  707. `crontab` varchar(255) NOT NULL COMMENT 'crontab description',
  708. `failure_strategy` tinyint(4) NOT NULL COMMENT 'failure strategy. 0:end,1:continue',
  709. `user_id` int(11) NOT NULL COMMENT 'user id',
  710. `release_state` tinyint(4) NOT NULL COMMENT 'release state. 0:offline,1:online ',
  711. `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',
  712. `warning_group_id` int(11) DEFAULT NULL COMMENT 'alert group id',
  713. `process_instance_priority` int(11) DEFAULT NULL COMMENT 'process instance priority:0 Highest,1 High,2 Medium,3 Low,4 Lowest',
  714. `worker_group` varchar(64) DEFAULT '' COMMENT 'worker group id',
  715. `environment_code` bigint(20) DEFAULT '-1' COMMENT 'environment code',
  716. `create_time` datetime NOT NULL COMMENT 'create time',
  717. `update_time` datetime NOT NULL COMMENT 'update time',
  718. PRIMARY KEY (`id`)
  719. ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
  720. -- ----------------------------
  721. -- Records of t_ds_schedules
  722. -- ----------------------------
  723. -- ----------------------------
  724. -- Table structure for t_ds_session
  725. -- ----------------------------
  726. DROP TABLE IF EXISTS `t_ds_session`;
  727. CREATE TABLE `t_ds_session` (
  728. `id` varchar(64) NOT NULL COMMENT 'key',
  729. `user_id` int(11) DEFAULT NULL COMMENT 'user id',
  730. `ip` varchar(45) DEFAULT NULL COMMENT 'ip',
  731. `last_login_time` datetime DEFAULT NULL COMMENT 'last login time',
  732. PRIMARY KEY (`id`)
  733. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  734. -- ----------------------------
  735. -- Records of t_ds_session
  736. -- ----------------------------
  737. -- ----------------------------
  738. -- Table structure for t_ds_task_instance
  739. -- ----------------------------
  740. DROP TABLE IF EXISTS `t_ds_task_instance`;
  741. CREATE TABLE `t_ds_task_instance` (
  742. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'key',
  743. `name` varchar(255) DEFAULT NULL COMMENT 'task name',
  744. `task_type` varchar(50) NOT NULL COMMENT 'task type',
  745. `task_code` bigint(20) NOT NULL COMMENT 'task definition code',
  746. `task_definition_version` int(11) DEFAULT '0' COMMENT 'task definition version',
  747. `process_instance_id` int(11) DEFAULT NULL COMMENT 'process instance id',
  748. `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',
  749. `submit_time` datetime DEFAULT NULL COMMENT 'task submit time',
  750. `start_time` datetime DEFAULT NULL COMMENT 'task start time',
  751. `end_time` datetime DEFAULT NULL COMMENT 'task end time',
  752. `host` varchar(135) DEFAULT NULL COMMENT 'host of task running on',
  753. `execute_path` varchar(200) DEFAULT NULL COMMENT 'task execute path in the host',
  754. `log_path` varchar(200) DEFAULT NULL COMMENT 'task log path',
  755. `alert_flag` tinyint(4) DEFAULT NULL COMMENT 'whether alert',
  756. `retry_times` int(4) DEFAULT '0' COMMENT 'task retry times',
  757. `pid` int(4) DEFAULT NULL COMMENT 'pid of task',
  758. `app_link` text COMMENT 'yarn app id',
  759. `task_params` text COMMENT 'job custom parameters',
  760. `flag` tinyint(4) DEFAULT '1' COMMENT '0 not available, 1 available',
  761. `retry_interval` int(4) DEFAULT NULL COMMENT 'retry interval when task failed ',
  762. `max_retry_times` int(2) DEFAULT NULL COMMENT 'max retry times',
  763. `task_instance_priority` int(11) DEFAULT NULL COMMENT 'task instance priority:0 Highest,1 High,2 Medium,3 Low,4 Lowest',
  764. `worker_group` varchar(64) DEFAULT NULL COMMENT 'worker group id',
  765. `environment_code` bigint(20) DEFAULT '-1' COMMENT 'environment code',
  766. `environment_config` text COMMENT 'this config contains many environment variables config',
  767. `executor_id` int(11) DEFAULT NULL,
  768. `first_submit_time` datetime DEFAULT NULL COMMENT 'task first submit time',
  769. `delay_time` int(4) DEFAULT '0' COMMENT 'task delay execution time',
  770. `var_pool` longtext COMMENT 'var_pool',
  771. `dry_run` tinyint(4) DEFAULT '0' COMMENT 'dry run flag: 0 normal, 1 dry run',
  772. PRIMARY KEY (`id`),
  773. KEY `process_instance_id` (`process_instance_id`) USING BTREE,
  774. CONSTRAINT `foreign_key_instance_id` FOREIGN KEY (`process_instance_id`) REFERENCES `t_ds_process_instance` (`id`) ON DELETE CASCADE
  775. ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
  776. -- ----------------------------
  777. -- Records of t_ds_task_instance
  778. -- ----------------------------
  779. -- ----------------------------
  780. -- Table structure for t_ds_tenant
  781. -- ----------------------------
  782. DROP TABLE IF EXISTS `t_ds_tenant`;
  783. CREATE TABLE `t_ds_tenant` (
  784. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'key',
  785. `tenant_code` varchar(64) DEFAULT NULL COMMENT 'tenant code',
  786. `description` varchar(255) DEFAULT NULL,
  787. `queue_id` int(11) DEFAULT NULL COMMENT 'queue id',
  788. `create_time` datetime DEFAULT NULL COMMENT 'create time',
  789. `update_time` datetime DEFAULT NULL COMMENT 'update time',
  790. PRIMARY KEY (`id`)
  791. ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
  792. -- ----------------------------
  793. -- Records of t_ds_tenant
  794. -- ----------------------------
  795. -- ----------------------------
  796. -- Table structure for t_ds_udfs
  797. -- ----------------------------
  798. DROP TABLE IF EXISTS `t_ds_udfs`;
  799. CREATE TABLE `t_ds_udfs` (
  800. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'key',
  801. `user_id` int(11) NOT NULL COMMENT 'user id',
  802. `func_name` varchar(100) NOT NULL COMMENT 'UDF function name',
  803. `class_name` varchar(255) NOT NULL COMMENT 'class of udf',
  804. `type` tinyint(4) NOT NULL COMMENT 'Udf function type',
  805. `arg_types` varchar(255) DEFAULT NULL COMMENT 'arguments types',
  806. `database` varchar(255) DEFAULT NULL COMMENT 'data base',
  807. `description` varchar(255) DEFAULT NULL,
  808. `resource_id` int(11) NOT NULL COMMENT 'resource id',
  809. `resource_name` varchar(255) NOT NULL COMMENT 'resource name',
  810. `create_time` datetime NOT NULL COMMENT 'create time',
  811. `update_time` datetime NOT NULL COMMENT 'update time',
  812. PRIMARY KEY (`id`)
  813. ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
  814. -- ----------------------------
  815. -- Records of t_ds_udfs
  816. -- ----------------------------
  817. -- ----------------------------
  818. -- Table structure for t_ds_user
  819. -- ----------------------------
  820. DROP TABLE IF EXISTS `t_ds_user`;
  821. CREATE TABLE `t_ds_user` (
  822. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'user id',
  823. `user_name` varchar(64) DEFAULT NULL COMMENT 'user name',
  824. `user_password` varchar(64) DEFAULT NULL COMMENT 'user password',
  825. `user_type` tinyint(4) DEFAULT NULL COMMENT 'user type, 0:administrator,1:ordinary user',
  826. `email` varchar(64) DEFAULT NULL COMMENT 'email',
  827. `phone` varchar(11) DEFAULT NULL COMMENT 'phone',
  828. `tenant_id` int(11) DEFAULT NULL COMMENT 'tenant id',
  829. `create_time` datetime DEFAULT NULL COMMENT 'create time',
  830. `update_time` datetime DEFAULT NULL COMMENT 'update time',
  831. `queue` varchar(64) DEFAULT NULL COMMENT 'queue',
  832. `state` tinyint(4) DEFAULT '1' COMMENT 'state 0:disable 1:enable',
  833. PRIMARY KEY (`id`),
  834. UNIQUE KEY `user_name_unique` (`user_name`)
  835. ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
  836. -- ----------------------------
  837. -- Records of t_ds_user
  838. -- ----------------------------
  839. -- ----------------------------
  840. -- Table structure for t_ds_worker_group
  841. -- ----------------------------
  842. DROP TABLE IF EXISTS `t_ds_worker_group`;
  843. CREATE TABLE `t_ds_worker_group` (
  844. `id` bigint(11) NOT NULL AUTO_INCREMENT COMMENT 'id',
  845. `name` varchar(255) NOT NULL COMMENT 'worker group name',
  846. `addr_list` text NULL DEFAULT NULL COMMENT 'worker addr list. split by [,]',
  847. `create_time` datetime NULL DEFAULT NULL COMMENT 'create time',
  848. `update_time` datetime NULL DEFAULT NULL COMMENT 'update time',
  849. PRIMARY KEY (`id`),
  850. UNIQUE KEY `name_unique` (`name`)
  851. ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
  852. -- ----------------------------
  853. -- Records of t_ds_worker_group
  854. -- ----------------------------
  855. -- ----------------------------
  856. -- Table structure for t_ds_version
  857. -- ----------------------------
  858. DROP TABLE IF EXISTS `t_ds_version`;
  859. CREATE TABLE `t_ds_version` (
  860. `id` int(11) NOT NULL AUTO_INCREMENT,
  861. `version` varchar(200) NOT NULL,
  862. PRIMARY KEY (`id`),
  863. UNIQUE KEY `version_UNIQUE` (`version`)
  864. ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='version';
  865. -- ----------------------------
  866. -- Records of t_ds_version
  867. -- ----------------------------
  868. INSERT INTO `t_ds_version` VALUES ('1', '2.0.2');
  869. -- ----------------------------
  870. -- Records of t_ds_alertgroup
  871. -- ----------------------------
  872. INSERT INTO `t_ds_alertgroup`(alert_instance_ids, create_user_id, group_name, description, create_time, update_time)
  873. VALUES ("1,2", 1, 'default admin warning group', 'default admin warning group', '2018-11-29 10:20:39', '2018-11-29 10:20:39');
  874. -- ----------------------------
  875. -- Records of t_ds_user
  876. -- ----------------------------
  877. INSERT INTO `t_ds_user`
  878. VALUES ('1', 'admin', '7ad2410b2f4c074479a8937a28a22b8f', '0', 'xxx@qq.com', '', '0', '2018-03-27 15:48:50', '2018-10-24 17:40:22', null, 1);
  879. -- ----------------------------
  880. -- Table structure for t_ds_plugin_define
  881. -- ----------------------------
  882. SET sql_mode=(SELECT REPLACE(@@sql_mode,'ONLY_FULL_GROUP_BY',''));
  883. DROP TABLE IF EXISTS `t_ds_plugin_define`;
  884. CREATE TABLE `t_ds_plugin_define` (
  885. `id` int NOT NULL AUTO_INCREMENT,
  886. `plugin_name` varchar(100) NOT NULL COMMENT 'the name of plugin eg: email',
  887. `plugin_type` varchar(100) NOT NULL COMMENT 'plugin type . alert=alert plugin, job=job plugin',
  888. `plugin_params` text COMMENT 'plugin params',
  889. `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  890. `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  891. PRIMARY KEY (`id`),
  892. UNIQUE KEY `t_ds_plugin_define_UN` (`plugin_name`,`plugin_type`)
  893. ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
  894. -- ----------------------------
  895. -- Table structure for t_ds_alert_plugin_instance
  896. -- ----------------------------
  897. DROP TABLE IF EXISTS `t_ds_alert_plugin_instance`;
  898. CREATE TABLE `t_ds_alert_plugin_instance` (
  899. `id` int NOT NULL AUTO_INCREMENT,
  900. `plugin_define_id` int NOT NULL,
  901. `plugin_instance_params` text COMMENT 'plugin instance params. Also contain the params value which user input in web ui.',
  902. `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  903. `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  904. `instance_name` varchar(200) DEFAULT NULL COMMENT 'alert instance name',
  905. PRIMARY KEY (`id`)
  906. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  907. -- ----------------------------
  908. -- Table structure for t_ds_environment
  909. -- ----------------------------
  910. DROP TABLE IF EXISTS `t_ds_environment`;
  911. CREATE TABLE `t_ds_environment` (
  912. `id` bigint(11) NOT NULL AUTO_INCREMENT COMMENT 'id',
  913. `code` bigint(20) DEFAULT NULL COMMENT 'encoding',
  914. `name` varchar(100) NOT NULL COMMENT 'environment name',
  915. `config` text NULL DEFAULT NULL COMMENT 'this config contains many environment variables config',
  916. `description` text NULL DEFAULT NULL COMMENT 'the details',
  917. `operator` int(11) DEFAULT NULL COMMENT 'operator user id',
  918. `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  919. `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  920. PRIMARY KEY (`id`),
  921. UNIQUE KEY `environment_name_unique` (`name`),
  922. UNIQUE KEY `environment_code_unique` (`code`)
  923. ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
  924. -- ----------------------------
  925. -- Table structure for t_ds_environment_worker_group_relation
  926. -- ----------------------------
  927. DROP TABLE IF EXISTS `t_ds_environment_worker_group_relation`;
  928. CREATE TABLE `t_ds_environment_worker_group_relation` (
  929. `id` bigint(11) NOT NULL AUTO_INCREMENT COMMENT 'id',
  930. `environment_code` bigint(20) NOT NULL COMMENT 'environment code',
  931. `worker_group` varchar(255) NOT NULL COMMENT 'worker group id',
  932. `operator` int(11) DEFAULT NULL COMMENT 'operator user id',
  933. `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  934. `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  935. PRIMARY KEY (`id`),
  936. UNIQUE KEY `environment_worker_group_unique` (`environment_code`,`worker_group`)
  937. ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;