Key Spaces Flashcards
What is Amazon Keyspaces?
Amazon Keyspaces is a fully managed Apache Cassandra database.
What is a Cluster in Cassandra?
Cluster is a collection of nodes.
What is a Node in Cassandra?
Node holds 2-4 TB of data.
Nodes represent the smallest unit of a database.
What is a Ring in Cassandra?
Ring is where nodes are arranged in a ring where all nodes connect to each other.
What is a Keyspace in Cassandra?
Keyspace is a namespace that specifies data replication on nodes.
What is a Table in Cassandra?
Table is tabular data of columns and rows with a primary key.
How is Cassandra queried?
Cassandra is queried using the Cassandra Query Language (CQL).
How can you interact with Cassandra?
Interacting with Cassandra is typically performed via an SDK in your programming language of choice.
What are the key operations in Cassandra Query Language (CQL)?
Key operations include creating Keyspace.