Skip to main content

A liquibase datasource client for python

Project description

liquibase数据源驱动

liquibase引入python3脚本,统一管理管理mongo、clickhouse的库表结构。changelog记录还是选在记录到mysql中,这样业务上会更加灵活

<changeSet id="xxxxx" author="xxxxxx" labels="mongo">
    <comment>xxxxx</comment>
    <executeCommand executable="python3">
        <arg value="script/db_tag/creat_collection.py"/>
    </executeCommand>
</changeSet>
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

from liquibase_datasource import *


def create_tag_database():
    # 获取mongo链接实例
    client = get_client(filepath)


    return client[db]


def create_tag_collection():
    # 获取mongo链接实例
    db_name = get_tenant_shard(tag_database)
    client = get_client()
    db = client[db_name]

    # db开启分片
    client.admin.command("enableSharding", db_name)

    db.create_collection(tag_collection)

    # 创建索引
    coll = db[tag_collection]
    coll.create_index(
        [("id", 1), ("name", 1)])


if __name__ == "__main__":
    # 创建标签集合
    create_tag_database()
    create_tag_collection()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

liquisource-1.1.7.tar.gz (2.3 kB view details)

Uploaded Source

Built Distribution

liquisource-1.1.7-py3-none-any.whl (3.5 kB view details)

Uploaded Python 3

File details

Details for the file liquisource-1.1.7.tar.gz.

File metadata

  • Download URL: liquisource-1.1.7.tar.gz
  • Upload date:
  • Size: 2.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.8

File hashes

Hashes for liquisource-1.1.7.tar.gz
Algorithm Hash digest
SHA256 7d406c8e9cd6325b06e84ae752b18729bdf0d03b91ac6f1a8441b2712e097744
MD5 ee9bec779af72cdf5e5432cbc237e92c
BLAKE2b-256 b35cf406e3a90ab027d69d70383a4a2c1adf9133407c0474b6bd383161f1199e

See more details on using hashes here.

File details

Details for the file liquisource-1.1.7-py3-none-any.whl.

File metadata

  • Download URL: liquisource-1.1.7-py3-none-any.whl
  • Upload date:
  • Size: 3.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.8

File hashes

Hashes for liquisource-1.1.7-py3-none-any.whl
Algorithm Hash digest
SHA256 32595365e15640e6647d2c230e8462bcf7a7abffd32a9bef020403cd31a2208d
MD5 fef1f6b1f6af1111104d9dbbb323d27d
BLAKE2b-256 3e0bca7b8fdaed14fdc0b0d76b24fc4f9ec0990c584c122908c7fdc75d538016

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page