Skip to content

Commit

Permalink
schema.cql: default schema should be usable with one C* node
Browse files Browse the repository at this point in the history
  • Loading branch information
Corentin Chary committed Nov 2, 2016
1 parent 66a997f commit a6abe62
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions share/schema.cql
@@ -1,10 +1,10 @@

CREATE KEYSPACE IF NOT EXISTS biggraphite_metadata WITH replication = {
'class': 'SimpleStrategy',
'replication_factor': '3'
'replication_factor': '1'
} AND durable_writes = true;

CREATE KEYSPACE IF NOT EXISTS biggraphite WITH replication = {
'class': 'SimpleStrategy',
'replication_factor': '2'
'replication_factor': '1'
} AND durable_writes = false;

0 comments on commit a6abe62

Please sign in to comment.