diff --git a/conf/cassandra.yaml b/conf/cassandra.yaml index 41bc038135..98cbb2a689 100644 --- a/conf/cassandra.yaml +++ b/conf/cassandra.yaml @@ -53,11 +53,6 @@ max_hints_delivery_threads: 2 # reduced proportionally to the number of nodes in the cluster. batchlog_replay_throttle_in_kb: 1024 -# The following setting populates the page cache on memtable flush and compaction -# WARNING: Enable this setting only when the whole node's data fits in memory. -# Defaults to: false -# populate_io_cache_on_flush: false - # Authentication backend, implementing IAuthenticator; used to identify users # Out of the box, Cassandra provides org.apache.cassandra.auth.{AllowAllAuthenticator, # PasswordAuthenticator}. diff --git a/src/java/org/apache/cassandra/config/Config.java b/src/java/org/apache/cassandra/config/Config.java index b2eedba851..a9b9237a5b 100644 --- a/src/java/org/apache/cassandra/config/Config.java +++ b/src/java/org/apache/cassandra/config/Config.java @@ -194,7 +194,6 @@ public class Config public volatile int counter_cache_keys_to_save = Integer.MAX_VALUE; public String memory_allocator = NativeAllocator.class.getSimpleName(); - public boolean populate_io_cache_on_flush = false; private static boolean isClientMode = false; @@ -274,7 +273,6 @@ public class Config periodic, batch } - public static enum InternodeCompression { all, none, dc