massmigration


Namemassmigration JSON
Version 0.1.1 PyPI version JSON
download
home_pagehttps://github.com/adamalton/django-mass-migration
SummaryDjango app for long-running data migrations
upload_time2023-06-14 23:25:25
maintainer
docs_urlNone
authorAdam Alton
requires_python
license
keywords django djangae django-gcloud-connectors google app engine
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            Django Mass Migration
=====================

This is a Django app which provides utilities for performing data operations on (optionally) large datasets.

Similar to Django's built-in migration system, it allows you to define data migrations to be performed on the database,
and to apply those migration operations to your database, and it tracks which migrations have been applied and which haven't.

Unlike Django's built-in migration system, it is designed for performing long-running data modification tasks
where there could be a significant amount of time between when the migration is started and when it's finished.
See [Concepts](#concepts).
It is particularly useful for schemaless databases where Django's normal concept of schema changes doesn't apply.

Due to the expectation that migrations maybe be long-running, and just for awesomeness, it provides a web based (rather than terminal based) interface for managing the migrations.

The actual running of the operations can be done on a "backend" of your choosing, e.g. a task queue.
A backend for running migration operations on [Djangae](https://gitlab.com/potato-oss/djangae/djangae) with [Glcoudc](https://gitlab.com/potato-oss/google-cloud/django-gcloud-connectors/) is bundled with the app.


Installation
------------

1. Install the package: `pip install massmigration`
2. Add `massmigration` to `settings.INSTALLED_APPS`.
3. Add  `path("migrations/, include("massmigration.urls")` to your root urlconf.
4. If you're using the bundled backend, set `settings.MASSMIGRATION_TASK_QUEUE` to a Google Cloud Tasks queue name.


Creating A Migration
--------------------

To create a new migration, run the `makemassmigration` management command:

```python manage.py makemassmigration myapp my_migration_name```

This command has two required, positional arguments:

1. `app_label` - this should be the name of an installed app in your project.
2. `migration_name` - this should be the name that you want to give you migration.

The command also takes the following optional arguments:

* `--template` - this should be the name of one of the supplied templates in `massmigration/templates/migration_templates`, without the extension, e.g. `--template=mapper`. See [Migration Types](#migration-types).

A file will be created inside a folder called 'massmigrations' in your app, using the supplied migration name.
E.g. `myapp/massmigrations/001_my_migration.py`.
This is a blank slate for you to write your migration code in.


Migration Types
---------------

There are three broad types of migration for you to choose from.

### simple

This is for a migration which is just a single Python function.
It's intended for small operations which you know your backend can perform in one step.

### mapper

This is for mapping a function over the instances of a Django queryset.
You define a queryset and an `operation` function, and the migration will call that function on each object in the queryset.

The backend must be able to handle iterating over the queryset.
The bundled DjangaeBackend can handle almost infinite sized querysets.

### custom

If you want to take matters into your own hands you can write an entirely custom migration.
These can still be tracked the same as the other operations, but the implementation of what your migration
does and how your the backend handles it are up to you.


Applying Migrations
-------------------

There are two ways to apply a migration to the database:

### Via the Web UI

1. Optionally: ensure that the Django admin is set up in your project.
2. Deploy your project, including the new migration file.
3. Either:
    - Go to the Django Admin site and under Mass Migrations -> Migration Record, click the "Manage Migrations" button; or
    - Go directly to the URL of `reverse("massmigration_manage")` whatever path you've configured that to be on.
5. Next to your new migration, click "Run...".
6. Click "Run migration".
7. Wait for the migration to be listed as applied in the Migration Record list view, or check the logging from your backend.

### Programmatically

If you want to create your own system for applying migrations, you can use the API functions.
Or you will be able to, once I've written them.


Protecting Code Which Requires Migrations
-----------------------------------------

Sometimes in the development cycle of your application, you will want to ensure that a particular migration has been run,
usually when you've added new code which expects the migration to have been applied before the code is run.

To handle this, Mass Migration provides the following utilities:

#### `massmigration.enforcement.requires_migration`

This is a function decorator which ensures that the function cannot be executed until the specified migration has been applied.
For example:

```python
@requires_migration(("myapp", "0001_my_migration"))
def my_function():
	...
```

This will raise `massmigration.exceptions.RequiredMigrationNotApplied` if the function is called before the migration is applied.

Notes:
* If the migration _is_ applied, then this will cache that fact, so it will only query the database the first time the function is called.
* The migration identifier can either be a tuple of `(app_label, migration_name)` or can be a string of `"app_label:migration_name"`.


#### `massmigration.enforcement.view_requires_migration`

This is the same as `requires_migration` but for decorating a view function.
If the specified migration is not applied then the view will return a 503 response.



Concepts
--------

### General approach

TODO: long-running migrations, errors, etc.
Why long-running migrations are not run as part of the deployment process (because they take too long and you don't want to take your site down while they run).

### Model State

TODO: Stuff about why there's no model history (apps/schema_editor).

### Workflow & Code Protection

TODO: Deployment workflow and use of enforcement utilities


Settings
--------

The following settings can be used:

#### `MASSMIGRATION_BACKEND`

This should be a dotted path string to the backend class that you want to use.


#### `MASSMIGRATION_TASK_QUEUE`

Used by the `DjangaeBackend`, this sets the Google Cloud Tasks queue name to be used for running migration tasks.


#### `MASSMIGRATION_RECORD_CACHE_TIMEOUT`

You're unlikely to need this.
It sets the time for caching MigrationRecords for the purpose of checking a migration's status during mapper operations.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/adamalton/django-mass-migration",
    "name": "massmigration",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "django,djangae,django-gcloud-connectors,Google App Engine",
    "author": "Adam Alton",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/8a/62/c0895573b41ec1746e8c42e9654a65a8e558806b0cfeb4716dce9f1fc7fe/massmigration-0.1.1.tar.gz",
    "platform": null,
    "description": "Django Mass Migration\n=====================\n\nThis is a Django app which provides utilities for performing data operations on (optionally) large datasets.\n\nSimilar to Django's built-in migration system, it allows you to define data migrations to be performed on the database,\nand to apply those migration operations to your database, and it tracks which migrations have been applied and which haven't.\n\nUnlike Django's built-in migration system, it is designed for performing long-running data modification tasks\nwhere there could be a significant amount of time between when the migration is started and when it's finished.\nSee [Concepts](#concepts).\nIt is particularly useful for schemaless databases where Django's normal concept of schema changes doesn't apply.\n\nDue to the expectation that migrations maybe be long-running, and just for awesomeness, it provides a web based (rather than terminal based) interface for managing the migrations.\n\nThe actual running of the operations can be done on a \"backend\" of your choosing, e.g. a task queue.\nA backend for running migration operations on [Djangae](https://gitlab.com/potato-oss/djangae/djangae) with [Glcoudc](https://gitlab.com/potato-oss/google-cloud/django-gcloud-connectors/) is bundled with the app.\n\n\nInstallation\n------------\n\n1. Install the package: `pip install massmigration`\n2. Add `massmigration` to `settings.INSTALLED_APPS`.\n3. Add  `path(\"migrations/, include(\"massmigration.urls\")` to your root urlconf.\n4. If you're using the bundled backend, set `settings.MASSMIGRATION_TASK_QUEUE` to a Google Cloud Tasks queue name.\n\n\nCreating A Migration\n--------------------\n\nTo create a new migration, run the `makemassmigration` management command:\n\n```python manage.py makemassmigration myapp my_migration_name```\n\nThis command has two required, positional arguments:\n\n1. `app_label` - this should be the name of an installed app in your project.\n2. `migration_name` - this should be the name that you want to give you migration.\n\nThe command also takes the following optional arguments:\n\n* `--template` - this should be the name of one of the supplied templates in `massmigration/templates/migration_templates`, without the extension, e.g. `--template=mapper`. See [Migration Types](#migration-types).\n\nA file will be created inside a folder called 'massmigrations' in your app, using the supplied migration name.\nE.g. `myapp/massmigrations/001_my_migration.py`.\nThis is a blank slate for you to write your migration code in.\n\n\nMigration Types\n---------------\n\nThere are three broad types of migration for you to choose from.\n\n### simple\n\nThis is for a migration which is just a single Python function.\nIt's intended for small operations which you know your backend can perform in one step.\n\n### mapper\n\nThis is for mapping a function over the instances of a Django queryset.\nYou define a queryset and an `operation` function, and the migration will call that function on each object in the queryset.\n\nThe backend must be able to handle iterating over the queryset.\nThe bundled DjangaeBackend can handle almost infinite sized querysets.\n\n### custom\n\nIf you want to take matters into your own hands you can write an entirely custom migration.\nThese can still be tracked the same as the other operations, but the implementation of what your migration\ndoes and how your the backend handles it are up to you.\n\n\nApplying Migrations\n-------------------\n\nThere are two ways to apply a migration to the database:\n\n### Via the Web UI\n\n1. Optionally: ensure that the Django admin is set up in your project.\n2. Deploy your project, including the new migration file.\n3. Either:\n    - Go to the Django Admin site and under Mass Migrations -> Migration Record, click the \"Manage Migrations\" button; or\n    - Go directly to the URL of `reverse(\"massmigration_manage\")` whatever path you've configured that to be on.\n5. Next to your new migration, click \"Run...\".\n6. Click \"Run migration\".\n7. Wait for the migration to be listed as applied in the Migration Record list view, or check the logging from your backend.\n\n### Programmatically\n\nIf you want to create your own system for applying migrations, you can use the API functions.\nOr you will be able to, once I've written them.\n\n\nProtecting Code Which Requires Migrations\n-----------------------------------------\n\nSometimes in the development cycle of your application, you will want to ensure that a particular migration has been run,\nusually when you've added new code which expects the migration to have been applied before the code is run.\n\nTo handle this, Mass Migration provides the following utilities:\n\n#### `massmigration.enforcement.requires_migration`\n\nThis is a function decorator which ensures that the function cannot be executed until the specified migration has been applied.\nFor example:\n\n```python\n@requires_migration((\"myapp\", \"0001_my_migration\"))\ndef my_function():\n\t...\n```\n\nThis will raise `massmigration.exceptions.RequiredMigrationNotApplied` if the function is called before the migration is applied.\n\nNotes:\n* If the migration _is_ applied, then this will cache that fact, so it will only query the database the first time the function is called.\n* The migration identifier can either be a tuple of `(app_label, migration_name)` or can be a string of `\"app_label:migration_name\"`.\n\n\n#### `massmigration.enforcement.view_requires_migration`\n\nThis is the same as `requires_migration` but for decorating a view function.\nIf the specified migration is not applied then the view will return a 503 response.\n\n\n\nConcepts\n--------\n\n### General approach\n\nTODO: long-running migrations, errors, etc.\nWhy long-running migrations are not run as part of the deployment process (because they take too long and you don't want to take your site down while they run).\n\n### Model State\n\nTODO: Stuff about why there's no model history (apps/schema_editor).\n\n### Workflow & Code Protection\n\nTODO: Deployment workflow and use of enforcement utilities\n\n\nSettings\n--------\n\nThe following settings can be used:\n\n#### `MASSMIGRATION_BACKEND`\n\nThis should be a dotted path string to the backend class that you want to use.\n\n\n#### `MASSMIGRATION_TASK_QUEUE`\n\nUsed by the `DjangaeBackend`, this sets the Google Cloud Tasks queue name to be used for running migration tasks.\n\n\n#### `MASSMIGRATION_RECORD_CACHE_TIMEOUT`\n\nYou're unlikely to need this.\nIt sets the time for caching MigrationRecords for the purpose of checking a migration's status during mapper operations.\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Django app for long-running data migrations",
    "version": "0.1.1",
    "project_urls": {
        "Homepage": "https://github.com/adamalton/django-mass-migration"
    },
    "split_keywords": [
        "django",
        "djangae",
        "django-gcloud-connectors",
        "google app engine"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "26f4d2a4c1c7b53c205896c7afd9cd12366c3f8168c2c69ab4b9561c2d6eeb94",
                "md5": "d1ca011a92098e484031e1394e6c1ab7",
                "sha256": "cbfdf3ed6be6a8261534e4bdd4d5517d1b957c3e43635e67768ad41ce53f30f9"
            },
            "downloads": -1,
            "filename": "massmigration-0.1.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "d1ca011a92098e484031e1394e6c1ab7",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 22560,
            "upload_time": "2023-06-14T23:25:23",
            "upload_time_iso_8601": "2023-06-14T23:25:23.405183Z",
            "url": "https://files.pythonhosted.org/packages/26/f4/d2a4c1c7b53c205896c7afd9cd12366c3f8168c2c69ab4b9561c2d6eeb94/massmigration-0.1.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8a62c0895573b41ec1746e8c42e9654a65a8e558806b0cfeb4716dce9f1fc7fe",
                "md5": "aed22ab003ed6582bc3c202bd8b52688",
                "sha256": "c40fa648174a83599cb2469bbc32582235b12e7d2be6f1ab11f448479c2e3e02"
            },
            "downloads": -1,
            "filename": "massmigration-0.1.1.tar.gz",
            "has_sig": false,
            "md5_digest": "aed22ab003ed6582bc3c202bd8b52688",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 18900,
            "upload_time": "2023-06-14T23:25:25",
            "upload_time_iso_8601": "2023-06-14T23:25:25.129872Z",
            "url": "https://files.pythonhosted.org/packages/8a/62/c0895573b41ec1746e8c42e9654a65a8e558806b0cfeb4716dce9f1fc7fe/massmigration-0.1.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-06-14 23:25:25",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "adamalton",
    "github_project": "django-mass-migration",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "massmigration"
}
        
Elapsed time: 0.08257s