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.
Release files for nucliadb 6.15.1.post6797
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| nucliadb-6.15.1.post6797-py3-none-any.whl | Python 3 | none | any | Details |
Release files / nucliadb-6.15.1.post6797-py3-none-any.whl
| Download URL | nucliadb-6.15.1.post6797-py3-none-any.whl |
|---|---|
| Size | 794.8 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
f8b6f561e24b6b7a292f4bdab920af1d16834e5eb707bcfd3d28a550c49a54e6
|
|
BLAKE2b-256 checksum How to use checksums |
60d7a76513ec96113aecba8759c5879abbbee9a7ca14ff769a589d2b78d69007
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.14.6
|