Elasticsearch migrations tool
Project description
Chalan
Chalan is a migration tool designed and developed for Elasticsearch and inspired from Alembic
Installation
pip install chalan
Initialize
Setup migration tool, configuration files and migration folders using below command
chalan init
This will create a directory es_migrations/versions
that will have all the
migrations file and chalan.ini
that will contain all the configuration of the
migration tools
--- es_migrations/
|
--versions/
--- chalan.ini
Create Revision
Create revision file with migration changes in version directory with below command.
chalan revision -m"<some message>"
Above command will create a migration file under versions/
folder with
upgrade and downgrade function. That will help in upgrade/downgrade of the
migration tool.
Upgrade
Command used to upgrade the migration level to head(current level). Or you can also specify specific version where you want upgrade the version to.
chalan upgrade
# or
chalan upgrade <specific version>
Downgrade
Command used to downgrade the migration level to base(initial version). Or specify the level you want to downgrade to.
chalan downgrade # Downgrade 1 level down
# or
chalan downgrade --version base # Downgrade to base version
Project details
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
File details
Details for the file chalan-0.1.4-py3-none-any.whl
.
File metadata
- Download URL: chalan-0.1.4-py3-none-any.whl
- Upload date:
- Size: 7.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8d7cf3fb77862fdbdef471387a604bccccaefe772414764713e711a71ef0583f |
|
MD5 | 581049e83ae1d03c6040ccbbd90efedf |
|
BLAKE2b-256 | 755bd89db442308b22a5e3408993460d315f0664729b2c2786277b206484c9a0 |