You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by bo...@apache.org on 2017/05/05 14:25:37 UTC

[2/5] storm git commit: [STORM-2191] address revans2's suggestions, and fix typo (extra ']') in markdown in Setting-up-a-Storm-cluster.md

[STORM-2191] address revans2's suggestions, and fix typo (extra ']') in markdown in Setting-up-a-Storm-cluster.md


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

Branch: refs/heads/master
Commit: d57a895fe67e1afbf5f2efc9b2e9f59cce5707f7
Parents: 2ceef0d
Author: Erik Weathers <er...@gmail.com>
Authored: Thu May 4 14:57:56 2017 -0700
Committer: Erik Weathers <er...@gmail.com>
Committed: Thu May 4 14:57:56 2017 -0700

----------------------------------------------------------------------
 docs/Command-line-client.md                        | 2 +-
 docs/Running-topologies-on-a-production-cluster.md | 2 +-
 docs/Setting-up-a-Storm-cluster.md                 | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/d57a895f/docs/Command-line-client.md
----------------------------------------------------------------------
diff --git a/docs/Command-line-client.md b/docs/Command-line-client.md
index 646105b..47ad361 100644
--- a/docs/Command-line-client.md
+++ b/docs/Command-line-client.md
@@ -3,7 +3,7 @@ title: Command Line Client
 layout: documentation
 documentation: true
 ---
-This page describes all the commands that are possible with the "storm" command line client. To learn how to set up your "storm" client to talk to a remote cluster, follow the instructions in [Setting up development environment](Setting-up-development-environment.html).
+This page describes all the commands that are possible with the "storm" command line client. To learn how to set up your "storm" client to talk to a remote cluster, follow the instructions in [Setting up development environment](Setting-up-development-environment.html). See [Classpath handling](Classpath-handling.html) for details on using external libraries in these commands.
 
 These commands are:
 

http://git-wip-us.apache.org/repos/asf/storm/blob/d57a895f/docs/Running-topologies-on-a-production-cluster.md
----------------------------------------------------------------------
diff --git a/docs/Running-topologies-on-a-production-cluster.md b/docs/Running-topologies-on-a-production-cluster.md
index 802fd2e..b92f3b2 100644
--- a/docs/Running-topologies-on-a-production-cluster.md
+++ b/docs/Running-topologies-on-a-production-cluster.md
@@ -16,7 +16,7 @@ conf.setMaxSpoutPending(5000);
 StormSubmitter.submitTopology("mytopology", conf, topology);
 ```
 
-3) Create a jar containing your code and all the dependencies of your code (except for Storm -- the Storm jars will be added to the classpath on the worker nodes).
+3) Create a JAR containing your topology code. You have the option to either bundle all of the dependencies of your code into that JAR (except for Storm -- the Storm JARs will be added to the classpath on the worker nodes), or you can leverage the [Classpath handling](Classpath-handling.html) features in Storm for using external libraries without bundling them into your topology JAR.
 
 If you're using Maven, the [Maven Assembly Plugin](http://maven.apache.org/plugins/maven-assembly-plugin/) can do the packaging for you. Just add this to your pom.xml:
 

http://git-wip-us.apache.org/repos/asf/storm/blob/d57a895f/docs/Setting-up-a-Storm-cluster.md
----------------------------------------------------------------------
diff --git a/docs/Setting-up-a-Storm-cluster.md b/docs/Setting-up-a-Storm-cluster.md
index 56efc00..9cd3760 100644
--- a/docs/Setting-up-a-Storm-cluster.md
+++ b/docs/Setting-up-a-Storm-cluster.md
@@ -104,7 +104,7 @@ storm.health.check.timeout.ms: 5000
 
 ### Configure external libraries and environment variables (optional)
 
-If you need support from external libraries or custom plugins, you can place such jars into the extlib/ and extlib-daemon/ directories. Note that the extlib-daemon/ directory stores jars used only by daemons (Nimbus, Supervisor, DRPC, UI, Logviewer), e.g., HDFS and customized scheduling libraries. Accordingly, two environment variables STORM_EXT_CLASSPATH and STORM_EXT_CLASSPATH_DAEMON can be configured by users for including the external classpath and daemon-only external classpath. See [Classpath handling](Classpath-handling.html)] for more details on using external libraries.
+If you need support from external libraries or custom plugins, you can place such jars into the extlib/ and extlib-daemon/ directories. Note that the extlib-daemon/ directory stores jars used only by daemons (Nimbus, Supervisor, DRPC, UI, Logviewer), e.g., HDFS and customized scheduling libraries. Accordingly, two environment variables STORM_EXT_CLASSPATH and STORM_EXT_CLASSPATH_DAEMON can be configured by users for including the external classpath and daemon-only external classpath. See [Classpath handling](Classpath-handling.html) for more details on using external libraries.
 
 
 ### Launch daemons under supervision using "storm" script and a supervisor of your choice