michaelklishin / cassandra-chef-cookbook

Chef cookbook for Apache Cassandra, DataStax Enterprise (DSE) and DataStax agent

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DataStax Community 3.3 support

leicozit opened this issue · comments

The latest version of DataStax Distribution of Apache Cassandra 3.x is 3.3. When you make changes to cookbook?

@leicozit this is open source software. You can contribute the change instead of asking others.

@leicozit I've submitted a pull request (#276) that will enable you to install Cassandra > 3.0, including 3.5.0 (my changes maintain complete compatibility with 2.x and 3.0).

If it's accepted you'll just need to override these attributes in your wrapper cookbook/role:

normal['cassandra']['version'] = "3.[x].0"
normal['cassandra']['release'] = ""
normal['cassandra']['jamm']['version'] = "0.3.1"
normal['cassandra']['package_name'] = "datastax-ddc"
normal['cassandra']['tools_package_name'] = "datastax-ddc-tools"
normal['cassandra']['apt']['uri'] = 'https://debian.datastax.com/datastax-ddc'
normal['cassandra']['apt']['distribution'] = "3.[x]"

The PR is in, thank you, @williamsjj!