Skip to content

Instantly share code, notes, and snippets.

@chbatey
Created March 17, 2015 16:36
Tasks
import com.datastax.driver.core.*;
task buildSchema << {
Cluster cluster = Cluster.builder().addContactPoint("localhost").build()
Session session = cluster.connect()
new File("src/main/resources/schema/tables.cql").eachLine { line ->
println("Executing $line")
session.execute(line)
}
}
task dropSchema << {
Cluster cluster = Cluster.builder().addContactPoint("localhost").build()
Session session = cluster.connect("killrauction")
session.execute("drop keyspace killrauction")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment