【问题标题】:SimpMessagingTemplate.convertAndSend with RabbitMQ works very slow使用 RabbitMQ 的 SimpMessagingTemplate.convertAndSend 工作速度非常慢
【发布时间】:2017-03-15 18:32:40
【问题描述】:

我正在使用带有 RabbitMQ 的 Spring STOMP over Websocket。一切正常,但 simpMessagingTemplate.convertAndSend 工作速度很慢,调用可能需要 2-10 秒(同步,阻塞线程)。可能是什么原因??

RabbitTemplate.convertAndSend 需要

更新

我尝试使用 ActiveMQ 并得到相同的结果。 convertAndSend 需要 2-10 秒

ActiveMQ 有默认配置。

网络套接字配置:

@Configuration
@EnableWebSocket
@EnableWebSocketMessageBroker
class WebSocketConfig extends AbstractWebSocketMessageBrokerConfigurer {

    @Override
    void configureMessageBroker(MessageBrokerRegistry config) {
        config.enableStompBrokerRelay("/topic", "/queue", "/exchange");
        config.setApplicationDestinationPrefixes("/topic", "/queue"); // prefix in client queries
        config.setUserDestinationPrefix("/user");
    }

    @Override
    void registerStompEndpoints(StompEndpointRegistry registry) {
        registry.addEndpoint("/board").withSockJS()
    }

    @Override
    void configureWebSocketTransport(WebSocketTransportRegistration registration) {
        registration.setMessageSizeLimit(8 * 1024);
    }
}

【问题讨论】:

  • 您使用的是哪个春季版本?您能举一个转换前后的消息示例吗?
  • 问的太多了,但你能试试this我的问题吗?

标签: spring spring-boot websocket rabbitmq stomp


【解决方案1】:

问题已解决。它在 io.projectreactor 库版本 2.0.4.RELEASE 中的错误。我更改为 2.0.8.RELEASE 及其已解决的问题。现在发送消息大约需要 50 毫秒。

    <dependency>
        <groupId>io.projectreactor</groupId>
        <artifactId>reactor-net</artifactId>
        <version>2.0.8.RELEASE</version>
    </dependency>

【讨论】:

    猜你喜欢
    • 2018-05-02
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2012-02-25
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2016-10-10
    相关资源
    最近更新 更多