Skip to content

Instantly share code, notes, and snippets.

@Enigo
Created September 16, 2023 11:11
Show Gist options
  • Save Enigo/94e68177ab0f01bea6301f64016d3172 to your computer and use it in GitHub Desktop.
Save Enigo/94e68177ab0f01bea6301f64016d3172 to your computer and use it in GitHub Desktop.
CREATE KEYSPACE zoo WITH replication = {'class': 'NetworkTopologyStrategy', '<DATACENTER>' : 3} AND durable_writes = true;
USE zoo;
CREATE TABLE animals
(
name text PRIMARY KEY,
data map<text, text>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment