Skip to content
This repository has been archived by the owner on Jul 22, 2020. It is now read-only.

Commit

Permalink
Merge pull request #5 from builtamont-oss/chore/upstream_pr_24
Browse files Browse the repository at this point in the history
Address upstream PR #24
  • Loading branch information
hhandoko authored Aug 30, 2016
2 parents ce0fb5b + 2c52002 commit 8a74bac
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ cm.migrate();
``` shell
java -jar \
-Dcassandra.migration.scripts.locations=file:target/test-classes/migration/integ \
-Dcassandra.migration.scripts.locations=filesystem:target/test-classes/migration/integ \
-Dcassandra.migration.cluster.contactpoints=localhost \
-Dcassandra.migration.cluster.port=9147 \
-Dcassandra.migration.cluster.username=cassandra \
Expand Down Expand Up @@ -145,17 +145,17 @@ Keyspace:
## Project Rationale
**Why not create an extension to an existing popular database migration project (i.e. Flyway)?**
**Why not create an extension to an existing popular database migration project (i.e. Flyway)?**<br />
Popular database migration tools (e.g. Flyway, Liquibase) are tailored for relational databases with JDBC. This project exists due to the need for Cassandra-specific tooling:
* CQL != SQL,
* Cassandra is distributed and does not have ACID transactions,
* Cassandra do not have native JDBC driver(s),
* etc.
**Why not extend the existing Cassandra Migration project?**
**Why not extend the existing Cassandra Migration project?**<br />
The existing project does not seem to be actively maintained. Several important PRs have been left open for months and there was an immediate need to support Cassandra driver v3.x.
**Why Kotlin?**
**Why Kotlin?**<br />
There are various reasons why Kotlin was chosen, but three main reasons are:
* code brevity and reduced noise,
* stronger `null` checks (enforced at the compiler level), and
Expand Down

0 comments on commit 8a74bac

Please sign in to comment.