我目前正在使用Glassfish v2.1,我已经设置了一个队列来分别发送和接收来自Sesion bean和MDB的消息。但是,我注意到我最多只能向队列发送1000条消息。我有什么理由不能向队列发送超过1000条消息吗?我确实为glassfish域设置了“开发人员”配置文件。这可能是原因吗?或者是否需要修改一些资源配置设置?
我已经设置了sun-resources.xml配置属性,如下所示:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE resources PUBLIC "-//Sun Microsystems, Inc.//DTD Application Server 9.0 Resource Definitions //EN" "http://www.sun.com/software/appserver/dtds/sun-resources_1_3.dtd">
<resources>
<admin-object-resource
enabled="true"
jndi-name="jms/UpdateQueue"
object-type="user"
res-adapter="jmsra"
res-type="javax.jms.Queue">
<description/>
<property name="Name" value="UpdatePhysicalQueue"/>
</admin-object-resource>
<connector-resource
enabled="true" jndi-name="jms/UpdateQueueFactory"
object-type="user"
pool-name="jms/UpdateQueueFactoryPool">
<description/>
</connector-resource>
<connector-connection-pool
associate-with-thread="false"
connection-creation-retry-attempts="0"
connection-creation-retry-interval-in-seconds="10"
connection-definition-name="javax.jms.QueueConnectionFactory"
connection-leak-reclaim="false"
connection-leak-timeout-in-seconds="0"
fail-all-connections="false"
idle-timeout-in-seconds="300"
is-connection-validation-required="false"
lazy-connection-association="false"
lazy-connection-enlistment="false"
match-connections="true"
max-connection-usage-count="0"
max-pool-size="32"
max-wait-time-in-millis="60000"
name="jms/UpdateFactoryPool"
pool-resize-quantity="2"
resource-adapter-name="jmsra"
steady-pool-size="8"
validate-atmost-once-period-in-seconds="0"/>
</resources>
嗯..进一步调查显示imq日志中有以下内容:
[17/Nov/2009:10:27:57 CST] ERROR sendMessage: Sending message failed. Connection ID: 427038234214377984:
com.sun.messaging.jmq.jmsserver.util.BrokerException: transaction failed: [B4303]: The maximum number of messages [1,000] that the producer can process in a single transaction (TID=427038234364096768) has been exceeded. Please either limit the # of messages per transaction or increase the imq.transaction.producer.maxNumMsgs property.
如果我需要一次发送超过5000条消息,我该怎么办?
我要做的是读取表中的所有记录,并根据遗留表中该记录的相应值更新每个记录的特定字段,我只能读取该记录。该表中有超过10k条记录。截至目前,我依次遍历for循环中的每条记录,从遗留表中获取相应的记录,比较字段值,必要时更新记录,并在其他表中添加相应的新记录。
但是,我希望通过异步处理所有记录来提高性能。为此,我考虑将每个记录信息作为单独的消息发送,因此需要这么多消息。
答案 0 :(得分:2)
要配置OpenMQ并设置artitrary broker属性,请查看此blog post。
但实际上,我不建议增加imq.transaction.producer.maxNumMsgs
属性,至少不超过documentation中建议的值:
生产者可以在单个事务中处理的最大消息数。建议该值小于5000,以防止资源耗尽。
如果您需要发送更多消息,请考虑在多个交易中执行此操作。