+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
...