You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by ka...@apache.org on 2016/08/23 00:22:24 UTC

storm git commit: Fix command to run RollingTopWords example

Repository: storm
Updated Branches:
  refs/heads/1.x-branch 85504a5af -> aad56b3a6


Fix command to run RollingTopWords example

Appended target directory to command. Previously resulted in ClassNotFound exception.

Project: http://git-wip-us.apache.org/repos/asf/storm/repo
Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/aad56b3a
Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/aad56b3a
Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/aad56b3a

Branch: refs/heads/1.x-branch
Commit: aad56b3a6aaf8e8ae41deb6b629282d226b81108
Parents: 85504a5
Author: Arthur Maciejewicz <ar...@gmail.com>
Authored: Mon Aug 1 16:50:48 2016 -0400
Committer: Jungtaek Lim <ka...@gmail.com>
Committed: Tue Aug 23 09:22:16 2016 +0900

----------------------------------------------------------------------
 examples/storm-starter/README.markdown | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/aad56b3a/examples/storm-starter/README.markdown
----------------------------------------------------------------------
diff --git a/examples/storm-starter/README.markdown b/examples/storm-starter/README.markdown
index d68ca6b..ca0a253 100644
--- a/examples/storm-starter/README.markdown
+++ b/examples/storm-starter/README.markdown
@@ -92,7 +92,7 @@ You can submit (run) a topology contained in this uberjar to Storm via the `stor
 
     # Example 2: Run the RollingTopWords in remote/cluster mode,
     #            under the name "production-topology"
-    $ storm jar storm-starter-*.jar org.apache.storm.starter.RollingTopWords production-topology remote
+    $ storm jar target/storm-starter-*.jar org.apache.storm.starter.RollingTopWords production-topology remote
 
 With submitting you can run topologies which use multilang, for example, `WordCountTopology`.