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 2014/06/09 15:48:30 UTC

[25/32] git commit: STORM-297: rename "worker.receiver.thread.count" to "topology.worker.receiver.thread.count"

STORM-297: rename "worker.receiver.thread.count" to "topology.worker.receiver.thread.count"


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

Branch: refs/heads/master
Commit: f6915d45a61593f95bf779558a32f807d583932c
Parents: 0bca173
Author: Sean Zhong <cl...@gmail.com>
Authored: Wed Jun 4 18:14:55 2014 +0800
Committer: Sean Zhong <cl...@gmail.com>
Committed: Wed Jun 4 18:14:55 2014 +0800

----------------------------------------------------------------------
 conf/defaults.yaml                            | 2 +-
 storm-core/src/jvm/backtype/storm/Config.java | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-storm/blob/f6915d45/conf/defaults.yaml
----------------------------------------------------------------------
diff --git a/conf/defaults.yaml b/conf/defaults.yaml
index a5c2c39..b33167d 100644
--- a/conf/defaults.yaml
+++ b/conf/defaults.yaml
@@ -95,7 +95,7 @@ worker.childopts: "-Xmx768m"
 worker.heartbeat.frequency.secs: 1
 
 # control how many worker receiver threads we need per worker 
-worker.receiver.thread.count: 1
+topology.worker.receiver.thread.count: 1
 
 task.heartbeat.frequency.secs: 3
 task.refresh.poll.secs: 10

http://git-wip-us.apache.org/repos/asf/incubator-storm/blob/f6915d45/storm-core/src/jvm/backtype/storm/Config.java
----------------------------------------------------------------------
diff --git a/storm-core/src/jvm/backtype/storm/Config.java b/storm-core/src/jvm/backtype/storm/Config.java
index d069293..f808e55 100644
--- a/storm-core/src/jvm/backtype/storm/Config.java
+++ b/storm-core/src/jvm/backtype/storm/Config.java
@@ -477,7 +477,7 @@ public class Config extends HashMap<String, Object> {
     /**
      * control how many worker receiver threads we need per worker
      */
-    public static final String WORKER_RECEIVER_THREAD_COUNT = "worker.receiver.thread.count";
+    public static final String WORKER_RECEIVER_THREAD_COUNT = "topology.worker.receiver.thread.count";
     public static final Object WORKER_RECEIVER_THREAD_COUNT_SCHEMA = Number.class;
     
     /**