This is an OpsCode Chef cookbook for Apache Cassandra (DataStax Community Edition) as well as DataStax Enterprise.
It uses officially released packages and provides an Upstart service script. It has limited support for adjustment of Cassandra configuration parameters using Chef node attributes.
It was originally created for CI and development environments. More attributes will be added over time, feel free to contribute what you find missing!
This cookbook currently provides
- Cassandra 2.0.x via tarballs
- Cassandra 2.0.x or 1.2.x (DataStax Community Edition) via packages.
- DataStax Enterprise (DSE)
- Ubuntu 11.04 through 13.10 via DataStax apt repo.
- RHEL/CentOS via DataStax yum repo.
Two provided recipes are cassandra::tarball
and cassandra::datastax
. The former uses official tarballs
and thus can be used to provision any specific version.
The latter uses DataStax repository via packages. You can install different versions (ex. dsc20 for v2.0) available in the repository by altering :package_name
attribute (dsc20
by default).
You can also install the DataStax Enterprise edition by adding node[:cassandra][:dse]
attributes according to the datastax.rb.
There are also two recipes for DataStax opscenter installation ( opscenter_agent
and opscenter_server
) along with attributes available for override (see below).
The optional recipe cassandra::jna will install the jna.jar in the
/usr/share/java/jna.jar
, and create a symbolic link to it on
#{cassandra.lib\_dir}/jna.jar
, according to the DataStax
documentation.
-
node[:cassandra][:version]
(default: a recent patch version): version to provision -
node[:cassandra][:tarball][:url]
andnode[:cassandra][:tarball][:md5]
specify tarball URL and MD5 chechsum used by thecassandra::tarball
recipe. -
Setting
node[:cassandra][:tarball][:url]
to "auto" (default) will download the tarball of the specified version from the Apache repository. -
node[:cassandra][:user]
: username Cassandra node process will use -
node[:cassandra][:jvm][:xms]
(default:32
) andnode[:cassandra][:jvm][:xmx]
(default:512
) control JVM-Xms
and-Xms
flag values, in megabytes (no need to add them
suffix) -
node[:cassandra][:installation_dir]
(default:/usr/local/cassandra
): installation directory -
node[:cassandra][:data_root_dir]
(default:/var/lib/cassandra
): data directory root -
node[:cassandra][:log_dir]
(default:/var/log/cassandra
): log directory -
node[:cassandra][:rpc_address]
(default:localhost
): address to bind the RPC interface -
node[:cassandra][:opscenter][:server][:package_name]
(default: opscenter-free) -
node[:cassandra][:opscenter][:server][:port]
(default: 8888) -
node[:cassandra][:opscenter][:server][:interface]
(default: 0.0.0.0) -
node[:cassandra][:opscenter][:agent][:download_url]
(default: "") Required. You need to specify agent download url, because that could be different for each opscenter server version. ( S3 is a great place to store packages ) -
node[:cassandra][:opscenter][:agent][:checksum]
(default:nil
) -
node[:cassandra][:opscenter][:agent][:install_dir]
(default:/opt
) -
node[:cassandra][:opscenter][:agent][:install_folder_name]
(default:opscenter_agent
) -
node[:cassandra][:opscenter][:agent][:binary_name]
(default:opscenter-agent
) Introduced since Datastax changed agent binary name from opscenter-agent to datastax-agent. Make sure to set it right if you are updating to 4.0.2 -
node[:cassandra][:opscenter][:agent][:server_host]
(default: "" ). If left empty, will use search to get IP by opscenterserver_role
role. -
node[:cassandra][:opscenter][:agent][:server_role]
(default:opscenter_server
). Will be use for opscenter server IP lookup if:server_host
is not set. -
node[:cassandra][:opscenter][:agent][:use_ssl]
(default:true
) -
node[:cassandra][:rackdc][:dc]
(default: "") The datacenter to specify in the cassandra-rackdc.properties file. (GossipingPropertyFileSnitch only) -
node[:cassandra][:rackdc][:rack]
(default: "") The rack to specify in the cassandra-rackdc.properties file (GossipingPropertyFileSnitch only) -
node[:cassandra][:rackdc][:prefer_local]
(default: "false") Whether the snitch will prefer the internal ip when possible, as the Ec2MultiRegionSnitch does. (GossipingPropertyFileSnitch only)
node[:cassandra][:max_hint_window_in_ms]
The maximum amount of time a dead host will have hints generated (default: 10800000).node[:cassandra][:partitioner]
The partitioner to distribute keys across the cluster (default: org.apache.cassandra.dht.Murmur3Partitioner).node[:cassandra][:key_cache_size_in_mb]
Default value is empty to make it "auto" (min(5% of Heap (in MB), 100MB)) (default: "").node[:cassandra][:broadcast_address]
= Address to broadcast to other Cassandra nodes (default: node[:ipaddress]).node[:cassandra][:range_request_timeout_in_ms]
How long the coordinator should wait for seq or index scans to complete (default: 10000).node[:cassandra][:streaming_socket_timeout_in_ms]
Enable socket timeout for streaming operation (default: 0 - no timeout).node[:cassandra][:index_interval]
index_interval controls the sampling of entries from the primrary row index in terms of space versus time (default: 128).node[:cassandra][:auto_bootstrap]
Setting this parameter to false prevents the new nodes from attempting to get all the data from the other nodes in the data center. (default: true).node[:cassandra][:enable_assertions]
Enable JVM assertions. Disabling this in production will give a modest performance benefit (around 5%) (default: true).node[:cassandra][:xss]
JVM per thread stack-size (-Xss option) (default: 256k).node[:cassandra][:jmx_server_hostname]
java.rmi.server.hostname option for JMX interface, necessary to set when you have problems connecting to JMX) (default: false).
node[:cassandra][:jna][:base_url]
The base url to fetch the JNA jar (default: https://github.com/twall/jna/tree/4.0/dist)node[:cassandra][:jna][:jar_name]
The name of the jar to download from the base url. (default: jna.jar)node[:cassandra][:jna][:sha256sum]
The SHA-256 checksum of the file. If the local jna.jar file matches the checksum, the chef-client will not re-download it. (default: dac270b6441ce24d93a96ddb6e8f93d8df099192738799a6f6fcfc2b2416ca19)
OracleJDK 7, OpenJDK 7, OpenJDK 6 or Sun JDK 6.
Create a branch, make the changes, then submit a pull request on GitHub with a brief description of what you've done and why your changes should be included.
Michael S. Klishin, Travis CI Development Team, 2012-2014.
Released under the Apache 2.0 License.