Skip to content

Commit

Permalink
Document in requirement to CREATE the reaper_db keyspace
Browse files Browse the repository at this point in the history
  • Loading branch information
rustyrazorblade committed Sep 6, 2017
1 parent d313813 commit 536ddc6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
5 changes: 5 additions & 0 deletions docs/docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,11 @@ <h4 id="cassandra-backend">Cassandra Backend</h4>

<p>The Apache Cassandra backend is the only one that allows running several Reaper instances at once. This provides high availability and allows to repair multi DC clusters (see the <strong>Multi-DC</strong> section below).</p>

<p>You will need to create a keyspace to store your data. This is installation specific, you will need to fill in your own datacenter names. For example:</p>

<pre><code class="language-none">CREATE KEYSPACE reaper_db WITH replication = {'class': 'NetworkTopologyStrategy', 'datacenter1': 3};
</code></pre>

<h3 id="other-configuration-settings">Other Configuration settings</h3>

<p>The Reaper service specific configuration values are:</p>
Expand Down
6 changes: 6 additions & 0 deletions src/docs/content/docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,12 @@ cassandra:
```
The Apache Cassandra backend is the only one that allows running several Reaper instances at once. This provides high availability and allows to repair multi DC clusters (see the **Multi-DC** section below).
You will need to create a keyspace to store your data. This is installation specific, you will need to fill in your own datacenter names. For example:
```none
CREATE KEYSPACE reaper_db WITH replication = {'class': 'NetworkTopologyStrategy', 'datacenter1': 3};
```
### Other Configuration settings
Expand Down

0 comments on commit 536ddc6

Please sign in to comment.