I think that CQL does not support replication factors at the table level (see create table parameters ). One option is to create a key space with a replication ratio = 1:
CREATE KEYSPACE <ksname> WITH replication = {'class':'<strategy>' [,'<option>':<val>]}; Example: To create a keyspace with SimpleStrategy and "replication_factor" option with a value of "1" you would use this statement: CREATE KEYSPACE <ksname> WITH replication = {'class':'SimpleStrategy', 'replication_factor':1};
then all tables created in this key space will not have replication.
If you want to have a table for each node, I think Cassandra does not directly support this. One work task is to launch an additional Cassandra cluster for each node, where each cluster has only one node.
source share