Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ultimicro/cassandra-migrator
Automated schema management for Apache Cassandra
https://github.com/ultimicro/cassandra-migrator
cassandra csharp dotnet
Last synced: about 2 months ago
JSON representation
Automated schema management for Apache Cassandra
- Host: GitHub
- URL: https://github.com/ultimicro/cassandra-migrator
- Owner: ultimicro
- License: mit
- Created: 2021-05-17T06:44:50.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-21T14:31:04.000Z (over 1 year ago)
- Last Synced: 2024-04-29T16:23:18.366Z (9 months ago)
- Topics: cassandra, csharp, dotnet
- Language: C#
- Homepage:
- Size: 88.9 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
# Cassandra Migrator
[![Docker Pulls](https://img.shields.io/docker/pulls/ultimicro/cassandra-migrator)](https://hub.docker.com/r/ultimicro/cassandra-migrator)This is a tool for managing schema on Apache Cassandra. It is available as a .NET Tool, Docker image and a class library. This tool has been used on [Cloudsumé](https://cloudsume.com) from the beginning so it is production ready.
| Package | Version |
| -------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- |
| .NET Tool | [![Nuget](https://img.shields.io/nuget/v/cassandra-migrator)](https://www.nuget.org/packages/cassandra-migrator) |
| CassandraMigrator | [![Nuget](https://img.shields.io/nuget/v/CassandraMigrator)](https://www.nuget.org/packages/CassandraMigrator) |
| CassandraMigrator.CqlParser | [![Nuget](https://img.shields.io/nuget/v/CassandraMigrator.CqlParser)](https://www.nuget.org/packages/CassandraMigrator.CqlParser) |
| CassandraMigrator.DataStaxClient | [![Nuget](https://img.shields.io/nuget/v/CassandraMigrator.DataStaxClient)](https://www.nuget.org/packages/CassandraMigrator.DataStaxClient) |
| CassandraMigrator.Provider | [![Nuget](https://img.shields.io/nuget/v/CassandraMigrator.Provider)](https://www.nuget.org/packages/CassandraMigrator.Provider) |## Features
- Using raw CQL as a migration script so you have full control how to migrate your Cassandra.
- Supports multiple CQL statements per migration. Each statement will execute one by one.
- CQL syntax checking before execute the first statement so you don't end up invalid syntax after some statements already executed.## Library usage
Install [CassandraMigrator](https://www.nuget.org/packages/CassandraMigrator/) then create an instance of `CassandraMigrator.Migrator` then invoke
`ExecuteAsync` method.### Avaialble IConnection implementations
- `CassandraMigrator.DataStaxClient.Connection` from [CassandraMigrator.DataStaxClient](https://www.nuget.org/packages/CassandraMigrator.DataStaxClient).
## License
MIT