Skip to content

Commit 9c1c40f

Browse files
committed
Merge pull request #270 from busbey/pr-145
rebased PR145: "Added Cassandra CQL binding"
2 parents 0329d78 + 5146047 commit 9c1c40f

File tree

5 files changed

+434
-4
lines changed

5 files changed

+434
-4
lines changed

bin/ycsb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ DATABASES = {
2929
"cassandra-7" : "com.yahoo.ycsb.db.CassandraClient7",
3030
"cassandra-8" : "com.yahoo.ycsb.db.CassandraClient8",
3131
"cassandra-10" : "com.yahoo.ycsb.db.CassandraClient10",
32+
"cassandra-cql": "com.yahoo.ycsb.db.CassandraCQLClient",
3233
"dynamodb" : "com.yahoo.ycsb.db.DynamoDBClient",
3334
"elasticsearch": "com.yahoo.ycsb.db.ElasticSearchClient",
3435
"gemfire" : "com.yahoo.ycsb.db.GemFireClient",

cassandra/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@
1717
<artifactId>cassandra-all</artifactId>
1818
<version>${cassandra.version}</version>
1919
</dependency>
20+
<!-- CQL driver -->
21+
<dependency>
22+
<groupId>com.datastax.cassandra</groupId>
23+
<artifactId>cassandra-driver-core</artifactId>
24+
<version>${cassandra.cql.version}</version>
25+
</dependency>
2026
<dependency>
2127
<groupId>com.yahoo.ycsb</groupId>
2228
<artifactId>core</artifactId>

0 commit comments

Comments
 (0)