Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Sane Schema Management with Alembic and SQLAlchemy by Selena Deckelmann

PyCon 2014
April 12, 2014

Sane Schema Management with Alembic and SQLAlchemy by Selena Deckelmann

PyCon 2014

April 12, 2014
Tweet

More Decks by PyCon 2014

Other Decks in Technology

Transcript

  1. Sane Schema Management with Alembic and SQLAlchemy Selena Deckelmann Data

    Architect, Mozilla @selenamarie http://chesnok.com
  2. What's sane schema management? Executing schema change in a controled,

    repeatable way while working with developers and operations.
  3. Migrations are for: • Communicating change • Communicating process •

    Executing change in a controled, repeatable way with developers and operations
  4. My assumptions: • Schema migrations are frequent. • Automated schema

    migration is a goal. • Stage environment is enough like production for testing. • Writing a small amount of code is ok.
  5. No tool is perfect. DBAs should drive migration tool choice.

    Chose a tool that DBAs and developers like. Or, don't hate.
  6. Part 0: #dbaproblems Part 1: Picking the right migration tool

    Part 2: Using Alembic Part 3: Lessons Learned Part 4: Things Alembic could learn
  7. What sucked about this: • Wasn't the first time (see

    2012 bugs) • Change snuck into partitioning UDF Jan-April 2013 • No useful audit trail • Some partitions affected, not others • Error dated back to 2010 • Wake up call to examine process!
  8. What was awesome: • Used Alembic to manage the change

    • Tested in stage • Experimentation revealed which partitions could be modified without deadlocking • Rolled out change with a regular release during normal business hours
  9. Process with Alembic: 1. Make changes to model.py or raw_sql

    files 2. Run: alembic revision –-auto-generate 3. Edit revision file 4.Commit changes 5. Run migration on stage after auto-deploy of a release
  10. Process with Alembic: 1. Make changes to model.py or raw_sql

    files 2. Run: alembic revision -–auto-generate 3. Edit revision file 4.Commit changes 5. Run migration on stage after auto-deploy of a release 5.Have jenkins run downgrade/upgrade as part of test suite.
  11. Problems Alembic solved: • Easy-to-deploy migrations including UDFs for dev

    and stage • Can embed raw SQL, issue multi- commit changes • Includes downgrades
  12. Problems Alembic solved (continued): • Enables database change discipline •

    Enables code review discipline • Revisions are decoupled from release versions and branch commit order
  13. Problems Alembic solved (continued): • 100k+ lines of code removed

    • No more post-deploy schema checkins • Enabling a tested, automated stage deployment • Separated schema definition from version-specific configuration
  14. Questions to ask: • How often does your schema change?

    • Can the migrations be run without you? • Can you test a migration before you run it in production?
  15. Questions to ask: • Can developers create a new schema

    without your help? • How hard is it to get from an old schema to a new one using the tool? • Are change rollbacks a standard use of the tool?
  16. What does our system need to do? • Communicate change

    • Apply changes in the correct order • Apply a change only once • Use raw SQL where needed • Provide a single interface for change • Rollback gracefully
  17. A good ORM provides: • One source of truth about

    the schema • Reusable components • Database version independence • Ability to use raw SQL
  18. And good ORM stewardship: • Fits with existing tooling and

    developer workflows • Enables partnership with developers • Integrates with a testing framework
  19. And: • Gives you a new way to think about

    schemas • Develops compassion for how horrible ORMs can be • Gives you developer-friendly vocabulary for discussing why ORM- generated code is often terrible
  20. https://alembic.readthedocs.org Vocabulary: revision: a single migration down_revision: previous migration upgrade:

    apply 'upgrade' change downgrade: apply 'downgrade' change offline mode: emit raw SQL for a change
  21. Installing and using: $ virtualenv venv-alembic $ . venv-alembic/bin/activate $

    pip install alembic $ alembic init $ vi alembic.ini $ alembic revision -m “new” $ alembic upgrade head $ alembic downgrade -1
  22. Helper functions? Put your helper functions in a custom library

    and add this to env.py: import myproj.migrations
  23. Ignore certain schemas or partitions? In env.py: def include_symbol(tablename, schema):

    return schema in (None, "bixie") and re.search(r'_\d{8}$', tablename) is None
  24. Manage User Defined Functions? Chose to use raw SQL files

    3 directories, 128 files: procs/ types/ views/ codepath = '/socorro/external/pg/raw_sql/procs' def load_stored_proc(op, filelist): app_path = os.getcwd() + codepath for filename in filelist: sqlfile = app_path + filename with open(myfile, 'r') as stored_proc: op.execute(stored_proc.read())
  25. Stamping database revision? from alembic.config import Config from alembic import

    command alembic_cfg = Config("/path/to/yourapp/alembic.ini") command.stamp(alembic_cfg, "head")
  26. Always roll forward. 1. Put migrations in a separate commit

    from schema changes. 2. Revert commits for schema change, leave migration commit in-place for downgrade support.
  27. Store schema objects in the smallest, reasonable, composable unit. 1.

    Use an ORM for core schema. 2. Put types, UDFs and views in separate files. 3. Consider storing the schema in a separate repo from the application.
  28. Write tests. Run them every time. 1. Write a simple

    tool to create a new schema from scratch. 2. Write a simple tool to generate fake data. 3. Write tests for these tools. 4.When anything fails, add a test.
  29. Write tests. Run them every time. 1. Write a simple

    tool to create a new schema from scratch. 2. Write a simple tool to generate fake data. 3. Write tests for these tools. 4.When anything fails, add a test.
  30. 1. Understand partitions 2. Never apply a DEFAULT to a

    new column 3. Help us manage UDFs better 4.INDEX CONCURRENTLY 5. Prettier syntax for multi-commit sequences 6.Support multiple branches in history
  31. No tool is perfect. DBAs should drive migration tool choice.

    Chose a tool that your developers like. Or, don't hate.
  32. Other tools: Sqitch http://sqitch.org/ Written by PostgreSQL contributor Erwin http://erwin.com/

    Commercial, popular with Oracle South http://south.aeracode.org/ Django-specific, well-supported
  33. Sane Schema Management with Alembic and SQLAlchemy Selena Deckelmann Mozilla

    @selenamarie chesnok.com https://speakerdeck.com/selenamarie/sane- schema-management-with-alembic