YCSB/cassandra
Ivan 6720467356
[cassandra] replace consistency ONE with QUORUM (#1487)
2020-12-06 21:53:39 -06:00
..
src [cassandra] replace consistency ONE with QUORUM (#1487) 2020-12-06 21:53:39 -06:00
README.md [cassandra] replace consistency ONE with QUORUM (#1487) 2020-12-06 21:53:39 -06:00
pom.xml [build] Use HTTPS instead of HTTP to resolve dependencies 2020-11-26 15:07:33 -06:00

README.md

Apache Cassandra 2.x CQL binding

Binding for Apache Cassandra, using the CQL API via the DataStax driver.

To run against the (deprecated) Cassandra Thrift API, use the cassandra-10 binding.

Creating a table for use with YCSB

For keyspace ycsb, table usertable:

cqlsh> create keyspace ycsb
    WITH REPLICATION = {'class' : 'SimpleStrategy', 'replication_factor': 3 };
cqlsh> USE ycsb;
cqlsh> create table usertable (
    y_id varchar primary key,
    field0 varchar,
    field1 varchar,
    field2 varchar,
    field3 varchar,
    field4 varchar,
    field5 varchar,
    field6 varchar,
    field7 varchar,
    field8 varchar,
    field9 varchar);

Note that replication_factor and consistency levels (below) will affect performance.

Cassandra Configuration Parameters

  • hosts (required)
    • Cassandra nodes to connect to.
    • No default.
  • port
    • CQL port for communicating with Cassandra cluster.
    • Default is 9042.