Skip to content

Commit

Permalink
Merge pull request brianfrankcooper#270 from busbey/pr-145
Browse files Browse the repository at this point in the history
rebased PR145: "Added Cassandra CQL binding"
  • Loading branch information
busbey committed May 29, 2015
2 parents 659f738 + e957f3c commit 7d53bb0
Show file tree
Hide file tree
Showing 5 changed files with 434 additions and 4 deletions.
1 change: 1 addition & 0 deletions bin/ycsb
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ DATABASES = {
"cassandra-7" : "com.yahoo.ycsb.db.CassandraClient7",
"cassandra-8" : "com.yahoo.ycsb.db.CassandraClient8",
"cassandra-10" : "com.yahoo.ycsb.db.CassandraClient10",
"cassandra-cql": "com.yahoo.ycsb.db.CassandraCQLClient",
"dynamodb" : "com.yahoo.ycsb.db.DynamoDBClient",
"elasticsearch": "com.yahoo.ycsb.db.ElasticSearchClient",
"gemfire" : "com.yahoo.ycsb.db.GemFireClient",
Expand Down
6 changes: 6 additions & 0 deletions cassandra/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@
<artifactId>cassandra-all</artifactId>
<version>${cassandra.version}</version>
</dependency>
<!-- CQL driver -->
<dependency>
<groupId>com.datastax.cassandra</groupId>
<artifactId>cassandra-driver-core</artifactId>
<version>${cassandra.cql.version}</version>
</dependency>
<dependency>
<groupId>com.yahoo.ycsb</groupId>
<artifactId>core</artifactId>
Expand Down
Loading

0 comments on commit 7d53bb0

Please sign in to comment.