Skip to content

Commit

Permalink
Merge pull request #441 from vinaykumarchella/3.x
Browse files Browse the repository at this point in the history
Remove these out of yml files due to no support in C* 2.1 or higher
  • Loading branch information
vinaykumarchella committed Feb 11, 2016
2 parents 852da8b + 49822e7 commit 995fe33
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,13 @@ public void writeAllProperties(String yamlLocation, String hostname, String seed
boolean enableIncremental = (config.getBackupHour() >= 0 && config.isIncrBackup()) && (CollectionUtils.isEmpty(config.getBackupRacs()) || config.getBackupRacs().contains(config.getRac()));
map.put("incremental_backups", enableIncremental);
map.put("endpoint_snitch", config.getSnitch());
map.put("in_memory_compaction_limit_in_mb", config.getInMemoryCompactionLimit());
// map.put("in_memory_compaction_limit_in_mb", config.getInMemoryCompactionLimit());
map.put("compaction_throughput_mb_per_sec", config.getCompactionThroughput());
map.put("partitioner", derivePartitioner(map.get("partitioner").toString(), config.getPartitioner()));

map.put("memtable_total_space_in_mb", config.getMemtableTotalSpaceMB());
// map.put("memtable_total_space_in_mb", config.getMemtableTotalSpaceMB());
map.put("stream_throughput_outbound_megabits_per_sec", config.getStreamingThroughputMB());
map.put("multithreaded_compaction", config.getMultithreadedCompaction());
// map.put("multithreaded_compaction", config.getMultithreadedCompaction());

map.put("max_hint_window_in_ms", config.getMaxHintWindowInMS());
map.put("hinted_handoff_throttle_in_kb", config.getHintedHandoffThrottleKb());
Expand Down

0 comments on commit 995fe33

Please sign in to comment.