No project description provided
Project description
nucliadb
This module contains most of the Python components for NucliaDB:
- ingest
- reader
- writer
- search
- train
NucliaDB Migrations
This module is used to manage NucliaDB Migrations.
All migrations will be provided in the migrations
folder and have a filename
that follows the structure: [sequence]_[migration name].py
.
Where sequence
is the order the migration should be run in with zero padding.
Example: 0001_migrate_data.py
.
Each migration should have the following:
from nucliadb.migrator.context import ExecutionContext
async def migrate(context: ExecutionContext) -> None:
"""
Non-kb type of migration. Migrate global data.
"""
async def migrate_kb(context: ExecutionContext, kbid: str) -> None:
"""
Migrate kb.
Must have both types of migrations.
"""
How migrations are managed
-
All migrations utilize a distributed lock to prevent simulateously running jobs
-
Global migration state:
- current version
- target version
- KBs to migrate
-
KB Migration State:
- current version
-
Migrations are currently run with a deployment and will be continuously retried on failure.
-
Running migrations in a deployment is to make sure a migration does not prevent code deployment.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Hashes for nucliadb-3.0.2.post427-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6135f7a562bd7b3f8ec2a25be24348642be2504ef1ceca74dfe5564f42e931c4 |
|
MD5 | 7797e537abdd05c94fb4a91f10f9ef14 |
|
BLAKE2b-256 | 3b4cf6d3e8eea94c7e4720111db7194272345d3f0d88e7a55ba60eb8d44b5591 |