9.2. 禁用异步连接执行
代理一侧接收的大部分数据包都在删除线程中 执行
。这些数据包代表简短运行的操作,并且始终在远程线程中执行,以提高性能。但是,一些数据包类型是使用线程池而不是删除线程来执行,这会增加一些网络延迟。
使用以下列出的 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>