This repository was archived by the owner on Sep 10, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +33
-0
lines changed
modules/batchmake/database Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Original file line number Diff line number Diff line change @@ -10,4 +10,22 @@ CREATE TABLE IF NOT EXISTS batchmake_itemmetric (
10
10
metric_name character varying (64 ) NOT NULL ,
11
11
bms_name character varying (256 ) NOT NULL ,
12
12
PRIMARY KEY (itemmetric_id)
13
+ ) DEFAULT CHARSET= utf8;
14
+
15
+ CREATE TABLE IF NOT EXISTS condor_dag (
16
+ condor_dag_id bigint (20 ) NOT NULL AUTO_INCREMENT,
17
+ batchmake_task_id bigint (20 ) NOT NULL ,
18
+ log_filename text NOT NULL ,
19
+ PRIMARY KEY (condor_dag_id)
20
+ ) DEFAULT CHARSET= utf8;
21
+
22
+
23
+ CREATE TABLE IF NOT EXISTS condor_job (
24
+ condor_job_id bigint (20 ) NOT NULL AUTO_INCREMENT,
25
+ condor_dag_id bigint (20 ) NOT NULL ,
26
+ jobdefinition_filename text NOT NULL ,
27
+ output_filename text NOT NULL ,
28
+ error_filename text NOT NULL ,
29
+ log_filename text NOT NULL ,
30
+ PRIMARY KEY (condor_job_id)
13
31
) DEFAULT CHARSET= utf8;
Original file line number Diff line number Diff line change @@ -9,4 +9,19 @@ CREATE TABLE batchmake_itemmetric (
9
9
itemmetric_id serial PRIMARY KEY ,
10
10
metric_name character varying (64 ) NOT NULL ,
11
11
bms_name character varying (256 ) NOT NULL
12
+ );
13
+
14
+ CREATE TABLE condor_dag (
15
+ condor_dag_id serial PRIMARY KEY ,
16
+ batchmake_task_id bigint NOT NULL ,
17
+ log_filename text NOT NULL
18
+ );
19
+
20
+ CREATE TABLE condor_job (
21
+ condor_job_id serial PRIMARY KEY ,
22
+ condor_dag_id bigint NOT NULL ,
23
+ jobdefinition_filename text NOT NULL ,
24
+ output_filename text NOT NULL ,
25
+ error_filename text NOT NULL ,
26
+ log_filename text NOT NULL
12
27
);
You can’t perform that action at this time.
0 commit comments