Cassandra Installation with Helm: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 9: Line 9:


=Overview=
=Overview=
This article refers to the bitnami Cassandra chart.
<syntaxhighlight lang='bash'>
<syntaxhighlight lang='bash'>
helm repo add bitnami https://charts.bitnami.com/bitnami
helm repo add bitnami https://charts.bitnami.com/bitnami

Revision as of 02:20, 12 January 2021

External

Internal

Overview

This article refers to the bitnami Cassandra chart.

helm repo add bitnami https://charts.bitnami.com/bitnami
helm install my-release bitnami/cassandra

Configuration

JVM Heap Parameters

Add the following to the configuration overlay:

extraEnvVars:
  - name: JVM_OPTS
    value: '-Xms4G -Xmx4G -Xmn1G'

The -Xms, -Xmx and -Xmn values defined here will take precedence and will override the values calculated by the startup scripts.