+1 vote
in Cassandra by
How is a Keyspace created in Cassandra? & What are the parameters used?

1 Answer

0 votes
by
CREATE KEYSPACE ABC

WITH replication = { ‘class ’: ‘SimpleStrategy’, ‘replication_factor’: ‘3’}

AND durable_writes = ‘TRUE’;

The parameters used while creating a keyspace are:

Keyspace Name

Replication Strategy

Replication Factor &

Durable Writes

Related questions

0 votes
asked Mar 18 in Cassandra by rajeshsharma
0 votes
+1 vote
asked Feb 1, 2020 in Cassandra by rajeshsharma
...