aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md22
1 files changed, 15 insertions, 7 deletions
diff --git a/README.md b/README.md
index b84e6e4..903e0db 100644
--- a/README.md
+++ b/README.md
@@ -1,20 +1,29 @@
# Dockerized Apache Storm
-Setting up a sample project with Apache Storm using stream parse. The
+To run the `wordcount` project:
+
+```
+make up && make enter
+cd wordcount
+sparse run
+```
+
+## How did I get here?
+
+Setting up a sample project with Apache Storm using streamparse. 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`.
+I just forked the repo and make a quick update so that I could just permanently
+run the local mode for now.
## Upating dependancies
```
- :dependencies [[org.apache.storm/storm-core "2.1.0"]
- [org.apache.storm/flux-core "2.1.0"]]
+ :dependencies [[org.apache.storm/storm-core "2.3.0"]
+ [org.apache.storm/flux-core "2.3.0"]]
```
Updated these versions to match my local storm version
@@ -27,4 +36,3 @@ Updated these versions to match my local storm version
```
Adding the snippet above to my project.clj seemed to fix this issue
-