2021-09-16 02:41:45 +02:00
|
|
|
import hashlib
|
|
|
|
import logging
|
|
|
|
from dataclasses import dataclass
|
|
|
|
from enum import Enum
|
|
|
|
from typing import Optional
|
|
|
|
|
|
|
|
from redis import ResponseError
|
|
|
|
|
2021-10-22 15:36:15 +02:00
|
|
|
from redis_om.connections import get_redis_connection
|
|
|
|
from redis_om.model.model import model_registry
|
2021-09-16 02:41:45 +02:00
|
|
|
|
2021-10-20 22:01:46 +02:00
|
|
|
|
2021-09-16 02:41:45 +02:00
|
|
|
redis = get_redis_connection()
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2021-10-20 22:01:46 +02:00
|
|
|
import importlib # noqa: E402
|
|
|
|
import pkgutil # noqa: E402
|
|
|
|
|
|
|
|
|
|
|
|
class MigrationError(Exception):
|
|
|
|
pass
|
2021-09-16 02:41:45 +02:00
|
|
|
|
|
|
|
|
|
|
|
def import_submodules(root_module_name: str):
|
|
|
|
"""Import all submodules of a module, recursively."""
|
|
|
|
# TODO: Call this without specifying a module name, to import everything?
|
|
|
|
root_module = importlib.import_module(root_module_name)
|
2021-10-20 22:01:46 +02:00
|
|
|
|
|
|
|
if not hasattr(root_module, "__path__"):
|
|
|
|
raise MigrationError(
|
|
|
|
"The root module must be a Python package. "
|
|
|
|
f"You specified: {root_module_name}"
|
|
|
|
)
|
|
|
|
|
2021-09-16 02:41:45 +02:00
|
|
|
for loader, module_name, is_pkg in pkgutil.walk_packages(
|
2021-10-20 22:01:46 +02:00
|
|
|
root_module.__path__, root_module.__name__ + "." # type: ignore
|
|
|
|
):
|
2021-09-16 02:41:45 +02:00
|
|
|
importlib.import_module(module_name)
|
|
|
|
|
|
|
|
|
|
|
|
def schema_hash_key(index_name):
|
|
|
|
return f"{index_name}:hash"
|
|
|
|
|
|
|
|
|
|
|
|
def create_index(index_name, schema, current_hash):
|
2021-10-21 02:35:46 +02:00
|
|
|
try:
|
|
|
|
redis.execute_command(f"ft.info {index_name}")
|
|
|
|
except ResponseError:
|
2021-10-21 08:24:31 +02:00
|
|
|
redis.execute_command(f"ft.create {index_name} {schema}")
|
|
|
|
redis.set(schema_hash_key(index_name), current_hash)
|
|
|
|
else:
|
2021-10-21 02:35:46 +02:00
|
|
|
log.info("Index already exists, skipping. Index hash: %s", index_name)
|
2021-09-16 02:41:45 +02:00
|
|
|
|
|
|
|
|
|
|
|
class MigrationAction(Enum):
|
|
|
|
CREATE = 2
|
|
|
|
DROP = 1
|
|
|
|
|
|
|
|
|
2021-09-17 18:27:11 +02:00
|
|
|
@dataclass
|
2021-09-16 02:41:45 +02:00
|
|
|
class IndexMigration:
|
|
|
|
model_name: str
|
|
|
|
index_name: str
|
|
|
|
schema: str
|
|
|
|
hash: str
|
|
|
|
action: MigrationAction
|
|
|
|
previous_hash: Optional[str] = None
|
2021-09-17 18:27:11 +02:00
|
|
|
|
2021-09-16 02:41:45 +02:00
|
|
|
def run(self):
|
|
|
|
if self.action is MigrationAction.CREATE:
|
|
|
|
self.create()
|
|
|
|
elif self.action is MigrationAction.DROP:
|
|
|
|
self.drop()
|
2021-09-17 18:27:11 +02:00
|
|
|
|
2021-09-16 02:41:45 +02:00
|
|
|
def create(self):
|
2021-10-21 08:24:31 +02:00
|
|
|
try:
|
|
|
|
return create_index(self.index_name, self.schema, self.hash)
|
|
|
|
except ResponseError:
|
|
|
|
log.info("Index already exists: %s", self.index_name)
|
2021-09-17 18:27:11 +02:00
|
|
|
|
2021-09-16 02:41:45 +02:00
|
|
|
def drop(self):
|
2021-10-21 08:24:31 +02:00
|
|
|
try:
|
|
|
|
redis.execute_command(f"FT.DROPINDEX {self.index_name}")
|
|
|
|
except ResponseError:
|
|
|
|
log.info("Index does not exist: %s", self.index_name)
|
2021-09-16 02:41:45 +02:00
|
|
|
|
|
|
|
|
|
|
|
class Migrator:
|
|
|
|
def __init__(self, module=None):
|
|
|
|
# Try to load any modules found under the given path or module name.
|
|
|
|
if module:
|
|
|
|
import_submodules(module)
|
|
|
|
|
|
|
|
self.migrations = []
|
|
|
|
|
|
|
|
for name, cls in model_registry.items():
|
|
|
|
hash_key = schema_hash_key(cls.Meta.index_name)
|
|
|
|
try:
|
2021-09-30 05:23:39 +02:00
|
|
|
schema = cls.redisearch_schema()
|
2021-09-16 02:41:45 +02:00
|
|
|
except NotImplementedError:
|
|
|
|
log.info("Skipping migrations for %s", name)
|
|
|
|
continue
|
2021-10-20 22:01:46 +02:00
|
|
|
current_hash = hashlib.sha1(schema.encode("utf-8")).hexdigest() # nosec
|
2021-09-16 02:41:45 +02:00
|
|
|
|
|
|
|
try:
|
|
|
|
redis.execute_command("ft.info", cls.Meta.index_name)
|
|
|
|
except ResponseError:
|
|
|
|
self.migrations.append(
|
2021-10-20 22:01:46 +02:00
|
|
|
IndexMigration(
|
|
|
|
name,
|
|
|
|
cls.Meta.index_name,
|
|
|
|
schema,
|
|
|
|
current_hash,
|
|
|
|
MigrationAction.CREATE,
|
|
|
|
)
|
|
|
|
)
|
2021-09-17 18:27:11 +02:00
|
|
|
continue
|
2021-09-16 02:41:45 +02:00
|
|
|
|
|
|
|
stored_hash = redis.get(hash_key)
|
|
|
|
schema_out_of_date = current_hash != stored_hash
|
|
|
|
|
|
|
|
if schema_out_of_date:
|
|
|
|
# TODO: Switch out schema with an alias to avoid downtime -- separate migration?
|
|
|
|
self.migrations.append(
|
2021-10-20 22:01:46 +02:00
|
|
|
IndexMigration(
|
|
|
|
name,
|
|
|
|
cls.Meta.index_name,
|
|
|
|
schema,
|
|
|
|
current_hash,
|
|
|
|
MigrationAction.DROP,
|
|
|
|
stored_hash,
|
|
|
|
)
|
|
|
|
)
|
2021-09-16 02:41:45 +02:00
|
|
|
self.migrations.append(
|
2021-10-20 22:01:46 +02:00
|
|
|
IndexMigration(
|
|
|
|
name,
|
|
|
|
cls.Meta.index_name,
|
|
|
|
schema,
|
|
|
|
current_hash,
|
|
|
|
MigrationAction.CREATE,
|
|
|
|
stored_hash,
|
|
|
|
)
|
|
|
|
)
|
2021-09-16 02:41:45 +02:00
|
|
|
|
|
|
|
def run(self):
|
|
|
|
# TODO: Migration history
|
|
|
|
# TODO: Dry run with output
|
|
|
|
for migration in self.migrations:
|
|
|
|
migration.run()
|