You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by pt...@apache.org on 2014/10/07 22:37:29 UTC

[1/4] git commit: Do not count bolt acks & fails in total stats

Repository: storm
Updated Branches:
  refs/heads/master fc641a2da -> d50b772fb


Do not count bolt acks & fails in total stats


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

Branch: refs/heads/master
Commit: 985fb1f531de086a9b1d75df6fb05945a1517230
Parents: cfcedcf
Author: Derek Dagit <de...@yahoo-inc.com>
Authored: Wed Sep 24 00:50:30 2014 -0500
Committer: Derek Dagit <de...@yahoo-inc.com>
Committed: Wed Sep 24 00:50:30 2014 -0500

----------------------------------------------------------------------
 storm-core/src/clj/backtype/storm/ui/core.clj | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/985fb1f5/storm-core/src/clj/backtype/storm/ui/core.clj
----------------------------------------------------------------------
diff --git a/storm-core/src/clj/backtype/storm/ui/core.clj b/storm-core/src/clj/backtype/storm/ui/core.clj
index 9937607..1f82411 100644
--- a/storm-core/src/clj/backtype/storm/ui/core.clj
+++ b/storm-core/src/clj/backtype/storm/ui/core.clj
@@ -341,10 +341,11 @@
         (merge-with + s1 s2))
       (select-keys
         agg-bolt-stats
-        [:emitted :transferred :acked :failed :complete-latencies])
-      (select-keys
-        agg-spout-stats
-        [:emitted :transferred :acked :failed :complete-latencies]))))
+        ;; Include only keys that will be used.  We want to count acked and
+        ;; failed only for the "tuple trees," so we do not include those keys
+        ;; from the bolt executors.
+        [:emitted :transferred])
+      agg-spout-stats)))
 
 (defn stats-times
   [stats-map]


[2/4] git commit: update changelog for STORM-490

Posted by pt...@apache.org.
update changelog for STORM-490


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

Branch: refs/heads/master
Commit: 588fd378d33bbd4de4a77e602a74706e61e489e9
Parents: fc641a2
Author: P. Taylor Goetz <pt...@gmail.com>
Authored: Tue Oct 7 16:32:58 2014 -0400
Committer: P. Taylor Goetz <pt...@gmail.com>
Committed: Tue Oct 7 16:32:58 2014 -0400

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


http://git-wip-us.apache.org/repos/asf/storm/blob/588fd378/CHANGELOG.md
----------------------------------------------------------------------
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9830e89..d019262 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,5 @@
 ## 0.9.3
+ * STORM-490: fix build under Windows
  * STORM-439: Replace purl.js qith jquery URL plugin
  * STORM-499: Document and clean up shaded dependncy resolution with maven
  * STORM-210: Add storm-hbase module


[4/4] git commit: update changelog for STORM-506

Posted by pt...@apache.org.
update changelog for STORM-506


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

Branch: refs/heads/master
Commit: d50b772fb3240c6908699c65c32895791f8c2630
Parents: 9e63e85
Author: P. Taylor Goetz <pt...@gmail.com>
Authored: Tue Oct 7 16:34:24 2014 -0400
Committer: P. Taylor Goetz <pt...@gmail.com>
Committed: Tue Oct 7 16:34:24 2014 -0400

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


http://git-wip-us.apache.org/repos/asf/storm/blob/d50b772f/CHANGELOG.md
----------------------------------------------------------------------
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d019262..482e057 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,5 @@
 ## 0.9.3
+ * STORM-506: Do not count bolt acks & fails in total stats
  * STORM-490: fix build under Windows
  * STORM-439: Replace purl.js qith jquery URL plugin
  * STORM-499: Document and clean up shaded dependncy resolution with maven


[3/4] git commit: Merge branch 'STORM-506' of github.com:d2r/storm

Posted by pt...@apache.org.
Merge branch 'STORM-506' of github.com:d2r/storm


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

Branch: refs/heads/master
Commit: 9e63e85eaa538e79882bbe1ae749a533d368ffd3
Parents: 588fd37 985fb1f
Author: P. Taylor Goetz <pt...@gmail.com>
Authored: Tue Oct 7 16:33:05 2014 -0400
Committer: P. Taylor Goetz <pt...@gmail.com>
Committed: Tue Oct 7 16:33:05 2014 -0400

----------------------------------------------------------------------
 storm-core/src/clj/backtype/storm/ui/core.clj | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/9e63e85e/storm-core/src/clj/backtype/storm/ui/core.clj
----------------------------------------------------------------------