Skip to content

Instantly share code, notes, and snippets.

@chbatey
Created March 17, 2015 16:36
Show Gist options
  • Save chbatey/f3fcfb7bbd928c1ece11 to your computer and use it in GitHub Desktop.
Save chbatey/f3fcfb7bbd928c1ece11 to your computer and use it in GitHub Desktop.
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