All Projects → liquibase → liquibase-cassandra

liquibase / liquibase-cassandra

Licence: other
Liquibase extension for Cassandra Support

Programming Languages

java
68154 projects - #9 most used programming language
groovy
2714 projects

liquibase-cassandra Build and Test Extention

Liquibase extension for Cassandra Support.

Setup local test environment

start cassandra

docker run -p 9042:9042 --rm --name mycassandra -d cassandra

get ip

docker inspect mycassandra

start another instance for cqlsh, check for IP address, replace mentioned IP with the one inspect command shows

docker run -it --rm cassandra bash

> cqlsh 172.17.0.2

execute the following CQL:

CREATE KEYSPACE betterbotz
  WITH REPLICATION = { 
   'class' : 'SimpleStrategy', 
   'replication_factor' : 1 
  };
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].