DefaultJmsListenerContainerFactory / DefaultMessageListenerContainer 动态缩放:它是如何工作的?

DefaultJmsListenerContainerFactory / DefaultMessageListenerContainer Dynamic Scaling: How does it work?

我正在尝试让我的 Spring 4 JMS 应用程序在处理大量消息后动态缩小。我目前有 1-3 个消费者的并发,并且我能够看到向最大消费者成功扩展,但是一旦消费者被创建,他们就不会消失。他们以 WAIT 状态停留在那里。我想知道是否有设置或配置可以让消费者在负载消退后关闭。有人知道吗?

谢谢,

胡安

看看这个选项:

/**
 * Specify the limit for idle executions of a consumer task, not having
 * received any message within its execution. If this limit is reached,
 * the task will shut down and leave receiving to other executing tasks.
 * <p>The default is 1, closing idle resources early once a task didn't
 * receive a message. This applies to dynamic scheduling only; see the
 * {@link #setMaxConcurrentConsumers "maxConcurrentConsumers"} setting.
 * The minimum number of consumers
 * (see {@link #setConcurrentConsumers "concurrentConsumers"})
 * will be kept around until shutdown in any case.
 * <p>Within each task execution, a number of message reception attempts
 * (according to the "maxMessagesPerTask" setting) will each wait for an incoming
 * message (according to the "receiveTimeout" setting). If all of those receive
 * attempts in a given task return without a message, the task is considered
 * idle with respect to received messages. Such a task may still be rescheduled;
 * however, once it reached the specified "idleTaskExecutionLimit", it will
 * shut down (in case of dynamic scaling).
 * <p>Raise this limit if you encounter too frequent scaling up and down.
 * With this limit being higher, an idle consumer will be kept around longer,
 * avoiding the restart of a consumer once a new load of messages comes in.
 * Alternatively, specify a higher "maxMessagesPerTask" and/or "receiveTimeout" value,
 * which will also lead to idle consumers being kept around for a longer time
 * (while also increasing the average execution time of each scheduled task).
 * <p><b>This setting can be modified at runtime, for example through JMX.</b>
 * @see #setMaxMessagesPerTask
 * @see #setReceiveTimeout
 */
public void setIdleTaskExecutionLimit(int idleTaskExecutionLimit) {

您还可以通过他们的 JavaDocs 研究 DefaultMessageListenerContainer 的所有其他选项。