Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
小五666\n哈哈
Rocketmq
提交
6ab6afd0
R
Rocketmq
项目概览
小五666\n哈哈
/
Rocketmq
与 Fork 源项目一致
Fork自
Apache RocketMQ / Rocketmq
通知
1
Star
0
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
6ab6afd0
编写于
5月 25, 2021
作者:
斜
斜阳
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[ISSUE #2708] Client may submit wrong offset when network instability
上级
952772fa
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
77 addition
and
11 deletion
+77
-11
client/src/main/java/org/apache/rocketmq/client/impl/consumer/DefaultLitePullConsumerImpl.java
...tmq/client/impl/consumer/DefaultLitePullConsumerImpl.java
+11
-4
client/src/main/java/org/apache/rocketmq/client/impl/consumer/DefaultMQPushConsumerImpl.java
...ketmq/client/impl/consumer/DefaultMQPushConsumerImpl.java
+6
-1
client/src/main/java/org/apache/rocketmq/client/impl/consumer/RebalanceImpl.java
...g/apache/rocketmq/client/impl/consumer/RebalanceImpl.java
+19
-1
client/src/main/java/org/apache/rocketmq/client/impl/consumer/RebalanceLitePullImpl.java
.../rocketmq/client/impl/consumer/RebalanceLitePullImpl.java
+16
-2
client/src/main/java/org/apache/rocketmq/client/impl/consumer/RebalancePullImpl.java
...ache/rocketmq/client/impl/consumer/RebalancePullImpl.java
+7
-0
client/src/main/java/org/apache/rocketmq/client/impl/consumer/RebalancePushImpl.java
...ache/rocketmq/client/impl/consumer/RebalancePushImpl.java
+18
-3
未找到文件。
client/src/main/java/org/apache/rocketmq/client/impl/consumer/DefaultLitePullConsumerImpl.java
浏览文件 @
6ab6afd0
...
@@ -626,9 +626,9 @@ public class DefaultLitePullConsumerImpl implements MQConsumerInner {
...
@@ -626,9 +626,9 @@ public class DefaultLitePullConsumerImpl implements MQConsumerInner {
}
}
}
}
private
long
fetchConsumeOffset
(
MessageQueue
messageQueue
)
{
private
long
fetchConsumeOffset
(
MessageQueue
messageQueue
)
throws
MQClientException
{
checkServiceState
();
checkServiceState
();
long
offset
=
this
.
rebalanceImpl
.
computePullFromWhere
(
messageQueue
);
long
offset
=
this
.
rebalanceImpl
.
computePullFromWhere
WithException
(
messageQueue
);
return
offset
;
return
offset
;
}
}
...
@@ -652,7 +652,7 @@ public class DefaultLitePullConsumerImpl implements MQConsumerInner {
...
@@ -652,7 +652,7 @@ public class DefaultLitePullConsumerImpl implements MQConsumerInner {
}
}
}
}
private
long
nextPullOffset
(
MessageQueue
messageQueue
)
{
private
long
nextPullOffset
(
MessageQueue
messageQueue
)
throws
MQClientException
{
long
offset
=
-
1
;
long
offset
=
-
1
;
long
seekOffset
=
assignedMessageQueue
.
getSeekOffset
(
messageQueue
);
long
seekOffset
=
assignedMessageQueue
.
getSeekOffset
(
messageQueue
);
if
(
seekOffset
!=
-
1
)
{
if
(
seekOffset
!=
-
1
)
{
...
@@ -739,7 +739,14 @@ public class DefaultLitePullConsumerImpl implements MQConsumerInner {
...
@@ -739,7 +739,14 @@ public class DefaultLitePullConsumerImpl implements MQConsumerInner {
return
;
return
;
}
}
long
offset
=
nextPullOffset
(
messageQueue
);
long
offset
=
0L
;
try
{
offset
=
nextPullOffset
(
messageQueue
);
}
catch
(
MQClientException
e
)
{
log
.
error
(
"get next pull offset failed, maybe timeout exception"
);
return
;
}
if
(
this
.
isCancelled
()
||
processQueue
.
isDropped
())
{
if
(
this
.
isCancelled
()
||
processQueue
.
isDropped
())
{
return
;
return
;
}
}
...
...
client/src/main/java/org/apache/rocketmq/client/impl/consumer/DefaultMQPushConsumerImpl.java
浏览文件 @
6ab6afd0
...
@@ -270,7 +270,12 @@ public class DefaultMQPushConsumerImpl implements MQConsumerInner {
...
@@ -270,7 +270,12 @@ public class DefaultMQPushConsumerImpl implements MQConsumerInner {
}
else
{
}
else
{
if
(
processQueue
.
isLocked
())
{
if
(
processQueue
.
isLocked
())
{
if
(!
pullRequest
.
isLockedFirst
())
{
if
(!
pullRequest
.
isLockedFirst
())
{
final
long
offset
=
this
.
rebalanceImpl
.
computePullFromWhere
(
pullRequest
.
getMessageQueue
());
long
offset
=
-
1L
;
try
{
offset
=
this
.
rebalanceImpl
.
computePullFromWhereWithException
(
pullRequest
.
getMessageQueue
());
}
catch
(
MQClientException
e
)
{
log
.
error
(
"compute consume offset failed, maybe timeout exception"
);
}
boolean
brokerBusy
=
offset
<
pullRequest
.
getNextOffset
();
boolean
brokerBusy
=
offset
<
pullRequest
.
getNextOffset
();
log
.
info
(
"the first time to pull message, so fix offset from broker. pullRequest: {} NewOffset: {} brokerBusy: {}"
,
log
.
info
(
"the first time to pull message, so fix offset from broker. pullRequest: {} NewOffset: {} brokerBusy: {}"
,
pullRequest
,
offset
,
brokerBusy
);
pullRequest
,
offset
,
brokerBusy
);
...
...
client/src/main/java/org/apache/rocketmq/client/impl/consumer/RebalanceImpl.java
浏览文件 @
6ab6afd0
...
@@ -28,6 +28,7 @@ import java.util.Set;
...
@@ -28,6 +28,7 @@ import java.util.Set;
import
java.util.concurrent.ConcurrentHashMap
;
import
java.util.concurrent.ConcurrentHashMap
;
import
java.util.concurrent.ConcurrentMap
;
import
java.util.concurrent.ConcurrentMap
;
import
org.apache.rocketmq.client.consumer.AllocateMessageQueueStrategy
;
import
org.apache.rocketmq.client.consumer.AllocateMessageQueueStrategy
;
import
org.apache.rocketmq.client.exception.MQClientException
;
import
org.apache.rocketmq.client.impl.FindBrokerResult
;
import
org.apache.rocketmq.client.impl.FindBrokerResult
;
import
org.apache.rocketmq.client.impl.factory.MQClientInstance
;
import
org.apache.rocketmq.client.impl.factory.MQClientInstance
;
import
org.apache.rocketmq.client.log.ClientLogger
;
import
org.apache.rocketmq.client.log.ClientLogger
;
...
@@ -373,7 +374,15 @@ public abstract class RebalanceImpl {
...
@@ -373,7 +374,15 @@ public abstract class RebalanceImpl {
this
.
removeDirtyOffset
(
mq
);
this
.
removeDirtyOffset
(
mq
);
ProcessQueue
pq
=
new
ProcessQueue
();
ProcessQueue
pq
=
new
ProcessQueue
();
long
nextOffset
=
this
.
computePullFromWhere
(
mq
);
long
nextOffset
=
0L
;
try
{
nextOffset
=
this
.
computePullFromWhereWithException
(
mq
);
}
catch
(
MQClientException
e
)
{
log
.
info
(
"doRebalance, {}, compute offset failed, {}"
,
consumerGroup
,
mq
);
continue
;
}
if
(
nextOffset
>=
0
)
{
if
(
nextOffset
>=
0
)
{
ProcessQueue
pre
=
this
.
processQueueTable
.
putIfAbsent
(
mq
,
pq
);
ProcessQueue
pre
=
this
.
processQueueTable
.
putIfAbsent
(
mq
,
pq
);
if
(
pre
!=
null
)
{
if
(
pre
!=
null
)
{
...
@@ -408,8 +417,17 @@ public abstract class RebalanceImpl {
...
@@ -408,8 +417,17 @@ public abstract class RebalanceImpl {
public
abstract
void
removeDirtyOffset
(
final
MessageQueue
mq
);
public
abstract
void
removeDirtyOffset
(
final
MessageQueue
mq
);
/**
* When the network is unstable, using this interface may return wrong offset.
* It is recommended to use computePullFromWhereWithException instead.
* @param mq
* @return offset
*/
@Deprecated
public
abstract
long
computePullFromWhere
(
final
MessageQueue
mq
);
public
abstract
long
computePullFromWhere
(
final
MessageQueue
mq
);
public
abstract
long
computePullFromWhereWithException
(
final
MessageQueue
mq
)
throws
MQClientException
;
public
abstract
void
dispatchPullRequest
(
final
List
<
PullRequest
>
pullRequestList
);
public
abstract
void
dispatchPullRequest
(
final
List
<
PullRequest
>
pullRequestList
);
public
void
removeProcessQueue
(
final
MessageQueue
mq
)
{
public
void
removeProcessQueue
(
final
MessageQueue
mq
)
{
...
...
client/src/main/java/org/apache/rocketmq/client/impl/consumer/RebalanceLitePullImpl.java
浏览文件 @
6ab6afd0
...
@@ -74,8 +74,20 @@ public class RebalanceLitePullImpl extends RebalanceImpl {
...
@@ -74,8 +74,20 @@ public class RebalanceLitePullImpl extends RebalanceImpl {
this
.
litePullConsumerImpl
.
getOffsetStore
().
removeOffset
(
mq
);
this
.
litePullConsumerImpl
.
getOffsetStore
().
removeOffset
(
mq
);
}
}
@Deprecated
@Override
@Override
public
long
computePullFromWhere
(
MessageQueue
mq
)
{
public
long
computePullFromWhere
(
MessageQueue
mq
)
{
long
result
=
-
1L
;
try
{
result
=
computePullFromWhereWithException
(
mq
);
}
catch
(
MQClientException
e
)
{
log
.
warn
(
"Compute consume offset exception, mq={}"
,
mq
);
}
return
result
;
}
@Override
public
long
computePullFromWhereWithException
(
MessageQueue
mq
)
throws
MQClientException
{
ConsumeFromWhere
consumeFromWhere
=
litePullConsumerImpl
.
getDefaultLitePullConsumer
().
getConsumeFromWhere
();
ConsumeFromWhere
consumeFromWhere
=
litePullConsumerImpl
.
getDefaultLitePullConsumer
().
getConsumeFromWhere
();
long
result
=
-
1
;
long
result
=
-
1
;
switch
(
consumeFromWhere
)
{
switch
(
consumeFromWhere
)
{
...
@@ -118,7 +130,8 @@ public class RebalanceLitePullImpl extends RebalanceImpl {
...
@@ -118,7 +130,8 @@ public class RebalanceLitePullImpl extends RebalanceImpl {
try
{
try
{
result
=
this
.
mQClientFactory
.
getMQAdminImpl
().
maxOffset
(
mq
);
result
=
this
.
mQClientFactory
.
getMQAdminImpl
().
maxOffset
(
mq
);
}
catch
(
MQClientException
e
)
{
}
catch
(
MQClientException
e
)
{
result
=
-
1
;
log
.
warn
(
"Compute consume offset from last offset exception, mq={}, exception={}"
,
mq
,
e
);
throw
e
;
}
}
}
else
{
}
else
{
try
{
try
{
...
@@ -126,7 +139,8 @@ public class RebalanceLitePullImpl extends RebalanceImpl {
...
@@ -126,7 +139,8 @@ public class RebalanceLitePullImpl extends RebalanceImpl {
UtilAll
.
YYYYMMDDHHMMSS
).
getTime
();
UtilAll
.
YYYYMMDDHHMMSS
).
getTime
();
result
=
this
.
mQClientFactory
.
getMQAdminImpl
().
searchOffset
(
mq
,
timestamp
);
result
=
this
.
mQClientFactory
.
getMQAdminImpl
().
searchOffset
(
mq
,
timestamp
);
}
catch
(
MQClientException
e
)
{
}
catch
(
MQClientException
e
)
{
result
=
-
1
;
log
.
warn
(
"Compute consume offset from last offset exception, mq={}, exception={}"
,
mq
,
e
);
throw
e
;
}
}
}
}
}
else
{
}
else
{
...
...
client/src/main/java/org/apache/rocketmq/client/impl/consumer/RebalancePullImpl.java
浏览文件 @
6ab6afd0
...
@@ -20,6 +20,7 @@ import java.util.List;
...
@@ -20,6 +20,7 @@ import java.util.List;
import
java.util.Set
;
import
java.util.Set
;
import
org.apache.rocketmq.client.consumer.AllocateMessageQueueStrategy
;
import
org.apache.rocketmq.client.consumer.AllocateMessageQueueStrategy
;
import
org.apache.rocketmq.client.consumer.MessageQueueListener
;
import
org.apache.rocketmq.client.consumer.MessageQueueListener
;
import
org.apache.rocketmq.client.exception.MQClientException
;
import
org.apache.rocketmq.client.impl.factory.MQClientInstance
;
import
org.apache.rocketmq.client.impl.factory.MQClientInstance
;
import
org.apache.rocketmq.common.message.MessageQueue
;
import
org.apache.rocketmq.common.message.MessageQueue
;
import
org.apache.rocketmq.common.protocol.heartbeat.ConsumeType
;
import
org.apache.rocketmq.common.protocol.heartbeat.ConsumeType
;
...
@@ -68,11 +69,17 @@ public class RebalancePullImpl extends RebalanceImpl {
...
@@ -68,11 +69,17 @@ public class RebalancePullImpl extends RebalanceImpl {
this
.
defaultMQPullConsumerImpl
.
getOffsetStore
().
removeOffset
(
mq
);
this
.
defaultMQPullConsumerImpl
.
getOffsetStore
().
removeOffset
(
mq
);
}
}
@Deprecated
@Override
@Override
public
long
computePullFromWhere
(
MessageQueue
mq
)
{
public
long
computePullFromWhere
(
MessageQueue
mq
)
{
return
0
;
return
0
;
}
}
@Override
public
long
computePullFromWhereWithException
(
MessageQueue
mq
)
throws
MQClientException
{
return
0
;
}
@Override
@Override
public
void
dispatchPullRequest
(
List
<
PullRequest
>
pullRequestList
)
{
public
void
dispatchPullRequest
(
List
<
PullRequest
>
pullRequestList
)
{
}
}
...
...
client/src/main/java/org/apache/rocketmq/client/impl/consumer/RebalancePushImpl.java
浏览文件 @
6ab6afd0
...
@@ -137,8 +137,20 @@ public class RebalancePushImpl extends RebalanceImpl {
...
@@ -137,8 +137,20 @@ public class RebalancePushImpl extends RebalanceImpl {
this
.
defaultMQPushConsumerImpl
.
getOffsetStore
().
removeOffset
(
mq
);
this
.
defaultMQPushConsumerImpl
.
getOffsetStore
().
removeOffset
(
mq
);
}
}
@Deprecated
@Override
@Override
public
long
computePullFromWhere
(
MessageQueue
mq
)
{
public
long
computePullFromWhere
(
MessageQueue
mq
)
{
long
result
=
-
1L
;
try
{
result
=
computePullFromWhereWithException
(
mq
);
}
catch
(
MQClientException
e
)
{
log
.
warn
(
"Compute consume offset exception, mq={}"
,
mq
);
}
return
result
;
}
@Override
public
long
computePullFromWhereWithException
(
MessageQueue
mq
)
throws
MQClientException
{
long
result
=
-
1
;
long
result
=
-
1
;
final
ConsumeFromWhere
consumeFromWhere
=
this
.
defaultMQPushConsumerImpl
.
getDefaultMQPushConsumer
().
getConsumeFromWhere
();
final
ConsumeFromWhere
consumeFromWhere
=
this
.
defaultMQPushConsumerImpl
.
getDefaultMQPushConsumer
().
getConsumeFromWhere
();
final
OffsetStore
offsetStore
=
this
.
defaultMQPushConsumerImpl
.
getOffsetStore
();
final
OffsetStore
offsetStore
=
this
.
defaultMQPushConsumerImpl
.
getOffsetStore
();
...
@@ -159,7 +171,8 @@ public class RebalancePushImpl extends RebalanceImpl {
...
@@ -159,7 +171,8 @@ public class RebalancePushImpl extends RebalanceImpl {
try
{
try
{
result
=
this
.
mQClientFactory
.
getMQAdminImpl
().
maxOffset
(
mq
);
result
=
this
.
mQClientFactory
.
getMQAdminImpl
().
maxOffset
(
mq
);
}
catch
(
MQClientException
e
)
{
}
catch
(
MQClientException
e
)
{
result
=
-
1
;
log
.
warn
(
"Compute consume offset from last offset exception, mq={}, exception={}"
,
mq
,
e
);
throw
e
;
}
}
}
}
}
else
{
}
else
{
...
@@ -187,7 +200,8 @@ public class RebalancePushImpl extends RebalanceImpl {
...
@@ -187,7 +200,8 @@ public class RebalancePushImpl extends RebalanceImpl {
try
{
try
{
result
=
this
.
mQClientFactory
.
getMQAdminImpl
().
maxOffset
(
mq
);
result
=
this
.
mQClientFactory
.
getMQAdminImpl
().
maxOffset
(
mq
);
}
catch
(
MQClientException
e
)
{
}
catch
(
MQClientException
e
)
{
result
=
-
1
;
log
.
warn
(
"Compute consume offset from last offset exception, mq={}, exception={}"
,
mq
,
e
);
throw
e
;
}
}
}
else
{
}
else
{
try
{
try
{
...
@@ -195,7 +209,8 @@ public class RebalancePushImpl extends RebalanceImpl {
...
@@ -195,7 +209,8 @@ public class RebalancePushImpl extends RebalanceImpl {
UtilAll
.
YYYYMMDDHHMMSS
).
getTime
();
UtilAll
.
YYYYMMDDHHMMSS
).
getTime
();
result
=
this
.
mQClientFactory
.
getMQAdminImpl
().
searchOffset
(
mq
,
timestamp
);
result
=
this
.
mQClientFactory
.
getMQAdminImpl
().
searchOffset
(
mq
,
timestamp
);
}
catch
(
MQClientException
e
)
{
}
catch
(
MQClientException
e
)
{
result
=
-
1
;
log
.
warn
(
"Compute consume offset from last offset exception, mq={}, exception={}"
,
mq
,
e
);
throw
e
;
}
}
}
}
}
else
{
}
else
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录