What is replication factor? Why not use CONSISTENCY QUORUM? It's faster and safe enough.
Best regards, Vladimir Yudovin, Winguzone - Cloud Cassandra Hosting ---- On Thu, 22 Dec 2016 10:14:14 -0500 Ali Akhtar <ali.rac...@gmail.com> wrote ---- Is it possible to provide these options per query rather than set them globally? On Thu, Dec 22, 2016 at 7:15 AM, Voytek Jarnot <voytek.jar...@gmail.com> wrote: cassandra.yaml has various timeouts such as read_request_timeout, range_request_timeout, write_request_timeout, etc. The driver does as well (via Cluster -> Configuration -> SocketOptions -> setReadTimeoutMillis). Not sure if you can (or would want to) set them to "forever", but it's a starting point. On Wed, Dec 21, 2016 at 7:10 PM, Ali Akhtar <ali.rac...@gmail.com> wrote: I have some queries which need to be processed in a consistent manner. I'm setting the consistently level = ALL option on these queries. However, I've noticed that sometimes these queries fail because of a timeout (2 seconds). In my use case, for certain queries, I want them to never time out and block until they have been acknowledged by all nodes. Is that possible thru the Datastax Java driver, or another way?