You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by sr...@apache.org on 2014/12/17 17:31:00 UTC

[1/3] storm git commit: STORM-585 is fixed: Performance improvement in none grouping

Repository: storm
Updated Branches:
  refs/heads/master 38fbb4483 -> f76b3e712


STORM-585 is fixed: Performance improvement in none grouping


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

Branch: refs/heads/master
Commit: 773a40dbe8dd9daf7a8a312ca6ba136cc4f106a6
Parents: 3bbdc16
Author: Frantz Mazoyer <fr...@altran.com>
Authored: Tue Dec 9 11:07:53 2014 +0100
Committer: Frantz Mazoyer <fr...@altran.com>
Committed: Wed Dec 10 11:09:27 2014 +0100

----------------------------------------------------------------------
 storm-core/src/clj/backtype/storm/daemon/executor.clj | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/773a40db/storm-core/src/clj/backtype/storm/daemon/executor.clj
----------------------------------------------------------------------
diff --git a/storm-core/src/clj/backtype/storm/daemon/executor.clj b/storm-core/src/clj/backtype/storm/daemon/executor.clj
index 3380269..a6e606d 100644
--- a/storm-core/src/clj/backtype/storm/daemon/executor.clj
+++ b/storm-core/src/clj/backtype/storm/daemon/executor.clj
@@ -80,7 +80,7 @@
       :none
         (fn [task-id tuple]
           (let [i (mod (.nextInt random) num-tasks)]
-            (.get target-tasks i)
+            (get target-tasks i)
             ))
       :custom-object
         (let [grouping (thrift/instantiate-java-object (.get_custom_object thrift-grouping))]


[3/3] storm git commit: added STORM-585 to changelog.

Posted by sr...@apache.org.
added STORM-585 to changelog.


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

Branch: refs/heads/master
Commit: f76b3e71284eaadae35be31c7b88c49020ae7414
Parents: 341a8a7
Author: Sriharsha Chintalapani <ha...@hortonworks.com>
Authored: Wed Dec 17 08:22:50 2014 -0800
Committer: Sriharsha Chintalapani <ha...@hortonworks.com>
Committed: Wed Dec 17 08:22:50 2014 -0800

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


http://git-wip-us.apache.org/repos/asf/storm/blob/f76b3e71/CHANGELOG.md
----------------------------------------------------------------------
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c892055..ccdcc80 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,5 @@
 ## 0.10.0
+ * STORM-585: Performance issue in none grouping
  * STORM-525: Add time sorting function to the 2nd col of bolt exec table
  * STORM-548: Receive Thread Shutdown hook should connect to local hostname but not Localhost
  * STORM-567: Move Storm Documentation/Website from SVN to git


[2/3] storm git commit: Merge branch 'STORM-585' of https://github.com/fmazoyer/storm into STORM-585

Posted by sr...@apache.org.
Merge branch 'STORM-585' of https://github.com/fmazoyer/storm into STORM-585


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

Branch: refs/heads/master
Commit: 341a8a7902c3d796fd8ab3b5e97e6016499a2b5f
Parents: 38fbb44 773a40d
Author: Sriharsha Chintalapani <ha...@hortonworks.com>
Authored: Wed Dec 17 07:15:39 2014 -0800
Committer: Sriharsha Chintalapani <ha...@hortonworks.com>
Committed: Wed Dec 17 07:15:39 2014 -0800

----------------------------------------------------------------------
 storm-core/src/clj/backtype/storm/daemon/executor.clj | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------