Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
How is a Keyspace created in Cassandra? & What are the parameters used?
Home
Cassandra
How is a Keyspace created in Cassandra? & What are the parameters used?
+1
vote
asked
Feb 3, 2020
in
Cassandra
by
rajeshsharma
How is a Keyspace created in Cassandra? & What are the parameters used?
#cassandra-parameters
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Feb 3, 2020
by
SakshiSharma
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
...