Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
小五666\n哈哈
Rocketmq
提交
f6696b12
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,发现更多精彩内容 >>
提交
f6696b12
编写于
8月 10, 2018
作者:
D
duhengforever
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Compatible with the original transactional message API
上级
9db2acdb
变更
10
隐藏空白更改
内联
并排
Showing
10 changed file
with
148 addition
and
27 deletion
+148
-27
client/src/main/java/org/apache/rocketmq/client/impl/producer/DefaultMQProducerImpl.java
.../rocketmq/client/impl/producer/DefaultMQProducerImpl.java
+34
-6
client/src/main/java/org/apache/rocketmq/client/impl/producer/MQProducerInner.java
...apache/rocketmq/client/impl/producer/MQProducerInner.java
+2
-0
client/src/main/java/org/apache/rocketmq/client/producer/DefaultMQProducer.java
...rg/apache/rocketmq/client/producer/DefaultMQProducer.java
+13
-0
client/src/main/java/org/apache/rocketmq/client/producer/LocalTransactionExecuter.java
...he/rocketmq/client/producer/LocalTransactionExecuter.java
+4
-0
client/src/main/java/org/apache/rocketmq/client/producer/MQProducer.java
.../java/org/apache/rocketmq/client/producer/MQProducer.java
+3
-0
client/src/main/java/org/apache/rocketmq/client/producer/TransactionCheckListener.java
...he/rocketmq/client/producer/TransactionCheckListener.java
+4
-1
client/src/main/java/org/apache/rocketmq/client/producer/TransactionListener.java
.../apache/rocketmq/client/producer/TransactionListener.java
+21
-8
client/src/main/java/org/apache/rocketmq/client/producer/TransactionMQProducer.java
...pache/rocketmq/client/producer/TransactionMQProducer.java
+44
-0
example/src/main/java/org/apache/rocketmq/example/transaction/TransactionListenerImpl.java
...rocketmq/example/transaction/TransactionListenerImpl.java
+18
-6
example/src/main/java/org/apache/rocketmq/example/transaction/TransactionProducer.java
...che/rocketmq/example/transaction/TransactionProducer.java
+5
-6
未找到文件。
client/src/main/java/org/apache/rocketmq/client/impl/producer/DefaultMQProducerImpl.java
浏览文件 @
f6696b12
...
...
@@ -54,6 +54,7 @@ import org.apache.rocketmq.client.producer.SendCallback;
import
org.apache.rocketmq.client.producer.SendResult
;
import
org.apache.rocketmq.client.producer.SendStatus
;
import
org.apache.rocketmq.client.producer.TransactionCheckListener
;
import
org.apache.rocketmq.client.producer.TransactionListener
;
import
org.apache.rocketmq.client.producer.TransactionMQProducer
;
import
org.apache.rocketmq.client.producer.TransactionSendResult
;
import
org.apache.rocketmq.common.MixAll
;
...
...
@@ -120,7 +121,7 @@ public class DefaultMQProducerImpl implements MQProducerInner {
if
(
producer
.
getExecutorService
()
!=
null
)
{
this
.
checkExecutor
=
producer
.
getExecutorService
();
}
else
{
this
.
checkRequestQueue
=
new
LinkedBlockingQueue
<
Runnable
>(
2000
);
this
.
checkRequestQueue
=
new
LinkedBlockingQueue
<
Runnable
>(
producer
.
getCheckRequestHoldMax
()
);
this
.
checkExecutor
=
new
ThreadPoolExecutor
(
producer
.
getCheckThreadPoolMinSize
(),
producer
.
getCheckThreadPoolMaxSize
(),
...
...
@@ -244,7 +245,12 @@ public class DefaultMQProducerImpl implements MQProducerInner {
return
null
==
prev
||
!
prev
.
ok
();
}
/**
* This method will be removed in the version 5.0.0 and <code>getCheckListener</code> is recommended.
* @return
*/
@Override
@Deprecated
public
TransactionCheckListener
checkListener
()
{
if
(
this
.
defaultMQProducer
instanceof
TransactionMQProducer
)
{
TransactionMQProducer
producer
=
(
TransactionMQProducer
)
defaultMQProducer
;
...
...
@@ -255,7 +261,15 @@ public class DefaultMQProducerImpl implements MQProducerInner {
}
@Override
public
TransactionListener
getCheckListener
()
{
if
(
this
.
defaultMQProducer
instanceof
TransactionMQProducer
)
{
TransactionMQProducer
producer
=
(
TransactionMQProducer
)
defaultMQProducer
;
return
producer
.
getTransactionListener
();
}
return
null
;
}
@Override
public
void
checkTransactionState
(
final
String
addr
,
final
MessageExt
msg
,
final
CheckTransactionStateRequestHeader
header
)
{
Runnable
request
=
new
Runnable
()
{
...
...
@@ -267,11 +281,19 @@ public class DefaultMQProducerImpl implements MQProducerInner {
@Override
public
void
run
()
{
TransactionCheckListener
transactionCheckListener
=
DefaultMQProducerImpl
.
this
.
checkListener
();
if
(
transactionCheckListener
!=
null
)
{
TransactionListener
transactionListener
=
getCheckListener
();
if
(
transactionCheckListener
!=
null
||
transactionListener
!=
null
)
{
LocalTransactionState
localTransactionState
=
LocalTransactionState
.
UNKNOW
;
Throwable
exception
=
null
;
try
{
localTransactionState
=
transactionCheckListener
.
checkLocalTransactionState
(
message
);
if
(
transactionCheckListener
!=
null
)
{
localTransactionState
=
transactionCheckListener
.
checkLocalTransactionState
(
message
);
}
else
if
(
transactionListener
!=
null
)
{
log
.
info
(
"Used new check API in transaction message"
);
localTransactionState
=
transactionListener
.
checkLocalTransaction
(
message
);
}
else
{
log
.
warn
(
"CheckTransactionState, pick transactionListener by group[{}] failed"
,
group
);
}
}
catch
(
Throwable
e
)
{
log
.
error
(
"Broker call checkTransactionState, but checkLocalTransactionState exception"
,
e
);
exception
=
e
;
...
...
@@ -282,7 +304,7 @@ public class DefaultMQProducerImpl implements MQProducerInner {
group
,
exception
);
}
else
{
log
.
warn
(
"
c
heckTransactionState, pick transactionCheckListener by group[{}] failed"
,
group
);
log
.
warn
(
"
C
heckTransactionState, pick transactionCheckListener by group[{}] failed"
,
group
);
}
}
...
...
@@ -1100,7 +1122,8 @@ public class DefaultMQProducerImpl implements MQProducerInner {
public
TransactionSendResult
sendMessageInTransaction
(
final
Message
msg
,
final
LocalTransactionExecuter
localTransactionExecuter
,
final
Object
arg
)
throws
MQClientException
{
if
(
null
==
localTransactionExecuter
)
{
TransactionListener
transactionListener
=
getCheckListener
();
if
(
null
==
localTransactionExecuter
&&
null
==
transactionListener
)
{
throw
new
MQClientException
(
"tranExecutor is null"
,
null
);
}
Validators
.
checkMessage
(
msg
,
this
.
defaultMQProducer
);
...
...
@@ -1126,7 +1149,12 @@ public class DefaultMQProducerImpl implements MQProducerInner {
if
(
null
!=
transactionId
&&
!
""
.
equals
(
transactionId
))
{
msg
.
setTransactionId
(
transactionId
);
}
localTransactionState
=
localTransactionExecuter
.
executeLocalTransactionBranch
(
msg
,
arg
);
if
(
null
!=
localTransactionExecuter
)
{
localTransactionState
=
localTransactionExecuter
.
executeLocalTransactionBranch
(
msg
,
arg
);
}
else
if
(
transactionListener
!=
null
)
{
log
.
info
(
"Used new transaction API"
);
transactionListener
.
executeLocalTransaction
(
msg
,
arg
);
}
if
(
null
==
localTransactionState
)
{
localTransactionState
=
LocalTransactionState
.
UNKNOW
;
}
...
...
client/src/main/java/org/apache/rocketmq/client/impl/producer/MQProducerInner.java
浏览文件 @
f6696b12
...
...
@@ -18,6 +18,7 @@ package org.apache.rocketmq.client.impl.producer;
import
java.util.Set
;
import
org.apache.rocketmq.client.producer.TransactionCheckListener
;
import
org.apache.rocketmq.client.producer.TransactionListener
;
import
org.apache.rocketmq.common.message.MessageExt
;
import
org.apache.rocketmq.common.protocol.header.CheckTransactionStateRequestHeader
;
...
...
@@ -27,6 +28,7 @@ public interface MQProducerInner {
boolean
isPublishTopicNeedUpdate
(
final
String
topic
);
TransactionCheckListener
checkListener
();
TransactionListener
getCheckListener
();
void
checkTransactionState
(
final
String
addr
,
...
...
client/src/main/java/org/apache/rocketmq/client/producer/DefaultMQProducer.java
浏览文件 @
f6696b12
...
...
@@ -476,6 +476,19 @@ public class DefaultMQProducer extends ClientConfig implements MQProducer {
throw
new
RuntimeException
(
"sendMessageInTransaction not implement, please use TransactionMQProducer class"
);
}
/**
* This method is used to send transactional messages.
* @param msg Transactional message to send.
* @param arg Argument used along with local transaction executor.
* @return Transaction result.
* @throws MQClientException
*/
@Override
public
TransactionSendResult
sendMessageInTransaction
(
Message
msg
,
Object
arg
)
throws
MQClientException
{
throw
new
RuntimeException
(
"sendMessageInTransaction not implement, please use TransactionMQProducer class"
);
}
/**
* Create a topic on broker.
*
...
...
client/src/main/java/org/apache/rocketmq/client/producer/LocalTransactionExecuter.java
浏览文件 @
f6696b12
...
...
@@ -18,6 +18,10 @@ package org.apache.rocketmq.client.producer;
import
org.apache.rocketmq.common.message.Message
;
/**
* This interface will be removed in the version 5.0.0, interface {@link TransactionListener} is recommended.
*/
@Deprecated
public
interface
LocalTransactionExecuter
{
LocalTransactionState
executeLocalTransactionBranch
(
final
Message
msg
,
final
Object
arg
);
}
client/src/main/java/org/apache/rocketmq/client/producer/MQProducer.java
浏览文件 @
f6696b12
...
...
@@ -83,6 +83,9 @@ public interface MQProducer extends MQAdmin {
TransactionSendResult
sendMessageInTransaction
(
final
Message
msg
,
final
LocalTransactionExecuter
tranExecuter
,
final
Object
arg
)
throws
MQClientException
;
TransactionSendResult
sendMessageInTransaction
(
final
Message
msg
,
final
Object
arg
)
throws
MQClientException
;
//for batch
SendResult
send
(
final
Collection
<
Message
>
msgs
)
throws
MQClientException
,
RemotingException
,
MQBrokerException
,
InterruptedException
;
...
...
client/src/main/java/org/apache/rocketmq/client/producer/TransactionCheckListener.java
浏览文件 @
f6696b12
...
...
@@ -17,7 +17,10 @@
package
org.apache.rocketmq.client.producer
;
import
org.apache.rocketmq.common.message.MessageExt
;
/**
* This interface will be removed in the version 5.0.0, interface {@link TransactionListener} is recommended.
*/
@Deprecated
public
interface
TransactionCheckListener
{
LocalTransactionState
checkLocalTransactionState
(
final
MessageExt
msg
);
}
example/src/main/java/org/apache/rocketmq/example/transaction/LocalTransactionExecuterImpl
.java
→
client/src/main/java/org/apache/rocketmq/client/producer/TransactionListener
.java
浏览文件 @
f6696b12
...
...
@@ -14,14 +14,27 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package
org.apache.rocketmq.
example.transaction
;
package
org.apache.rocketmq.
client.producer
;
import
org.apache.rocketmq.client.producer.LocalTransactionExecuter
;
import
org.apache.rocketmq.client.producer.LocalTransactionState
;
import
org.apache.rocketmq.common.message.Message
;
import
org.apache.rocketmq.common.message.MessageExt
;
public
class
LocalTransactionExecuterImpl
implements
LocalTransactionExecuter
{
@Override
public
LocalTransactionState
executeLocalTransactionBranch
(
Message
msg
,
Object
arg
)
{
return
LocalTransactionState
.
UNKNOW
;
}
}
public
interface
TransactionListener
{
/**
* When send transactional prepare(half) message succeed, this method will be invoked to execute local transaction.
*
* @param msg Half(prepare) message
* @param arg Custom business parameter
* @return Transaction state
*/
LocalTransactionState
executeLocalTransaction
(
final
Message
msg
,
final
Object
arg
);
/**
* When no response to prepare(half) message. broker will send check message to check the transaction status, and this
* method will be invoked to get local transaction status.
*
* @param msg Check message
* @return Transaction state
*/
LocalTransactionState
checkLocalTransaction
(
final
MessageExt
msg
);
}
\ No newline at end of file
client/src/main/java/org/apache/rocketmq/client/producer/TransactionMQProducer.java
浏览文件 @
f6696b12
...
...
@@ -17,8 +17,11 @@
package
org.apache.rocketmq.client.producer
;
import
java.util.concurrent.ExecutorService
;
import
org.apache.rocketmq.client.Validators
;
import
org.apache.rocketmq.client.exception.MQClientException
;
import
org.apache.rocketmq.common.message.Message
;
import
org.apache.rocketmq.common.message.MessageAccessor
;
import
org.apache.rocketmq.common.message.MessageConst
;
import
org.apache.rocketmq.remoting.RPCHook
;
public
class
TransactionMQProducer
extends
DefaultMQProducer
{
...
...
@@ -29,6 +32,9 @@ public class TransactionMQProducer extends DefaultMQProducer {
private
ExecutorService
executorService
;
private
TransactionListener
transactionListener
;
public
TransactionMQProducer
()
{
}
...
...
@@ -52,7 +58,12 @@ public class TransactionMQProducer extends DefaultMQProducer {
this
.
defaultMQProducerImpl
.
destroyTransactionEnv
();
}
/**
* This method will be removed in the version 5.0.0, method <code>sendMessageInTransaction(Message,Object)</code>} is recommended.
*/
@Override
@Deprecated
public
TransactionSendResult
sendMessageInTransaction
(
final
Message
msg
,
final
LocalTransactionExecuter
tranExecuter
,
final
Object
arg
)
throws
MQClientException
{
if
(
null
==
this
.
transactionCheckListener
)
{
...
...
@@ -62,10 +73,23 @@ public class TransactionMQProducer extends DefaultMQProducer {
return
this
.
defaultMQProducerImpl
.
sendMessageInTransaction
(
msg
,
tranExecuter
,
arg
);
}
@Override
public
TransactionSendResult
sendMessageInTransaction
(
final
Message
msg
,
final
Object
arg
)
throws
MQClientException
{
if
(
null
==
this
.
transactionListener
)
{
throw
new
MQClientException
(
"TransactionListener is null"
,
null
);
}
return
this
.
defaultMQProducerImpl
.
sendMessageInTransaction
(
msg
,
null
,
arg
);
}
public
TransactionCheckListener
getTransactionCheckListener
()
{
return
transactionCheckListener
;
}
/**
* This method will be removed in the version 5.0.0 and set a custom thread pool is recommended.
*/
@Deprecated
public
void
setTransactionCheckListener
(
TransactionCheckListener
transactionCheckListener
)
{
this
.
transactionCheckListener
=
transactionCheckListener
;
}
...
...
@@ -74,6 +98,10 @@ public class TransactionMQProducer extends DefaultMQProducer {
return
checkThreadPoolMinSize
;
}
/**
* This method will be removed in the version 5.0.0 and set a custom thread pool is recommended.
*/
@Deprecated
public
void
setCheckThreadPoolMinSize
(
int
checkThreadPoolMinSize
)
{
this
.
checkThreadPoolMinSize
=
checkThreadPoolMinSize
;
}
...
...
@@ -82,6 +110,10 @@ public class TransactionMQProducer extends DefaultMQProducer {
return
checkThreadPoolMaxSize
;
}
/**
* This method will be removed in the version 5.0.0 and set a custom thread pool is recommended.
*/
@Deprecated
public
void
setCheckThreadPoolMaxSize
(
int
checkThreadPoolMaxSize
)
{
this
.
checkThreadPoolMaxSize
=
checkThreadPoolMaxSize
;
}
...
...
@@ -90,6 +122,10 @@ public class TransactionMQProducer extends DefaultMQProducer {
return
checkRequestHoldMax
;
}
/**
* This method will be removed in the version 5.0.0 and set a custom thread pool is recommended.
*/
@Deprecated
public
void
setCheckRequestHoldMax
(
int
checkRequestHoldMax
)
{
this
.
checkRequestHoldMax
=
checkRequestHoldMax
;
}
...
...
@@ -101,4 +137,12 @@ public class TransactionMQProducer extends DefaultMQProducer {
public
void
setExecutorService
(
ExecutorService
executorService
)
{
this
.
executorService
=
executorService
;
}
public
TransactionListener
getTransactionListener
()
{
return
transactionListener
;
}
public
void
setTransactionListener
(
TransactionListener
transactionListener
)
{
this
.
transactionListener
=
transactionListener
;
}
}
example/src/main/java/org/apache/rocketmq/example/transaction/Transaction
Check
ListenerImpl.java
→
example/src/main/java/org/apache/rocketmq/example/transaction/TransactionListenerImpl.java
浏览文件 @
f6696b12
...
...
@@ -16,18 +16,30 @@
*/
package
org.apache.rocketmq.example.transaction
;
import
java.util.concurrent.atomic.AtomicInteger
;
import
org.apache.rocketmq.client.producer.LocalTransactionState
;
import
org.apache.rocketmq.client.producer.TransactionCheckListener
;
import
org.apache.rocketmq.client.producer.TransactionListener
;
import
org.apache.rocketmq.common.message.Message
;
import
org.apache.rocketmq.common.message.MessageExt
;
public
class
TransactionCheckListenerImpl
implements
TransactionCheckListener
{
import
java.util.concurrent.ConcurrentHashMap
;
import
java.util.concurrent.atomic.AtomicInteger
;
public
class
TransactionListenerImpl
implements
TransactionListener
{
private
AtomicInteger
transactionIndex
=
new
AtomicInteger
(
0
);
private
AtomicInteger
localTrans
=
new
AtomicInteger
(
0
);
private
ConcurrentHashMap
<
String
,
Integer
>
localTrans
=
new
ConcurrentHashMap
<>();
@Override
public
LocalTransactionState
executeLocalTransaction
(
Message
msg
,
Object
arg
)
{
int
value
=
transactionIndex
.
getAndIncrement
();
int
status
=
value
%
3
;
localTrans
.
put
(
msg
.
getTransactionId
(),
status
);
return
LocalTransactionState
.
UNKNOW
;
}
@Override
public
LocalTransactionState
checkLocalTransaction
State
(
MessageExt
msg
)
{
Integer
status
=
localTrans
.
get
AndIncrement
()
%
3
;
public
LocalTransactionState
checkLocalTransaction
(
MessageExt
msg
)
{
Integer
status
=
localTrans
.
get
(
msg
.
getTransactionId
())
;
if
(
null
!=
status
)
{
switch
(
status
)
{
case
0
:
...
...
example/src/main/java/org/apache/rocketmq/example/transaction/TransactionProducer.java
浏览文件 @
f6696b12
...
...
@@ -17,9 +17,8 @@
package
org.apache.rocketmq.example.transaction
;
import
org.apache.rocketmq.client.exception.MQClientException
;
import
org.apache.rocketmq.client.producer.LocalTransactionExecuter
;
import
org.apache.rocketmq.client.producer.SendResult
;
import
org.apache.rocketmq.client.producer.Transaction
Check
Listener
;
import
org.apache.rocketmq.client.producer.TransactionListener
;
import
org.apache.rocketmq.client.producer.TransactionMQProducer
;
import
org.apache.rocketmq.common.message.Message
;
import
org.apache.rocketmq.remoting.common.RemotingHelper
;
...
...
@@ -33,7 +32,7 @@ import java.util.concurrent.TimeUnit;
public
class
TransactionProducer
{
public
static
void
main
(
String
[]
args
)
throws
MQClientException
,
InterruptedException
{
Transaction
CheckListener
transactionListener
=
new
TransactionCheck
ListenerImpl
();
Transaction
Listener
transactionListener
=
new
Transaction
ListenerImpl
();
TransactionMQProducer
producer
=
new
TransactionMQProducer
(
"please_rename_unique_group_name"
);
ExecutorService
executorService
=
new
ThreadPoolExecutor
(
2
,
5
,
100
,
TimeUnit
.
SECONDS
,
new
ArrayBlockingQueue
<
Runnable
>(
2000
),
new
ThreadFactory
()
{
@Override
...
...
@@ -43,9 +42,9 @@ public class TransactionProducer {
return
thread
;
}
});
LocalTransactionExecuter
localTransactionExecuter
=
new
LocalTransactionExecuterImpl
();
producer
.
setExecutorService
(
executorService
);
producer
.
setTransaction
Check
Listener
(
transactionListener
);
producer
.
setTransactionListener
(
transactionListener
);
producer
.
start
();
String
[]
tags
=
new
String
[]
{
"TagA"
,
"TagB"
,
"TagC"
,
"TagD"
,
"TagE"
};
...
...
@@ -54,7 +53,7 @@ public class TransactionProducer {
Message
msg
=
new
Message
(
"TopicTest1234"
,
tags
[
i
%
tags
.
length
],
"KEY"
+
i
,
(
"Hello RocketMQ "
+
i
).
getBytes
(
RemotingHelper
.
DEFAULT_CHARSET
));
SendResult
sendResult
=
producer
.
sendMessageInTransaction
(
msg
,
localTransactionExecuter
,
null
);
SendResult
sendResult
=
producer
.
sendMessageInTransaction
(
msg
,
null
);
System
.
out
.
printf
(
"%s%n"
,
sendResult
);
Thread
.
sleep
(
10
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录