Advertisement
Guest User

Untitled

a guest
Oct 25th, 2013
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.71 KB | None | 0 0
  1. # The snitch to be delegated by the DseDelegateSnitch
  2. # Out of the box, Cassandra provides:
  3. # - org.apache.cassandra.locator.SimpleSnitch
  4. # - org.apache.cassandra.locator.PropertyFileSnitch
  5. # - org.apache.cassandra.locator.GossipingPropertyFileSnitch
  6. # - org.apache.cassandra.locator.RackInferringSnitch
  7. # - org.apache.cassandra.locator.Ec2Snitch
  8. # - org.apache.cassandra.locator.Ec2MultiRegionSnitch
  9. # Full descriptions found at cassandra.yaml:endpoint_snitch.
  10. # DataStax Enterprise provides:
  11. # - com.datastax.bdp.snitch.DseSimpleSnitch:
  12. # Proximity is determined by DSE workload, which places Cassandra,
  13. # Analytics, and Solr nodes into their seperate datacenters.
  14. delegated_snitch: com.datastax.bdp.snitch.DseSimpleSnitch
  15.  
  16. # Kerberos options
  17. #
  18. # The qop is the "Quality of Protection" for each connection. Used by clients
  19. # and servers. Below is a list of valid values and their meanings.
  20. # auth - (default) authentication only
  21. # auth-int - authentication plus integity protection of all transmitted data
  22. # auth-conf - authetication plus integrity protection and encryption of all
  23. # transmitted data
  24. # Warning: Encryption using auth-conf is separate and completely independent
  25. # of whether encryption is done using SSL. So that if auth-conf is selected
  26. # here and SSL is enabled, then the transmitted data will be encrypted twice.
  27. kerberos_options:
  28. keytab: resources/dse/conf/dse.keytab
  29. service_principal: dse/_HOST@REALM
  30. http_principal: HTTP/_HOST@REALM
  31. qop: auth
  32.  
  33. # To ensure that data with a TTL is purged from Solr indexes when it expires,
  34. # DSE periodically checks indexes for data that has exceeded its TTL. These settings
  35. # control the scheduling & execution of those checks.
  36. ttl_index_rebuild_options:
  37. # by default, schedule a check every 300 seconds
  38. fixed_rate_period: 300
  39. # the first check is delayed to speed up startup time
  40. initial_delay: 20
  41. # documents subject to TTL are checked in batches: this configures the max number of docs
  42. # checked per batch
  43. max_docs_per_batch: 200
  44.  
  45. # Solr concurrency settings
  46. #
  47. # Max number of concurrent asynchronous indexing threads per core.
  48. # Default is "number of available cores" * 2; if set at 1,
  49. # the system reverts to the synchronous behavior, where data is
  50. # synchronously written into Cassandra and indexed by Solr.
  51. #
  52. # max_solr_concurrency_per_core: 2
  53. #
  54. # The back pressure threshold is the max number of queued asynchronous
  55. # indexing requests per core, computed at Solr commit time;
  56. # when exceeded, back pressure kicks in to avoid excessive
  57. # resources consumption, causing throttling of new incoming requests.
  58. # Default is 10000.
  59. #
  60. # back_pressure_threshold_per_core: 10000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement