summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Elliott <bdelliott@gmail.com>2013-05-04 12:32:39 +0000
committerBrian Elliott <bdelliott@gmail.com>2013-05-04 13:20:05 +0000
commit85359a24d844c19db9d07c268185c9a0310a181d (patch)
tree32d5a7dd9be1078b4fda83f5b38f4b1b5f029d15
parentf917d24bd333e7068ae17cc1027dd8e80896e5a5 (diff)
Add an index to compute_node_stats
This will improve the performance of scheduler lookups of compute nodes and their associated stats. bug 1177487 Change-Id: I0e04849543916e874ea0ddfc76c3d70ff71c09d0
-rw-r--r--nova/db/sqlalchemy/migrate_repo/versions/178_add_index_to_compute_node_stats.py37
1 files changed, 37 insertions, 0 deletions
diff --git a/nova/db/sqlalchemy/migrate_repo/versions/178_add_index_to_compute_node_stats.py b/nova/db/sqlalchemy/migrate_repo/versions/178_add_index_to_compute_node_stats.py
new file mode 100644
index 000000000..c6a4d1527
--- /dev/null
+++ b/nova/db/sqlalchemy/migrate_repo/versions/178_add_index_to_compute_node_stats.py
@@ -0,0 +1,37 @@
+# Copyright 2013 Rackspace Hosting
+# All Rights Reserved.
+#
+# Licensed 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.
+
+from sqlalchemy import Index, MetaData, Table
+
+
+TABLE_NAME = 'compute_node_stats'
+IDX_NAME = 'compute_node_stats_node_id_and_deleted_idx'
+
+
+def upgrade(migrate_engine):
+ """Add an index to make the scheduler lookups of compute_nodes and joined
+ compute_node_stats more efficient.
+ """
+ meta = MetaData(bind=migrate_engine)
+ cn_stats = Table(TABLE_NAME, meta, autoload=True)
+ idx = Index(IDX_NAME, cn_stats.c.compute_node_id, cn_stats.c.deleted)
+ idx.create(migrate_engine)
+
+
+def downgrade(migrate_engine):
+ meta = MetaData(bind=migrate_engine)
+ cn_stats = Table(TABLE_NAME, meta, autoload=True)
+ idx = Index(IDX_NAME, cn_stats.c.compute_node_id, cn_stats.c.deleted)
+ idx.drop(migrate_engine)