Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
ensembl-hive
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
7
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ensembl-gh-mirror
ensembl-hive
Commits
28d9f160
Commit
28d9f160
authored
10 years ago
by
Leo Gordon
Browse files
Options
Downloads
Patches
Plain Diff
added worker_resource_usage to the list of tables to be dumped or deleted
parent
ff61f99c
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
modules/Bio/EnsEMBL/Hive/RunnableDB/DatabaseDumper.pm
+1
-1
1 addition, 1 deletion
modules/Bio/EnsEMBL/Hive/RunnableDB/DatabaseDumper.pm
sql/procedures.mysql
+1
-1
1 addition, 1 deletion
sql/procedures.mysql
with
2 additions
and
2 deletions
modules/Bio/EnsEMBL/Hive/RunnableDB/DatabaseDumper.pm
+
1
−
1
View file @
28d9f160
...
...
@@ -94,7 +94,7 @@ sub fetch_input {
$self
->
param
('
ignores
',
\
@ignores
);
# Would be good to have this from eHive
my
@ehive_tables
=
qw(hive_meta pipeline_wide_parameters worker dataflow_rule analysis_base analysis_ctrl_rule job accu log_message job_file analysis_data resource_description analysis_stats analysis_stats_monitor role msg progress resource_class)
;
my
@ehive_tables
=
qw(hive_meta pipeline_wide_parameters worker dataflow_rule analysis_base analysis_ctrl_rule job accu log_message job_file analysis_data resource_description analysis_stats analysis_stats_monitor role msg progress resource_class
worker_resource_usage
)
;
$self
->
param
('
nb_ehive_tables
',
scalar
(
@ehive_tables
));
# Connection parameters
...
...
This diff is collapsed.
Click to expand it.
sql/procedures.mysql
+
1
−
1
View file @
28d9f160
...
...
@@ -151,7 +151,7 @@ CREATE PROCEDURE drop_hive_tables()
MODIFIES SQL DATA
BEGIN
DROP VIEW IF EXISTS msg, progress;
DROP TABLE IF EXISTS pipeline_wide_parameters, analysis_stats_monitor, resource_description, analysis_data, role, job_file, dataflow_rule, analysis_ctrl_rule, analysis_stats, log_message, accu, job, worker, analysis_base, resource_class, hive_meta;
DROP TABLE IF EXISTS pipeline_wide_parameters, analysis_stats_monitor,
worker_resource_usage,
resource_description, analysis_data, role, job_file, dataflow_rule, analysis_ctrl_rule, analysis_stats, log_message, accu, job, worker, analysis_base, resource_class, hive_meta;
END; //
DELIMITER ;
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment