mirror of https://github.com/apache/cassandra
rename GMFD to GOSSIP_STAGE. patch by Rob Coli; reviewed by jbellis for CASSANDRA-1135
git-svn-id: https://svn.apache.org/repos/asf/cassandra/trunk@948609 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1631beed8c
commit
8c0c3ebaae
1
NEWS.txt
1
NEWS.txt
|
|
@ -39,6 +39,7 @@ Configuraton
|
|||
JMX
|
||||
---
|
||||
- StreamingService moved from o.a.c.streaming to o.a.c.service
|
||||
- GMFD renamed to GOSSIP_STAGE
|
||||
|
||||
Thrift API
|
||||
----------
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ public class StageManager
|
|||
stages.put(RESPONSE_STAGE, multiThreadedStage(RESPONSE_STAGE, Math.max(2, Runtime.getRuntime().availableProcessors())));
|
||||
// the rest are all single-threaded
|
||||
stages.put(STREAM_STAGE, new JMXEnabledThreadPoolExecutor(STREAM_STAGE));
|
||||
stages.put(GOSSIP_STAGE, new JMXEnabledThreadPoolExecutor("GMFD"));
|
||||
stages.put(GOSSIP_STAGE, new JMXEnabledThreadPoolExecutor("GOSSIP_STAGE"));
|
||||
stages.put(AE_SERVICE_STAGE, new JMXEnabledThreadPoolExecutor(AE_SERVICE_STAGE));
|
||||
stages.put(LOADBALANCE_STAGE, new JMXEnabledThreadPoolExecutor(LOADBALANCE_STAGE));
|
||||
stages.put(MIGRATION_STAGE, new JMXEnabledThreadPoolExecutor(MIGRATION_STAGE));
|
||||
|
|
|
|||
Loading…
Reference in New Issue