Skip to content

Instantly share code, notes, and snippets.

@jeffjirsa
Created April 23, 2015 18:38
Show Gist options
  • Save jeffjirsa/8d185d7fbdb88c3d7da4 to your computer and use it in GitHub Desktop.
Save jeffjirsa/8d185d7fbdb88c3d7da4 to your computer and use it in GitHub Desktop.
cqlsh> list variables;
variable | value
------------------------------------------+---------------------------------------------
authenticator | AllowAllAuthenticator
authorizer | AllowAllAuthorizer
auto_snapshot | true
batch_size_fail_threshold_in_kb | 50
batch_size_warn_threshold_in_kb | 5
batchlog_replay_throttle_in_kb | 1024
cas_contention_timeout_in_ms | 1000
cluster_name | snapshot
column_index_size_in_kb | 64
commit_failure_policy | stop
commitlog_directory | /Users/jeff/.ccm/snapshot/node1/commitlogs
commitlog_segment_size_in_mb | 33554432
commitlog_sync | periodic
commitlog_sync_period_in_ms | 10000
compaction_throughput_mb_per_sec | 16
concurrent_counter_writes | 32
concurrent_reads | 32
concurrent_writes | 32
counter_cache_save_period | 7200
counter_cache_size_in_mb | 12
counter_write_request_timeout_in_ms | 5000
cross_node_timeout | false
disk_failure_policy | best_effort
dynamic_snitch_badness_threshold | 0.1
dynamic_snitch_reset_interval_in_ms | 600000
dynamic_snitch_update_interval_in_ms | 100
endpoint_snitch | SimpleSnitch
hinted_handoff_enabled | true
hinted_handoff_throttle_in_kb | 1024
incremental_backups | false
index_summary_capacity_in_mb | 24
index_summary_resize_interval_in_minutes | 60
initial_token | [-9223372036854775808]
inter_dc_tcp_nodelay | false
internode_compression | all
key_cache_save_period | 14400
key_cache_size_in_mb | 24
listen_address | /127.0.0.1
max_hint_window_in_ms | 10800000
max_hints_delivery_threads | 2
memtable_allocation_type | heap_buffers
native_transport_port | 9042
num_tokens | 1
partitioner | org.apache.cassandra.dht.Murmur3Partitioner
permissions_validity_in_ms | 2000
phi_convict_threshold | 8.0
range_request_timeout_in_ms | 10000
read_request_timeout_in_ms | 5000
request_scheduler | org.apache.cassandra.scheduler.NoScheduler
request_timeout_in_ms | 10000
role_manager | CassandraRoleManager
roles_validity_in_ms | 2000
row_cache_save_period | 0
row_cache_size_in_mb | 0
rpc_address | /127.0.0.1
rpc_keepalive | true
rpc_port | 9160
rpc_server_type | sync
snapshot_before_compaction | false
ssl_storage_port | 7001
sstable_preemptive_open_interval_in_mb | 50
start_native_transport | true
start_rpc | true
storage_port | 7000
thrift_framed_transport_size_in_mb | 15
tombstone_failure_threshold | 100000
tombstone_warn_threshold | 1000
tracetype_query_ttl | 86400
tracetype_repair_ttl | 604800
trickle_fsync | false
trickle_fsync_interval_in_kb | 10240
truncate_request_timeout_in_ms | 60000
write_request_timeout_in_ms | 2000
(73 rows)
cqlsh> set variable 'phi_convict_threshold'='12';
variable | result
-----------------------+--------
phi_convict_threshold | True
cqlsh> list variables;
variable | value
------------------------------------------+---------------------------------------------
authenticator | AllowAllAuthenticator
authorizer | AllowAllAuthorizer
auto_snapshot | true
batch_size_fail_threshold_in_kb | 50
batch_size_warn_threshold_in_kb | 5
batchlog_replay_throttle_in_kb | 1024
cas_contention_timeout_in_ms | 1000
cluster_name | snapshot
column_index_size_in_kb | 64
commit_failure_policy | stop
commitlog_directory | /Users/jeff/.ccm/snapshot/node1/commitlogs
commitlog_segment_size_in_mb | 33554432
commitlog_sync | periodic
commitlog_sync_period_in_ms | 10000
compaction_throughput_mb_per_sec | 16
concurrent_counter_writes | 32
concurrent_reads | 32
concurrent_writes | 32
counter_cache_save_period | 7200
counter_cache_size_in_mb | 12
counter_write_request_timeout_in_ms | 5000
cross_node_timeout | false
disk_failure_policy | best_effort
dynamic_snitch_badness_threshold | 0.1
dynamic_snitch_reset_interval_in_ms | 600000
dynamic_snitch_update_interval_in_ms | 100
endpoint_snitch | SimpleSnitch
hinted_handoff_enabled | true
hinted_handoff_throttle_in_kb | 1024
incremental_backups | false
index_summary_capacity_in_mb | 24
index_summary_resize_interval_in_minutes | 60
initial_token | [-9223372036854775808]
inter_dc_tcp_nodelay | false
internode_compression | all
key_cache_save_period | 14400
key_cache_size_in_mb | 24
listen_address | /127.0.0.1
max_hint_window_in_ms | 10800000
max_hints_delivery_threads | 2
memtable_allocation_type | heap_buffers
native_transport_port | 9042
num_tokens | 1
partitioner | org.apache.cassandra.dht.Murmur3Partitioner
permissions_validity_in_ms | 2000
phi_convict_threshold | 12.0
range_request_timeout_in_ms | 10000
read_request_timeout_in_ms | 5000
request_scheduler | org.apache.cassandra.scheduler.NoScheduler
request_timeout_in_ms | 10000
role_manager | CassandraRoleManager
roles_validity_in_ms | 2000
row_cache_save_period | 0
row_cache_size_in_mb | 0
rpc_address | /127.0.0.1
rpc_keepalive | true
rpc_port | 9160
rpc_server_type | sync
snapshot_before_compaction | false
ssl_storage_port | 7001
sstable_preemptive_open_interval_in_mb | 50
start_native_transport | true
start_rpc | true
storage_port | 7000
thrift_framed_transport_size_in_mb | 15
tombstone_failure_threshold | 100000
tombstone_warn_threshold | 1000
tracetype_query_ttl | 86400
tracetype_repair_ttl | 604800
trickle_fsync | false
trickle_fsync_interval_in_kb | 10240
truncate_request_timeout_in_ms | 60000
write_request_timeout_in_ms | 2000
(73 rows)
cqlsh>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment