9.2. 禁用异步连接执行
代理端收到的大多数数据包都在 remoting
线程上执行。这些数据包代表短暂运行的操作,并且始终在远程
线程上执行,以提高性能。但是,有些数据包类型使用线程池执行,而不是使用远程
线程,这会增加较少的网络延迟。
使用线程池的数据包类型在下面列出的 Java 类中实施。该类都在软件包 org.apache.actiinvemq.artemis.core.protocol.core.impl.wireformat
中找到。
- RollbackMessage
- SessionCloseMessage
- SessionCommitMessage
- SessionXACommitMessage
- SessionXAPrepareMessage
- SessionXARollbackMessage
流程
要禁用异步连接执行,请将
async-connection-execution-enabled
配置元素添加到<broker_instance_dir> /etc/broker.xml
并将其设置为false
,如下例所示。默认值为true
。<configuration> <core> ... <async-connection-execution-enabled>false</async-connection-execution-enabled> ... </core> </configuration>
其他资源
- 要了解如何配置 AMQ Core Protocol JMS 客户端来检测死连接,请参阅 AMQ Core Protocol JMS 文档中的 Detecting dead 连接。
- 要了解如何在 AMQ 核心协议 JMS 客户端中 配置连接时间,请参阅 AMQ 核心协议 JMS 文档中的配置生存时间。