Skip to content

Commit

Permalink
Add env for enabling incremental backups
Browse files Browse the repository at this point in the history
  • Loading branch information
tolysz authored Feb 7, 2017
1 parent 2793188 commit 98a72f3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cassandra-scheduler/src/dist/conf/scheduler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ cassandra:
seeds_url: "${SEEDS_URL:-http://${SERVICE_NAME:-cassandra}.marathon.mesos:${API_PORT:-8080}/v1/seeds}"
listen_address: "localhost"
rpc_address: "localhost"
incremental_backups: false
auto_snapshot: false
snapshot_before_compaction: false
incremental_backups: ${CASSANDRA_INCREMENTAL_BACKUPS:-false}
auto_snapshot: ${CASSANDRA_AUTO_SNAPSHOT:-false}
snapshot_before_compaction: ${CASSANDRA_SNAPSHOT_BEFORE_COMPACTION:-false}
enable_user_defined_functions: ${CASSANDRA_ENABLE_USER_DEFINED_FUNCTIONS:-false}
endpoint_snitch : "GossipingPropertyFileSnitch"
num_tokens : ${CASSANDRA_NUM_TOKENS:-256}
Expand Down

0 comments on commit 98a72f3

Please sign in to comment.