Testing compaction and compression

Enabling write survey mode.

Write survey mode is a start-up option for testing new compaction and compression strategies. In write survey mode, you can test out new compaction and compression strategies on that node and benchmark the write performance differences, without affecting the production cluster.

Write survey mode adds a node to a database cluster. The node accepts all write traffic as if it were part of the normal cluster, but the node does not officially join the ring.

You can also use the write survey mode to try out a new product version. The nodes you add in write survey mode to a cluster must be of the same major release version as other nodes in the cluster. The write survey mode relies on the streaming subsystem that transfers data between nodes in bulk and differs from one major release to another.

If you want to see how read performance is affected by modifications, stop the node, bring it up as a standalone machine, and then benchmark read operations on the node.

cassandra-env.sh

The location of the cassandra-env.sh file depends on the type of installation:
Package installations /etc/dse/cassandra/cassandra-env.sh
Tarball installations installation_location/resources/cassandra/conf/cassandra-env.sh

Procedure

Start the node using the write_survey option:
  • Package installations: Add the following option to cassandra-env.sh file:
    JVM_OPTS="$JVM_OPTS -Dcassandra.write_survey=true
  • Tarball installations: Start the node with this option:
    cd installation_location &&
    sudo bin/cassandra -Dcassandra.write_survey=true