Repository: storm Updated Branches: refs/heads/0.10.x-branch 64f46ebc5 -> 7bca912e8
STORM-813 notify mvn exec:java cannot run multilang topology * New multilang packages rely on supervisor deploy or maven dependency plugin Project: http://git-wip-us.apache.org/repos/asf/storm/repo Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/a448be54 Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/a448be54 Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/a448be54 Branch: refs/heads/0.10.x-branch Commit: a448be54543783225671eb7578b872c75645fe3e Parents: 847958c Author: Jungtaek Lim <[email protected]> Authored: Mon May 11 23:21:23 2015 +0900 Committer: Jungtaek Lim <[email protected]> Committed: Mon May 11 23:21:23 2015 +0900 ---------------------------------------------------------------------- examples/storm-starter/README.markdown | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/storm/blob/a448be54/examples/storm-starter/README.markdown ---------------------------------------------------------------------- diff --git a/examples/storm-starter/README.markdown b/examples/storm-starter/README.markdown index 1cb6636..f6c97ba 100644 --- a/examples/storm-starter/README.markdown +++ b/examples/storm-starter/README.markdown @@ -76,10 +76,10 @@ of Storm in this local Maven repository at `$HOME/.m2/repository`. > Note: All following examples require that you run `cd > examples/storm-starter` beforehand. -storm-starter topologies can be run with the maven-exec-plugin. For example, to -compile and run `WordCountTopology` in local mode, use the command: +storm-starter topologies which don't use multilang feature can be run with the maven-exec-plugin. +For example, to compile and run `ExclamationTopology` in local mode, use the command: - $ mvn compile exec:java -Dstorm.topology=storm.starter.WordCountTopology + $ mvn compile exec:java -Dstorm.topology=storm.starter.ExclamationTopology You can also run clojure topologies with Maven: @@ -111,6 +111,8 @@ You can submit (run) a topology contained in this uberjar to Storm via the `stor # under the name "production-topology" $ storm jar storm-starter-*.jar storm.starter.RollingTopWords production-topology remote +With submitting you can run topologies which use multilang, for example, `WordCountTopology`. + _Submitting a topology in local vs. remote mode:_ It depends on the actual code of a topology how you can or even must tell Storm whether to run the topology locally (in an in-memory LocalCluster instance of Storm) or remotely (in a "real" Storm cluster). In the case of
