Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Apache RocketMQ
Rocketmq
提交
d2776fca
R
Rocketmq
项目概览
Apache RocketMQ
/
Rocketmq
上一次同步 3 年多
通知
276
Star
16140
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看板
未验证
提交
d2776fca
编写于
10月 26, 2021
作者:
M
meateggmilk
提交者:
GitHub
10月 26, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[ISSUE #3370] group same Exceptions
Co-authored-by:
N
shizhili
<
shizhili@cmss.chinamobile.com
>
上级
78443c3a
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
4 addition
and
34 deletion
+4
-34
client/src/main/java/org/apache/rocketmq/client/impl/MQClientAPIImpl.java
...java/org/apache/rocketmq/client/impl/MQClientAPIImpl.java
+1
-8
client/src/main/java/org/apache/rocketmq/client/impl/factory/MQClientInstance.java
...apache/rocketmq/client/impl/factory/MQClientInstance.java
+1
-5
client/src/main/java/org/apache/rocketmq/client/impl/producer/DefaultMQProducerImpl.java
.../rocketmq/client/impl/producer/DefaultMQProducerImpl.java
+2
-21
未找到文件。
client/src/main/java/org/apache/rocketmq/client/impl/MQClientAPIImpl.java
浏览文件 @
d2776fca
...
...
@@ -611,14 +611,7 @@ public class MQClientAPIImpl {
request
.
setOpaque
(
RemotingCommand
.
createNewRequestId
());
sendMessageAsync
(
addr
,
retryBrokerName
,
msg
,
timeoutMillis
,
request
,
sendCallback
,
topicPublishInfo
,
instance
,
timesTotal
,
curTimes
,
context
,
producer
);
}
catch
(
InterruptedException
e1
)
{
onExceptionImpl
(
retryBrokerName
,
msg
,
timeoutMillis
,
request
,
sendCallback
,
topicPublishInfo
,
instance
,
timesTotal
,
curTimes
,
e1
,
context
,
false
,
producer
);
}
catch
(
RemotingConnectException
e1
)
{
producer
.
updateFaultItem
(
brokerName
,
3000
,
true
);
onExceptionImpl
(
retryBrokerName
,
msg
,
timeoutMillis
,
request
,
sendCallback
,
topicPublishInfo
,
instance
,
timesTotal
,
curTimes
,
e1
,
context
,
true
,
producer
);
}
catch
(
RemotingTooMuchRequestException
e1
)
{
}
catch
(
InterruptedException
|
RemotingTooMuchRequestException
e1
)
{
onExceptionImpl
(
retryBrokerName
,
msg
,
timeoutMillis
,
request
,
sendCallback
,
topicPublishInfo
,
instance
,
timesTotal
,
curTimes
,
e1
,
context
,
false
,
producer
);
}
catch
(
RemotingException
e1
)
{
...
...
client/src/main/java/org/apache/rocketmq/client/impl/factory/MQClientInstance.java
浏览文件 @
d2776fca
...
...
@@ -896,11 +896,7 @@ public class MQClientInstance {
try
{
this
.
mQClientAPIImpl
.
unregisterClient
(
addr
,
this
.
clientId
,
producerGroup
,
consumerGroup
,
clientConfig
.
getMqClientApiTimeout
());
log
.
info
(
"unregister client[Producer: {} Consumer: {}] from broker[{} {} {}] success"
,
producerGroup
,
consumerGroup
,
brokerName
,
entry1
.
getKey
(),
addr
);
}
catch
(
RemotingException
e
)
{
log
.
error
(
"unregister client exception from broker: "
+
addr
,
e
);
}
catch
(
InterruptedException
e
)
{
log
.
error
(
"unregister client exception from broker: "
+
addr
,
e
);
}
catch
(
MQBrokerException
e
)
{
}
catch
(
RemotingException
|
InterruptedException
|
MQBrokerException
e
)
{
log
.
error
(
"unregister client exception from broker: "
+
addr
,
e
);
}
}
...
...
client/src/main/java/org/apache/rocketmq/client/impl/producer/DefaultMQProducerImpl.java
浏览文件 @
d2776fca
...
...
@@ -622,14 +622,7 @@ public class DefaultMQProducerImpl implements MQProducerInner {
default
:
break
;
}
}
catch
(
RemotingException
e
)
{
endTimestamp
=
System
.
currentTimeMillis
();
this
.
updateFaultItem
(
mq
.
getBrokerName
(),
endTimestamp
-
beginTimestampPrev
,
true
);
log
.
warn
(
String
.
format
(
"sendKernelImpl exception, resend at once, InvokeID: %s, RT: %sms, Broker: %s"
,
invokeID
,
endTimestamp
-
beginTimestampPrev
,
mq
),
e
);
log
.
warn
(
msg
.
toString
());
exception
=
e
;
continue
;
}
catch
(
MQClientException
e
)
{
}
catch
(
RemotingException
|
MQClientException
e
)
{
endTimestamp
=
System
.
currentTimeMillis
();
this
.
updateFaultItem
(
mq
.
getBrokerName
(),
endTimestamp
-
beginTimestampPrev
,
true
);
log
.
warn
(
String
.
format
(
"sendKernelImpl exception, resend at once, InvokeID: %s, RT: %sms, Broker: %s"
,
invokeID
,
endTimestamp
-
beginTimestampPrev
,
mq
),
e
);
...
...
@@ -888,19 +881,7 @@ public class DefaultMQProducerImpl implements MQProducerInner {
}
return
sendResult
;
}
catch
(
RemotingException
e
)
{
if
(
this
.
hasSendMessageHook
())
{
context
.
setException
(
e
);
this
.
executeSendMessageHookAfter
(
context
);
}
throw
e
;
}
catch
(
MQBrokerException
e
)
{
if
(
this
.
hasSendMessageHook
())
{
context
.
setException
(
e
);
this
.
executeSendMessageHookAfter
(
context
);
}
throw
e
;
}
catch
(
InterruptedException
e
)
{
}
catch
(
RemotingException
|
MQBrokerException
|
InterruptedException
e
)
{
if
(
this
.
hasSendMessageHook
())
{
context
.
setException
(
e
);
this
.
executeSendMessageHookAfter
(
context
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录