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/06/24 10:02:12 UTC

[1/2] storm git commit: STORM-1888: add description for shell command

Repository: storm
Updated Branches:
  refs/heads/1.x-branch 2a211a2a3 -> 8ae34a667


STORM-1888: add description for shell command


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

Branch: refs/heads/1.x-branch
Commit: 980e415c06700d9ec8d9bccee9f86030662d9a76
Parents: 2a211a2
Author: Xin Wang <be...@163.com>
Authored: Wed Jun 8 13:36:25 2016 +0800
Committer: Jungtaek Lim <ka...@gmail.com>
Committed: Fri Jun 24 19:01:38 2016 +0900

----------------------------------------------------------------------
 bin/storm.py | 5 +++++
 1 file changed, 5 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/980e415c/bin/storm.py
----------------------------------------------------------------------
diff --git a/bin/storm.py b/bin/storm.py
index 74e0c2d..2a8fa5e 100755
--- a/bin/storm.py
+++ b/bin/storm.py
@@ -485,6 +485,11 @@ def kill_workers(*args):
         extrajars=[USER_CONF_DIR, os.path.join(STORM_DIR, "bin")])
 
 def shell(resourcesdir, command, *args):
+    """Syntax: [storm shell resourcesdir command args]
+
+    Archives resources to jar and uploads jar to Nimbus, and executes following arguments on "local". Useful for non JVM languages.
+    eg: `storm shell resources/ python topology.py arg1 arg2`
+    """
     tmpjarpath = "stormshell" + str(random.randint(0, 10000000)) + ".jar"
     os.system("jar cf %s %s" % (tmpjarpath, resourcesdir))
     runnerargs = [tmpjarpath, command]


[2/2] storm git commit: add STORM-1888 to CHANGELOG

Posted by ka...@apache.org.
add STORM-1888 to CHANGELOG


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

Branch: refs/heads/1.x-branch
Commit: 8ae34a667e57afaec8f2daf1b0b3d41361318933
Parents: 980e415
Author: Jungtaek Lim <ka...@gmail.com>
Authored: Fri Jun 24 19:01:58 2016 +0900
Committer: Jungtaek Lim <ka...@gmail.com>
Committed: Fri Jun 24 19:01:58 2016 +0900

----------------------------------------------------------------------
 CHANGELOG.md | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/8ae34a66/CHANGELOG.md
----------------------------------------------------------------------
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3597936..e423e6e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,5 @@
 ## 1.1.0
+ * STORM-1888: add description for shell command
  * STORM-1902: add a simple & flexible FileNameFormat for storm-hdfs
  * STORM-1914: Storm Kafka Field Topic Selector
  * STORM-1907: PartitionedTridentSpoutExecutor has incompatible types that cause ClassCastException