Skip to content

Commit

Permalink
Merge "db: Move db.sqalchemy.migration to db.migration"
Browse files Browse the repository at this point in the history
  • Loading branch information
Zuul authored and openstack-gerrit committed Jul 30, 2021
2 parents 35ddf1a + 4bbea58 commit 5a56ac4
Show file tree
Hide file tree
Showing 6 changed files with 135 additions and 177 deletions.
116 changes: 110 additions & 6 deletions nova/db/migration.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,127 @@
# License for the specific language governing permissions and limitations
# under the License.

"""Database setup and migration commands."""
import os

from nova.db.sqlalchemy import migration
from migrate import exceptions as versioning_exceptions
from migrate.versioning import api as versioning_api
from migrate.versioning.repository import Repository
from oslo_log import log as logging
import sqlalchemy

IMPL = migration
from nova.db.sqlalchemy import api as db_session
from nova import exception
from nova.i18n import _

INIT_VERSION = {}
INIT_VERSION['main'] = 401
INIT_VERSION['api'] = 66
_REPOSITORY = {}

LOG = logging.getLogger(__name__)


def get_engine(database='main', context=None):
if database == 'main':
return db_session.get_engine(context=context)

if database == 'api':
return db_session.get_api_engine()


def find_migrate_repo(database='main'):
"""Get the path for the migrate repository."""
global _REPOSITORY
rel_path = os.path.join('sqlalchemy', 'migrate_repo')
if database == 'api':
rel_path = os.path.join('sqlalchemy', 'api_migrations', 'migrate_repo')
path = os.path.join(os.path.abspath(os.path.dirname(__file__)), rel_path)
assert os.path.exists(path)
if _REPOSITORY.get(database) is None:
_REPOSITORY[database] = Repository(path)
return _REPOSITORY[database]


def db_sync(version=None, database='main', context=None):
"""Migrate the database to `version` or the most recent version."""
return IMPL.db_sync(version=version, database=database, context=context)
if version is not None:
try:
version = int(version)
except ValueError:
raise exception.NovaException(_("version should be an integer"))

current_version = db_version(database, context=context)
repository = find_migrate_repo(database)
engine = get_engine(database, context=context)
if version is None or version > current_version:
return versioning_api.upgrade(engine, repository, version)
else:
return versioning_api.downgrade(engine, repository, version)


def db_version(database='main', context=None):
"""Display the current database version."""
return IMPL.db_version(database=database, context=context)
repository = find_migrate_repo(database)

# NOTE(mdbooth): This is a crude workaround for races in _db_version. The 2
# races we have seen in practise are:
# * versioning_api.db_version() fails because the migrate_version table
# doesn't exist, but meta.tables subsequently contains tables because
# another thread has already started creating the schema. This results in
# the 'Essex' error.
# * db_version_control() fails with pymysql.error.InternalError(1050)
# (Create table failed) because of a race in sqlalchemy-migrate's
# ControlledSchema._create_table_version, which does:
# if not table.exists(): table.create()
# This means that it doesn't raise the advertised
# DatabaseAlreadyControlledError, which we could have handled explicitly.
#
# I believe the correct fix should be:
# * Delete the Essex-handling code as unnecessary complexity which nobody
# should still need.
# * Fix the races in sqlalchemy-migrate such that version_control() always
# raises a well-defined error, and then handle that error here.
#
# Until we do that, though, we should be able to just try again if we
# failed for any reason. In both of the above races, trying again should
# succeed the second time round.
#
# For additional context, see:
# * https://bugzilla.redhat.com/show_bug.cgi?id=1652287
# * https://bugs.launchpad.net/nova/+bug/1804652
try:
return _db_version(repository, database, context)
except Exception:
return _db_version(repository, database, context)


def _db_version(repository, database, context):
engine = get_engine(database, context=context)
try:
return versioning_api.db_version(engine, repository)
except versioning_exceptions.DatabaseNotControlledError as exc:
meta = sqlalchemy.MetaData()
meta.reflect(bind=engine)
tables = meta.tables
if len(tables) == 0:
db_version_control(
INIT_VERSION[database], database, context=context)
return versioning_api.db_version(engine, repository)
else:
LOG.exception(exc)
# Some pre-Essex DB's may not be version controlled.
# Require them to upgrade using Essex first.
raise exception.NovaException(
_("Upgrade DB using Essex release first."))


def db_initial_version(database='main'):
"""The starting version for the database."""
return IMPL.db_initial_version(database=database)
return INIT_VERSION[database]


def db_version_control(version=None, database='main', context=None):
repository = find_migrate_repo(database)
engine = get_engine(database, context=context)
versioning_api.version_control(engine, repository, version)
return version
140 changes: 0 additions & 140 deletions nova/db/sqlalchemy/migration.py

This file was deleted.

8 changes: 3 additions & 5 deletions nova/tests/functional/db/api/test_migrations.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
from nova.db import migration
from nova.db.sqlalchemy.api_migrations import migrate_repo
from nova.db.sqlalchemy import api_models
from nova.db.sqlalchemy import migration as sa_migration
from nova import test
from nova.tests import fixtures as nova_fixtures

Expand All @@ -53,9 +52,8 @@ def setUp(self):
self.engine = enginefacade.writer.get_engine()

def db_sync(self, engine):
with mock.patch.object(sa_migration, 'get_engine',
return_value=engine):
sa_migration.db_sync(database='api')
with mock.patch.object(migration, 'get_engine', return_value=engine):
migration.db_sync(database='api')

@property
def migrate_engine(self):
Expand Down Expand Up @@ -160,7 +158,7 @@ def REPOSITORY(self):

@property
def migration_api(self):
return sa_migration.versioning_api
return migration.versioning_api

@property
def migrate_engine(self):
Expand Down
31 changes: 14 additions & 17 deletions nova/tests/unit/cmd/test_manage.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
from nova import conf
from nova import context
from nova.db import api as db
from nova.db.sqlalchemy import migration as sqla_migration
from nova.db import migration
from nova import exception
from nova import objects
from nova.scheduler.client import report
Expand Down Expand Up @@ -618,18 +618,17 @@ def test_purge_all_cells_no_api_config(self, mock_get_cells):
self.assertEqual(4, ret)
self.assertIn('Unable to get cell list', self.output.getvalue())

@mock.patch.object(sqla_migration, 'db_version', return_value=2)
def test_version(self, sqla_migrate):
@mock.patch.object(migration, 'db_version', return_value=2)
def test_version(self, mock_db_version):
self.commands.version()
sqla_migrate.assert_called_once_with(context=None, database='main')
mock_db_version.assert_called_once_with()

@mock.patch.object(sqla_migration, 'db_sync')
def test_sync(self, sqla_sync):
@mock.patch.object(migration, 'db_sync')
def test_sync(self, mock_db_sync):
self.commands.sync(version=4, local_cell=True)
sqla_sync.assert_called_once_with(context=None,
version=4, database='main')
mock_db_sync.assert_called_once_with(4)

@mock.patch('nova.db.migration.db_sync')
@mock.patch.object(migration, 'db_sync')
@mock.patch.object(objects.CellMapping, 'get_by_uuid', return_value='map')
def test_sync_cell0(self, mock_get_by_uuid, mock_db_sync):
ctxt = context.get_admin_context()
Expand Down Expand Up @@ -810,17 +809,15 @@ def setUp(self):
self.useFixture(fixtures.MonkeyPatch('sys.stdout', self.output))
self.commands = manage.ApiDbCommands()

@mock.patch.object(sqla_migration, 'db_version', return_value=2)
def test_version(self, sqla_migrate):
@mock.patch.object(migration, 'db_version', return_value=2)
def test_version(self, mock_db_version):
self.commands.version()
sqla_migrate.assert_called_once_with(context=None,
database='api')
mock_db_version.assert_called_once_with(database='api')

@mock.patch.object(sqla_migration, 'db_sync')
def test_sync(self, sqla_sync):
@mock.patch.object(migration, 'db_sync')
def test_sync(self, mock_db_sync):
self.commands.sync(version=4)
sqla_sync.assert_called_once_with(context=None,
version=4, database='api')
mock_db_sync.assert_called_once_with(4, database='api')


@ddt.ddt
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
import mock
import sqlalchemy

from nova.db import migration
from nova.db.sqlalchemy import api as db_api
from nova.db.sqlalchemy import migration
from nova import test


Expand Down
Loading

0 comments on commit 5a56ac4

Please sign in to comment.