Skip to content
Snippets Groups Projects
Commit 3de084f6 authored by Jessica Severin's avatar Jessica Severin
Browse files

changed hive.process_id to varchar[40] to handle extended syntax for

lsf job arrays (e.g. 72344[3]).
Also changed analysis_job index (analysis_id, status) so that the
analysis_id is indexed first which provides better indexing when only
the analysis_id is specified.
parent 50d6343a
No related branches found
No related tags found
No related merge requests found
......@@ -16,7 +16,7 @@ CREATE TABLE hive (
analysis_id int(10) NOT NULL,
beekeeper varchar(80) DEFAULT '' NOT NULL,
host varchar(40) DEFAULT '' NOT NULL,
process_id int(10) NOT NULL,
process_id varchar(40) DEFAULT '' NOT NULL,
work_done int(11) DEFAULT '0' NOT NULL,
born datetime NOT NULL,
last_check_in datetime NOT NULL,
......@@ -161,7 +161,7 @@ CREATE TABLE analysis_job (
PRIMARY KEY (analysis_job_id),
UNIQUE KEY input_id_analysis (input_id, analysis_id),
INDEX job_claim_analysis (job_claim, analysis_id),
INDEX job_status_analysis (status, analysis_id),
INDEX job_analysis_status (analysis_id, status),
INDEX hive_id (hive_id)
);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment