merge from 1.2

This commit is contained in:
Jonathan Ellis 2014-02-28 10:40:43 -06:00
commit 5b80b97ded
2 changed files with 1 additions and 7 deletions

View File

@ -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}.

View File

@ -180,7 +180,7 @@ public class Config
public volatile int row_cache_save_period = 0;
public int row_cache_keys_to_save = Integer.MAX_VALUE;
public String memory_allocator = NativeAllocator.class.getSimpleName();
public boolean populate_io_cache_on_flush = false;
public boolean populate_io_cache_on_flush = false; // ignored! see CASSANDRA-4694
private static boolean isClientMode = false;
@ -257,7 +257,6 @@ public class Config
periodic,
batch
}
public static enum InternodeCompression
{
all, none, dc