Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Simple python program for managing Cassandra schema migrations

License

NotificationsYou must be signed in to change notification settings

dmchoull/cdeploy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This repo is not being maintained - please use the fork at:https://github.com/rackerlabs/cdeploy

cdeploy

cdeploy is a simple tool to manage your Cassandra schema migrations in the style ofdbdeploy

Installation

pip install cdeploy

Usage

By default, cdeploy will look for migrations in './migrations'. This can be overridden by passing the path to your migrations directory as the first argument:

cdeploy db/migrations

The migrations directory should contain CQL scripts using the following naming convention: [version]_migration_description.cql

For example:

migrations/    001_create_orders_table.cql    002_create_customers_table.cql

Version numbers should begin from 1. Migration scripts may contain multiple semicolon terminated CQL statements. Comment lines can begin with either "--" or "//".

Migrations can also specify how to revert the changes by including additional statements following a line containing "--//@UNDO". For example:

CREATE TABLE orders(    order_id uuid PRIMARY KEY,    price text);--//@UNDODROP TABLE orders;

To undo the most recently applied migration, run:

cdeploy --undo

Configuration

cdeploy will look in your migrations directory for a configuration file named cassandra.yml, in a subdirectory named config:

migrations/   config/       cassandra.yml

The configuration file specifies the hosts to connect to and the keyspace name, and supports multiple environments. For example:

development:    hosts: [host1]    keyspace: keyspace_nameproduction:    hosts: [host1, host2, host3]    keyspace: keyspace_name

The environment can be set via the ENV shell variable, and defaults to development if not specified:

ENV=production cdeploy

About

Simple python program for managing Cassandra schema migrations

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages


[8]ページ先頭

©2009-2025 Movatter.jp