blob: 52dc5ea77e834f7dcb312277112401355488492e [file] [log] [blame]
Mahendra Raghuwanshif92ec302018-05-03 12:15:03 +00001// For Developer Machine single instance
2// CREATE KEYSPACE authz
3// WITH REPLICATION = {'class' : 'SimpleStrategy','replication_factor':1};
4//
5//
6
7// Example of Network Topology, with Datacenter dc1 & dc2
8// CREATE KEYSPACE authz WITH replication = { 'class': 'NetworkTopologyStrategy', 'dc1': '2', 'dc2': '2' };
9// Out of the box Docker Cassandra comes with "datacenter1", one instance
10CREATE KEYSPACE authz WITH replication = { 'class': 'NetworkTopologyStrategy', 'datacenter1': '1' };
11//