aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md30
1 files changed, 30 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..b84e6e4
--- /dev/null
+++ b/README.md
@@ -0,0 +1,30 @@
+# Dockerized Apache Storm
+
+Setting up a sample project with Apache Storm using stream parse. The
+`wordcount` project was created with `sparse quickstart wordcount` but it
+required some modifications to get running.
+
+## https://github.com/Parsely/streamparse/issues/479
+
+I don't know if this is the same error that was messing with me but I couldn't
+get the sample `wordcount` project to run when I installed storm `2.3.0` or
+`2.2.0`. Things started to work once I downgraded to `2.1.0`.
+
+## Upating dependancies
+
+```
+ :dependencies [[org.apache.storm/storm-core "2.1.0"]
+ [org.apache.storm/flux-core "2.1.0"]]
+```
+Updated these versions to match my local storm version
+
+## https://github.com/Parsely/streamparse/issues/472
+
+```
+(require 'cemerick.pomegranate.aether)
+(cemerick.pomegranate.aether/register-wagon-factory!
+ "http" #(org.apache.maven.wagon.providers.http.HttpWagon.))
+```
+
+Adding the snippet above to my project.clj seemed to fix this issue
+