Last active
May 27, 2016 03:10
-
-
Save allixender/6a9a504ef017482f9760a78b9f9dd70d to your computer and use it in GitHub Desktop.
This file contains 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: 'Test Cluster' | |
hinted_handoff_enabled: true | |
max_hint_window_in_ms: 10800000 # 3 hours | |
hinted_handoff_throttle_in_kb: 1024 | |
max_hints_delivery_threads: 2 | |
batchlog_replay_throttle_in_kb: 1024 | |
authenticator: AllowAllAuthenticator | |
authorizer: AllowAllAuthorizer | |
permissions_validity_in_ms: 2000 | |
partitioner: org.apache.cassandra.dht.Murmur3Partitioner | |
data_file_directories: | |
- target/embeddedCassandra/data | |
commitlog_directory: target/embeddedCassandra/commitlog | |
disk_failure_policy: stop | |
commit_failure_policy: stop | |
key_cache_size_in_mb: 10 | |
key_cache_save_period: 600 | |
row_cache_size_in_mb: 0 | |
row_cache_save_period: 0 | |
counter_cache_size_in_mb: 0 | |
counter_cache_save_period: 600 | |
saved_caches_directory: target/embeddedCassandra/saved_caches | |
commitlog_sync: periodic | |
commitlog_sync_period_in_ms: 10000 | |
commitlog_segment_size_in_mb: 32 | |
seed_provider: | |
- class_name: org.apache.cassandra.locator.SimpleSeedProvider | |
parameters: | |
- seeds: "127.0.0.1" | |
concurrent_reads: 16 | |
concurrent_writes: 16 | |
concurrent_counter_writes: 16 | |
# file_cache_size_in_mb: 64 | |
# memtable_heap_space_in_mb: 256 | |
# memtable_offheap_space_in_mb: 256 | |
# Total memory to use for memtables. Cassandra will flush the largest | |
# memtable when this much memory is used. | |
# If omitted, Cassandra will set it to 1/3 of the heap. | |
# memtable_total_space_in_mb: 2048 | |
# Total space to use for commitlogs. | |
# If space gets above this value (it will round up to the next nearest | |
# segment multiple), Cassandra will flush every dirty CF in the oldest | |
# segment and remove it. | |
# commitlog_total_space_in_mb: 4096 | |
memtable_allocation_type: heap_buffers | |
memtable_flush_writers: 4 | |
index_summary_capacity_in_mb: | |
index_summary_resize_interval_in_minutes: 60 | |
trickle_fsync: false | |
trickle_fsync_interval_in_kb: 10240 | |
storage_port: 7010 | |
ssl_storage_port: 7011 | |
listen_address: 127.0.0.1 | |
start_native_transport: true | |
native_transport_port: 9146 | |
start_rpc: true | |
rpc_address: localhost | |
rpc_port: 9175 | |
rpc_keepalive: true | |
rpc_server_type: sync | |
thrift_framed_transport_size_in_mb: 15 | |
thrift_max_message_length_in_mb: 16 | |
incremental_backups: false | |
snapshot_before_compaction: false | |
auto_snapshot: false | |
tombstone_warn_threshold: 1000 | |
tombstone_failure_threshold: 100000 | |
column_index_size_in_kb: 64 | |
batch_size_warn_threshold_in_kb: 5 | |
compaction_throughput_mb_per_sec: 16 | |
sstable_preemptive_open_interval_in_mb: 50 | |
read_request_timeout_in_ms: 5000 | |
range_request_timeout_in_ms: 10000 | |
write_request_timeout_in_ms: 2000 | |
cas_contention_timeout_in_ms: 1000 | |
truncate_request_timeout_in_ms: 60000 | |
request_timeout_in_ms: 10000 | |
cross_node_timeout: false | |
endpoint_snitch: SimpleSnitch | |
dynamic_snitch_update_interval_in_ms: 100 | |
dynamic_snitch_reset_interval_in_ms: 600000 | |
dynamic_snitch_badness_threshold: 0.1 | |
request_scheduler: org.apache.cassandra.scheduler.NoScheduler | |
index_interval: 128 | |
encryption_options: | |
internode_encryption: none | |
keystore: conf/.keystore | |
keystore_password: cassandra | |
truststore: conf/.truststore | |
truststore_password: cassandra | |
internode_compression: none | |
inter_dc_tcp_nodelay: false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment