We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
0 parents commit 615023eCopy full SHA for 615023e
README.md
@@ -0,0 +1,16 @@
1
+storm-poc
2
+==================
3
+
4
+Taken from http://svendvanderveken.wordpress.com/2013/07/30/scalable-real-time-state-update-with-storm/
5
6
+Example of basic Storm topology that updates DB persistent state. based on Java 7 and
7
+ <storm.version>0.9.0.1</storm.version>
8
+ <cassandra.version>2.0.1</cassandra.version>
9
10
11
12
+In order to run this example, an instance of Cassandra with the following key space is required:
13
14
+```
15
+CREATE KEYSPACE EVENT_POC WITH replication = { 'class': 'SimpleStrategy', 'replication_factor': '1' } ;
16
0 commit comments