Advertisement
Guest User

Untitled

a guest
Feb 8th, 2016
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.59 KB | None | 0 0
  1. cluster_name: 'cass'
  2. hinted_handoff_enabled: true
  3. max_hint_window_in_ms: 10800000 # 3 hours
  4. hinted_handoff_throttle_in_kb: 1024
  5. max_hints_delivery_threads: 2
  6. batchlog_replay_throttle_in_kb: 1024
  7. authenticator: AllowAllAuthenticator
  8. authorizer: AllowAllAuthorizer
  9. permissions_validity_in_ms: 2000
  10. partitioner: org.apache.cassandra.dht.Murmur3Partitioner
  11. data_file_directories:
  12. - /var/lib/cassandra/data
  13. commitlog_directory: /var/lib/cassandra/commitlog
  14. disk_failure_policy: stop
  15. commit_failure_policy: stop
  16. key_cache_size_in_mb:
  17. key_cache_save_period: 14400
  18. row_cache_size_in_mb: 0
  19. row_cache_save_period: 0
  20. counter_cache_size_in_mb:
  21. counter_cache_save_period: 7200
  22. saved_caches_directory: /var/lib/cassandra/saved_caches
  23. commitlog_sync: periodic
  24. commitlog_sync_period_in_ms: 10000
  25. commitlog_segment_size_in_mb: 32
  26. seed_provider:
  27. # Addresses of hosts that are deemed contact points.
  28. # Cassandra nodes use this list of hosts to find each other and learn
  29. # the topology of the ring. You must change this if you are running
  30. # multiple nodes!
  31. - class_name: org.apache.cassandra.locator.SimpleSeedProvider
  32. parameters:
  33. # seeds is actually a comma-delimited list of addresses.
  34. # Ex: "<ip1>,<ip2>,<ip3>"
  35. - seeds: "XX.YY"
  36. concurrent_reads: 32
  37. concurrent_writes: 32
  38. concurrent_counter_writes: 32
  39. memtable_allocation_type: heap_buffers
  40. index_summary_capacity_in_mb:
  41. index_summary_resize_interval_in_minutes: 60
  42. trickle_fsync: false
  43. trickle_fsync_interval_in_kb: 10240
  44. storage_port: 7000
  45. ssl_storage_port: 7001
  46. listen_address: localhost
  47. start_native_transport: true
  48. native_transport_port: 9042
  49. start_rpc: true
  50. rpc_address: localhost
  51. rpc_port: 9160
  52. rpc_keepalive: true
  53. rpc_server_type: sync
  54. thrift_framed_transport_size_in_mb: 15
  55. incremental_backups: false
  56. snapshot_before_compaction: false
  57. auto_snapshot: true
  58. tombstone_warn_threshold: 1000
  59. tombstone_failure_threshold: 100000
  60. column_index_size_in_kb: 64
  61. batch_size_warn_threshold_in_kb: 64
  62. compaction_throughput_mb_per_sec: 16
  63. compaction_large_partition_warning_threshold_mb: 100
  64. sstable_preemptive_open_interval_in_mb: 50
  65. read_request_timeout_in_ms: 5000
  66. # How long the coordinator should wait for seq or index scans to complete
  67. range_request_timeout_in_ms: 10000
  68. # How long the coordinator should wait for writes to complete
  69. write_request_timeout_in_ms: 2000
  70. # How long the coordinator should wait for counter writes to complete
  71. counter_write_request_timeout_in_ms: 5000
  72. cas_contention_timeout_in_ms: 1000
  73. truncate_request_timeout_in_ms: 60000
  74. # The default timeout for other, miscellaneous operations
  75. request_timeout_in_ms: 10000
  76. cross_node_timeout: false
  77. endpoint_snitch: com.datastax.bdp.snitch.DseSimpleSnitch
  78.  
  79. # controls how often to perform the more expensive part of host score
  80. # calculation
  81. dynamic_snitch_update_interval_in_ms: 100
  82. # controls how often to reset all host scores, allowing a bad host to
  83. # possibly recover
  84. dynamic_snitch_reset_interval_in_ms: 600000
  85. dynamic_snitch_badness_threshold: 0.1
  86. request_scheduler: org.apache.cassandra.scheduler.NoScheduler
  87. server_encryption_options:
  88. internode_encryption: none
  89. keystore: resources/dse/conf/.keystore
  90. keystore_password: cassandra
  91. truststore: resources/dse/conf/.truststore
  92. truststore_password: cassandra
  93. client_encryption_options:
  94. enabled: false
  95. # If enabled and optional is set to true encrypted and unencrypted connections are handled.
  96. optional: false
  97. keystore: resources/dse/conf/.keystore
  98. keystore_password: cassandra
  99. internode_compression: dc
  100. inter_dc_tcp_nodelay: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement