SQLAlchemyGrate

Database schema and data migration framework using SQLAlchemy
Download

SQLAlchemyGrate Ranking & Summary

Advertisement

  • Rating:
  • License:
  • MIT/X Consortium Lic...
  • Publisher Name:
  • Andrey Petrov
  • Publisher web site:
  • http://code.google.com/u/shazow/

SQLAlchemyGrate Tags


SQLAlchemyGrate Description

Database schema and data migration framework using SQLAlchemy SQLAlchemyGrate is a silly (yet effective) migration framework built on SQLAlchemy — the best database abstraction library in the universe. Grate doesn't do fancy things like track schema versions and do step-through upgrade/downgrade paths or testing. Buuut, you can create a wrapper around it to do all these things using the upgrade command.One thing grate does well out of the box is a stupid row-by-row re-insert from one SQLAlchemy target engine to another. This means you can make changes to your SQLAlchemy schema as you please, then to port your data you create another database and do a row-by-row re-insert from the old dataset into the new. You can even provide a conversion function that will transform the data when necessary.Warning: Consider this beta quality. There is a lack of error checking so you may get rogue exceptions raised. More features and helpers are being added.UsageUsage: grate COMMAND Really silly schema migration framework, built for SQLAlchemy.Commands: migrate ENGINE_FROM ENGINE_TO Migrate schema or data from one engine to another. upgrade ENGINE UPGRADE_FN Perform in-place upgrade of a schema in an engine.Examples: grate migrate "mysql://foo:bar@localhost/baz" "sqlite:///:memory:" \ --metadata model.meta:metadata --verbose grate upgrade "mysql://foo:bar@localhost/baz" migration.001_change_fancy_column:upgradeHint: The upgrade command can also be used to downgrade, just point itto the relevant downgrade function. For extra awesomeness, use schema-alteringDDLs provided by sqlalchemy-migrate.Options: -h, --help show this help message and exit -v, --verbose Enable verbose output. Use twice to enable debug output. --show-sql Echo SQLAlchemy queries. migrate: --only-tables=TABLES Only perform migration on the given tables. (comma- separated table names) --skip-tables=TABLES Skip migration on the given tables. (comma-separated table names) --limit=LIMIT Number to select per insert loop. (default: 100000) --metadata=METADATA MetaData object bound to the target schema definition. Example: model.metadata:MetaData --convert=FN (Optional) Convert function to run data through. Example: migration.v1:convertFunction examplesconvertWhen migrating, you can provide a conversion function to funnel data through. Here's what one could look like:# migration/v1.py:def convert(table, row): """ :param table: SQLAlchemy table schema object. :param row: Current row from the given table (immutable, must make a copy to change). Returns a dict with column:value mappings. """ if table.name == 'user': row = dict(row) row = row.lower() elif table.name == 'job': row = dict(row) del row return rowThen we would use this function with --convert=migration.v1:convert. There's pretty obvious performance detriment from using this feature, namely having to run each row through a function with its own logic, but with small datasets it's not too bad and too convenient to ignore.upgradeWhen performing an upgrade command, you can do in-place changes without a full re-insert. This is a more realistic alternative to larger datasets or small schema changes.# migration/001_add_fancy_column.py:from sqlalchemy import *from migrate import * # sqlalchemy-migrate lets us do dialect-agnostic schema changes# sqlalchemygrate also provides some helpers just in casefrom grate.migrations import table_migratedef upgrade(metadata): """ :param metadata: SQLAlchemy MetaData bound to an engine and autoreflected. """ fancy_table = metadata.tables # Create column using sqlalchemy-migrate col = Column('fancy_column', types.Integer) col.create(fancy_table) ## Or run some arbitrary SQL # metadata.bind.execute(...) ## Need to do a row-by-row re-insert? Use the table_migrate helper ## We do a migration from one engine to the same engine, but between two different tables this time. # table_migrate(metadata.bind, metadata.bind, table, renamed_table, convert_fn=None, limit=100000)def downgrade(metadata): fancy_table = metadata.tables fancy_table.c.fancy_column.drop()This feature becomes even more powerful if you combine it with sqlalchemy-migrate. This way you can use dialect-agnostic SQLAlchemy DDLs to generate your schema changes, but without having to depend on sqlalchemy-migrate's revision tracking and other needless complexities which drove me to write this.And now we can upgrade and downgrade our schema, for example:grate upgrade "sqlite:///development.db" migration.001_change_fancy_column:upgrade --show-sqlgrate upgrade "sqlite:///development.db" migration.001_change_fancy_column:downgrade --shoq-sqlMaybe this should be called something other than upgrade? Perhaps grade? Anyways...Performance NotesRow-by-row re-insert (migrate)Thousands of rows takes seconds, millions of rows takes minutes. The details are dependent on the schema, server, and specific numbers.In-place schema changes (upgrade)If you're not doing a full re-insert, this is about as efficient as you can get with any other schema migration tool. Typically on the order of seconds. Requirements: · Python


SQLAlchemyGrate Related Software