Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 1 | // For Developer Machine single instance |
Instrumental | 4d7da3d | 2018-04-06 08:22:42 -0500 | [diff] [blame] | 2 | // CREATE KEYSPACE authz |
| 3 | // WITH REPLICATION = {'class' : 'SimpleStrategy','replication_factor':1}; |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 4 | // |
| 5 | // |
| 6 | |
| 7 | // Example of Network Topology, with Datacenter dc1 & dc2 |
| 8 | // CREATE KEYSPACE authz WITH replication = { 'class': 'NetworkTopologyStrategy', 'dc1': '2', 'dc2': '2' }; |
Instrumental | 4d7da3d | 2018-04-06 08:22:42 -0500 | [diff] [blame] | 9 | // Out of the box Docker Cassandra comes with "datacenter1", one instance |
| 10 | CREATE KEYSPACE authz WITH replication = { 'class': 'NetworkTopologyStrategy', 'datacenter1': '1' }; |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 11 | // |