cassandra-migration
cassandra-migration copied to clipboard
Database migration (evolution) tool for Apache Cassandra
Upgraded to com.datastax.oss:java-driver-core:4.14.0
Would it be possible to publish a new version to Maven Central? (I need support for cassandra driver v3)
This only became an issue when upgrading to DSE v5.1
While reading .cql file it's throwing following error. Exception in thread "main" com.contrastsecurity.cassandra.migration.CassandraMigrationException: Unable to scan for CQL migrations in location: classpath:migration/cassandra
In SchemaVersionDAO.java, line 205, " SET count = count + 1" + "WHERE name = 'installed_rank';"); there is a missing whitespace between "1" and "WHERE". This starts to cause exceptions...
Avoids the following error during migrations: ```java TRACE [Native-Transport-Requests-1] 2017-06-02 08:14:19,284 Message.java:516 - Received: QUERY UPDATE eagles_nest.cassandra_migration_version_counts SET count = count + 1WHERE name = 'installed_rank';[pageSize = 5000], v=4/v4 TRACE...
If Cassandra is configured with client-to-server encryption using SSL, this tool does not seem to work.
Simple patch to support SSL between the client and the Cassandra cluster
Current version does not support keyspace names that starts with numbers and have to escaped Example keyspace 111_test have to be passed as parameter -Dcassandra.migration.keyspace.name=\"111_test\" and it fails at this...