how to set cassandra read and write consistency
I can not find the documentation for this. I know there is a consistency command in cqlsh, but there is no distinction between read and write consistency. How would I set different consistency levels for read and write? Furthermore, there is a mention of a "default" consistency level. Where is that default set? and is it for read or write? bechbd By default, the Consistency Level is ONE for all R/W Operations. Setting CL is done on a per query (read or upsert) basis by adding the CONSISTENCY XXXX syntax on the query as seen here: https://cassandra.apache.org/doc/latest/cql/dml.html#insert and