Details
-
Improvement
-
Status: Resolved
-
Normal
-
Resolution: Fixed
Description
Using Cassandra 3.11.10, 3 nodes cluster Cassandra allows to create a keyspace having `replication_factor` greater than the number of available nodes.
-- successfully created Keyspace with RF = 3 > node count = 3 CREATE KEYSPACE mykeyspace WITH replication = {'class': 'SimpleStrategy', 'replication_factor': 5 };
From this discussion on community.datastax.com. It appears that this would lead to serious operational problems.
Would it be OK to improve the `CREATE KEYSPACE` to block (or display warning) when attempting to set `replication_factor` > node count?