Created
September 24, 2013 20:17
-
-
Save klizhentas/6690608 to your computer and use it in GitHub Desktop.
Cassandra
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:cluster_name => "Mailgun Tanks", | |
:initial_token => "", | |
:version => '1.2.5', | |
:user => "cassandra", | |
:jvm => { | |
:xms => 32, | |
:xmx => 512 | |
}, | |
:limits => { | |
:memlock => 'unlimited', | |
:nofile => 48000 | |
}, | |
:installation_dir => "/usr/local/cassandra", | |
:bin_dir => "/usr/local/cassandra/bin", | |
:lib_dir => "/usr/local/cassandra/lib", | |
:conf_dir => "/etc/cassandra/", | |
:data_root_dir => "/var/lib/cassandra/", | |
:commitlog_dir => "/var/lib/cassandra/", | |
:log_dir => "/var/log/cassandra/", | |
:listen_address => node[:ipaddress], | |
:rpc_address => node[:ipaddress], | |
:max_heap_size => nil, | |
:heap_new_size => nil, | |
:vnodes => 256, | |
:seeds => ['172.16.0.157'], | |
:concurrent_reads => 32, | |
:concurrent_writes => 96, | |
:snitch => 'SimpleSnitch' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment