Details
-
Improvement
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
0.2.1
-
None
Description
Current in CassandraClient#checkKeyspace() consistency is hard coded such that consistency level is .ONE which permits consistency to wait until one replica has responded. This could be improved to enable users to specify other consistency profiles e.g.
ANY: Wait until some replica has responded.
ONE: Wait until one replica has responded.
TWO: Wait until two replicas have responded.
THREE: Wait until three replicas have responded.
LOCAL_QUORUM: Wait for quorum on the datacenter the connection was stablished.
EACH_QUORUM: Wait for quorum on each datacenter.
QUORUM: Wait for a quorum of replicas (no matter which datacenter).
ALL: Blocks for all the replicas before returning to the client.
Configuration should be made available through gora.properties
Attachments
Attachments
Issue Links
- relates to
-
GORA-215 expose Hector's CassandraHostConfigurator possibilities
- Resolved