Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Apache RocketMQ
Rocketmq
提交
678cab39
R
Rocketmq
项目概览
Apache RocketMQ
/
Rocketmq
上一次同步 大约 3 年
通知
267
Star
16139
Fork
68
代码
文件
提交
分支
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看板
提交
678cab39
编写于
1月 13, 2020
作者:
C
Chengyang He
提交者:
Hu Zongtang
1月 13, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[ISSUE #1656] Fix StatsItem bug (#1704)
Fix bug: The stats data could be inaccurate of first minute/hour/day
上级
ad7622c1
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
38 addition
and
0 deletion
+38
-0
common/src/main/java/org/apache/rocketmq/common/stats/StatsItem.java
...main/java/org/apache/rocketmq/common/stats/StatsItem.java
+9
-0
common/src/test/java/org/apache/rocketmq/common/stats/StatsItemSetTest.java
...va/org/apache/rocketmq/common/stats/StatsItemSetTest.java
+29
-0
未找到文件。
common/src/main/java/org/apache/rocketmq/common/stats/StatsItem.java
浏览文件 @
678cab39
...
...
@@ -152,6 +152,9 @@ public class StatsItem {
public
void
samplingInSeconds
()
{
synchronized
(
this
.
csListMinute
)
{
if
(
this
.
csListMinute
.
size
()
==
0
)
{
this
.
csListMinute
.
add
(
new
CallSnapshot
(
System
.
currentTimeMillis
()
-
10
*
1000
,
0
,
0
));
}
this
.
csListMinute
.
add
(
new
CallSnapshot
(
System
.
currentTimeMillis
(),
this
.
times
.
get
(),
this
.
value
.
get
()));
if
(
this
.
csListMinute
.
size
()
>
7
)
{
...
...
@@ -162,6 +165,9 @@ public class StatsItem {
public
void
samplingInMinutes
()
{
synchronized
(
this
.
csListHour
)
{
if
(
this
.
csListHour
.
size
()
==
0
)
{
this
.
csListHour
.
add
(
new
CallSnapshot
(
System
.
currentTimeMillis
()
-
10
*
60
*
1000
,
0
,
0
));
}
this
.
csListHour
.
add
(
new
CallSnapshot
(
System
.
currentTimeMillis
(),
this
.
times
.
get
(),
this
.
value
.
get
()));
if
(
this
.
csListHour
.
size
()
>
7
)
{
...
...
@@ -172,6 +178,9 @@ public class StatsItem {
public
void
samplingInHour
()
{
synchronized
(
this
.
csListDay
)
{
if
(
this
.
csListDay
.
size
()
==
0
)
{
this
.
csListDay
.
add
(
new
CallSnapshot
(
System
.
currentTimeMillis
()
-
1
*
60
*
60
*
1000
,
0
,
0
));
}
this
.
csListDay
.
add
(
new
CallSnapshot
(
System
.
currentTimeMillis
(),
this
.
times
.
get
(),
this
.
value
.
get
()));
if
(
this
.
csListDay
.
size
()
>
25
)
{
...
...
common/src/test/java/org/apache/rocketmq/common/stats/StatsItemSetTest.java
浏览文件 @
678cab39
...
...
@@ -44,6 +44,35 @@ public class StatsItemSetTest {
assertEquals
(
10
,
test_unit_moment
().
longValue
());
}
@Test
public
void
test_statsOfFirstStatisticsCycle
()
throws
InterruptedException
{
final
StatsItemSet
statsItemSet
=
new
StatsItemSet
(
"topicTest"
,
scheduler
,
null
);
executor
=
new
ThreadPoolExecutor
(
10
,
20
,
10
,
TimeUnit
.
SECONDS
,
new
ArrayBlockingQueue
<
Runnable
>(
100
),
new
ThreadFactoryImpl
(
"testMultiThread"
));
for
(
int
i
=
0
;
i
<
10
;
i
++)
{
executor
.
submit
(
new
Runnable
()
{
@Override
public
void
run
()
{
statsItemSet
.
addValue
(
"topicTest"
,
2
,
1
);
}
});
}
while
(
true
)
{
if
(
executor
.
getCompletedTaskCount
()
==
10
)
{
break
;
}
Thread
.
sleep
(
1000
);
}
// simulate schedule task execution
statsItemSet
.
getStatsItem
(
"topicTest"
).
samplingInSeconds
();
statsItemSet
.
getStatsItem
(
"topicTest"
).
samplingInMinutes
();
statsItemSet
.
getStatsItem
(
"topicTest"
).
samplingInHour
();
assertEquals
(
20L
,
statsItemSet
.
getStatsDataInMinute
(
"topicTest"
).
getSum
());
assertEquals
(
20L
,
statsItemSet
.
getStatsDataInHour
(
"topicTest"
).
getSum
());
assertEquals
(
20L
,
statsItemSet
.
getStatsDataInDay
(
"topicTest"
).
getSum
());
}
private
AtomicLong
test_unit
()
throws
InterruptedException
{
final
StatsItemSet
statsItemSet
=
new
StatsItemSet
(
"topicTest"
,
scheduler
,
null
);
executor
=
new
ThreadPoolExecutor
(
10
,
20
,
10
,
TimeUnit
.
SECONDS
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录