Performance
在性能方面,不存在万能的解决方法。很多因素都会影响性能,包括消息的大小和数量、应用程序方法是否执行需要阻止的工作以及外部因素(如网络速度和其他问题)。本部分的目标是对可用的配置选项提供概述,并提出一些有关如何推理扩展的方法。
在消息传递应用程序中,消息通过通道进行异步执行(由线程池支持)。配置此类应用程序需要充分了解通道和消息流。因此,建议查看 Flow of Messages。
最明显的开始之处是配置支持 clientInboundChannel
和 clientOutboundChannel
的线程池。默认情况下,这两个线程池同时配置为可用处理器的两倍。
如果注释方法中消息的处理主要是 CPU 绑定的,那么 clientInboundChannel
的线程数应保持接近于处理器的数量。如果这些方法所做的工作更多地是 IO 绑定的,并且需要阻止或等待数据库或其他外部系统,那么可能需要增加线程池大小。
|
在 clientOutboundChannel
方面,其重点是向 WebSocket 客户端发送消息。如果客户端位于快速网络中,那么线程数应保持接近于可用处理器的数量。如果客户端速度较慢或带宽较低,那么它们将需要更长时间来消耗消息,并给线程池带来负担。因此,有必要增加线程池大小。
虽然有可能预测 clientInboundChannel
的工作负载(毕竟这是基于应用程序所执行内容的),但很难配置 "clientOutboundChannel",因为这是基于应用程序无法控制的因素的。出于此原因,有两个附加属性与发送消息相关:sendTimeLimit
和 sendBufferSizeLimit
。你可以使用这些方法来配置发送所允许的持续时间以及在向客户端发送消息时可以缓冲多少数据。
总的来说,任何给定的时间,只能使用单个线程发送到客户端。与此同时,所有其他消息都将被缓冲,并且你可以使用这些属性来决定允许发送消息的持续时间以及在此期间可以缓冲多少数据。有关重要其他详细信息,请参阅 XML 模式的 javadoc 和文档。
下例显示了可能的配置:
-
Java
-
Kotlin
-
Xml
@Configuration
@EnableWebSocketMessageBroker
public class WebSocketConfiguration implements WebSocketMessageBrokerConfigurer {
@Override
public void configureWebSocketTransport(WebSocketTransportRegistration registration) {
registration.setSendTimeLimit(15 * 1000).setSendBufferSizeLimit(512 * 1024);
}
// ...
}
@Configuration
@EnableWebSocketMessageBroker
class WebSocketConfiguration : WebSocketMessageBrokerConfigurer {
override fun configureWebSocketTransport(registration: WebSocketTransportRegistration) {
registration.setSendTimeLimit(15 * 1000).setSendBufferSizeLimit(512 * 1024)
}
// ...
}
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:websocket="http://www.springframework.org/schema/websocket"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
https://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/websocket
https://www.springframework.org/schema/websocket/spring-websocket.xsd">
<websocket:message-broker>
<websocket:transport send-timeout="15000" send-buffer-size="524288" />
<!-- ... -->
</websocket:message-broker>
</beans>
你还可以使用前面显示的 WebSocket 传输配置来配置允许的 STOMP 输入消息的最大大小。从理论上讲,WebSocket 消息的大小几乎可以无限。实际上,WebSocket 服务器会施加限制,例如 Tomcat 上的 8K 和 Jetty 上的 64K。由于此原因,诸如 stomp-js/stompjs
之类的 STOMP 客户端和其他客户端会以 16K 边界分割较大的 STOMP 消息,然后将它们作为多个 WebSocket 消息发送,这需要服务器进行缓冲和重新组装。
Spring 的 STOMP-over-WebSocket 支持会执行此操作,因此应用程序可以配置 STOMP 消息的最大大小,而不考虑特定于 WebSocket 服务器的消息大小。请记住,如果需要,WebSocket 消息大小会自动调整,以确保其至少可以承载 16K 的 WebSocket 消息。
下例显示了一种可能的配置:
-
Java
-
Kotlin
-
Xml
@Configuration
@EnableWebSocketMessageBroker
public class MessageSizeLimitWebSocketConfiguration implements WebSocketMessageBrokerConfigurer {
@Override
public void configureWebSocketTransport(WebSocketTransportRegistration registration) {
registration.setMessageSizeLimit(128 * 1024);
}
// ...
}
@Configuration
@EnableWebSocketMessageBroker
class MessageSizeLimitWebSocketConfiguration : WebSocketMessageBrokerConfigurer {
override fun configureWebSocketTransport(registration: WebSocketTransportRegistration) {
registration.setMessageSizeLimit(128 * 1024)
}
// ...
}
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:websocket="http://www.springframework.org/schema/websocket"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
https://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/websocket
https://www.springframework.org/schema/websocket/spring-websocket.xsd">
<websocket:message-broker>
<websocket:transport message-size="131072" />
<!-- ... -->
</websocket:message-broker>
</beans>
有关扩展的一个重点涉及使用多个应用程序实例。当前,你无法使用简单代理来执行此操作。但是,在你使用全功能代理(如 RabbitMQ)时,每个应用程序实例都会连接到代理,并且通过一个应用程序实例广播的消息可以通过该代理广播到通过任何其他应用程序实例连接的 WebSocket 客户端。