ninja-fix debian cassandra.yaml patch for CASSANDRA-14793

This commit is contained in:
Mick Semb Wever 2021-02-04 15:55:15 +01:00
parent f69b11eee9
commit b04429b57c
No known key found for this signature in database
GPG Key ID: E91335D77E3E87CB
1 changed files with 12 additions and 9 deletions

View File

@ -1,28 +1,31 @@
--- a/conf/cassandra.yaml --- a/conf/cassandra.yaml
+++ b/conf/cassandra.yaml +++ b/conf/cassandra.yaml
@@ -197,13 +197,13 @@ @@ -203,8 +203,8 @@ partitioner: org.apache.cassandra.dht.Murmur3Partitioner
# directories are specified, Cassandra will spread data evenly across # directories are specified, Cassandra will spread data evenly across
# them by partitioning the token ranges. # them by partitioning the token ranges.
# If not set, the default directory is $CASSANDRA_HOME/data/data. # If not set, the default directory is $CASSANDRA_HOME/data/data.
-# data_file_directories: -# data_file_directories:
-# - /var/lib/cassandra/data -# - /var/lib/cassandra/data
+data_file_directories: +data_file_directories:
+ - /var/lib/cassandra/data + - /var/lib/cassandra/data
# Directory were Cassandra should store the data of the local system keyspaces.
# By default Cassandra will store the data of the local system keyspaces in the first of the data directories specified
@@ -216,7 +216,7 @@ partitioner: org.apache.cassandra.dht.Murmur3Partitioner
# commit log. when running on magnetic HDD, this should be a # commit log. when running on magnetic HDD, this should be a
# separate spindle than the data directories. # separate spindle than the data directories.
# If not set, the default directory is $CASSANDRA_HOME/data/commitlog. # If not set, the default directory is $CASSANDRA_HOME/data/commitlog.
-# commitlog_directory: /var/lib/cassandra/commitlog -# commitlog_directory: /var/lib/cassandra/commitlog
+commitlog_directory: /var/lib/cassandra/commitlog +commitlog_directory: /var/lib/cassandra/commitlog
# Enable / disable CDC functionality on a per-node basis. This modifies the logic used # Enable / disable CDC functionality on a per-node basis. This modifies the logic used
# for write path allocation rejection (standard: never reject. cdc: reject Mutation # for write path allocation rejection (standard: never reject. cdc: reject Mutation
@@ -366,7 +366,7 @@ @@ -379,7 +379,7 @@ counter_cache_save_period: 7200
# saved caches # saved caches
# If not set, the default directory is $CASSANDRA_HOME/data/saved_caches. # If not set, the default directory is $CASSANDRA_HOME/data/saved_caches.
-# saved_caches_directory: /var/lib/cassandra/saved_caches -# saved_caches_directory: /var/lib/cassandra/saved_caches
+saved_caches_directory: /var/lib/cassandra/saved_caches +saved_caches_directory: /var/lib/cassandra/saved_caches
# commitlog_sync may be either "periodic", "group", or "batch." # commitlog_sync may be either "periodic", "group", or "batch."
# #