Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
s920243400
Rocketmq
提交
e5a3f7d4
R
Rocketmq
项目概览
s920243400
/
Rocketmq
与 Fork 源项目一致
Fork自
Apache RocketMQ / Rocketmq
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
Rocketmq
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
未验证
提交
e5a3f7d4
编写于
6月 18, 2021
作者:
H
Heng Du
提交者:
GitHub
6月 18, 2021
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #2888 from areyouok/dev_speed_D
[ISSUE #2883] [Part D] Improve produce performance in M/S mode.
上级
a92996ac
5fe00416
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
7 addition
and
8 deletion
+7
-8
common/src/main/java/org/apache/rocketmq/common/BrokerConfig.java
...rc/main/java/org/apache/rocketmq/common/BrokerConfig.java
+4
-4
store/src/main/java/org/apache/rocketmq/store/config/MessageStoreConfig.java
.../org/apache/rocketmq/store/config/MessageStoreConfig.java
+3
-4
未找到文件。
common/src/main/java/org/apache/rocketmq/common/BrokerConfig.java
浏览文件 @
e5a3f7d4
...
...
@@ -57,10 +57,9 @@ public class BrokerConfig {
@ImportantField
private
boolean
traceTopicEnable
=
false
;
/**
* thread numbers for send message thread pool, since spin lock will be used by default since 4.0.x, the default
* value is 1.
* thread numbers for send message thread pool.
*/
private
int
sendMessageThreadPoolNums
=
1
;
//16 + Runtime.getRuntime().availableProcessors() * 4
;
private
int
sendMessageThreadPoolNums
=
Math
.
min
(
Runtime
.
getRuntime
().
availableProcessors
(),
4
)
;
private
int
pullMessageThreadPoolNums
=
16
+
Runtime
.
getRuntime
().
availableProcessors
()
*
2
;
private
int
processReplyMessageThreadPoolNums
=
16
+
Runtime
.
getRuntime
().
availableProcessors
()
*
2
;
private
int
queryMessageThreadPoolNums
=
8
+
Runtime
.
getRuntime
().
availableProcessors
();
...
...
@@ -73,7 +72,8 @@ public class BrokerConfig {
/**
* Thread numbers for EndTransactionProcessor
*/
private
int
endTransactionThreadPoolNums
=
8
+
Runtime
.
getRuntime
().
availableProcessors
()
*
2
;
private
int
endTransactionThreadPoolNums
=
Math
.
max
(
8
+
Runtime
.
getRuntime
().
availableProcessors
()
*
2
,
sendMessageThreadPoolNums
*
4
);
private
int
flushConsumerOffsetInterval
=
1000
*
5
;
...
...
store/src/main/java/org/apache/rocketmq/store/config/MessageStoreConfig.java
浏览文件 @
e5a3f7d4
...
...
@@ -54,13 +54,12 @@ public class MessageStoreConfig {
/**
* introduced since 4.0.x. Determine whether to use mutex reentrantLock when putting message.<br/>
* By default it is set to false indicating using spin lock when putting message.
*/
private
boolean
useReentrantLockWhenPutMessage
=
fals
e
;
private
boolean
useReentrantLockWhenPutMessage
=
tru
e
;
// Whether schedule flush
,default is real-time
// Whether schedule flush
@ImportantField
private
boolean
flushCommitLogTimed
=
fals
e
;
private
boolean
flushCommitLogTimed
=
tru
e
;
// ConsumeQueue flush interval
private
int
flushIntervalConsumeQueue
=
1000
;
// Resource reclaim interval
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录