您的位置:首页 > 其它

ActiveMQ(5.10.0) - Connection Configuration URI

2016-01-19 14:58 316 查看
An Apache ActiveMQ connection can be configured by explicitly setting properties on the ActiveMQConnection or ActiveMQConnectionFactory objects themselves via the bean properties or using the following URI syntax.

Example

You set the property called jms.$PROPERTY on a regular connection URI. For example you can set the brokerURL on your ActiveMQConnectionFactory to the following value to enable Async Sends

tcp://localhost:61616?jms.useAsyncSend=true


Connection Options

The following options should be prefixed with jms. when used on a URI when connecting to a broker.

Option NameDefault ValueDescription
alwaysSessionAsynctrueIf this flag is set then a separate thread is used for dispatching messages for each Session in the Connection. However, a separate thread is always used if there is more than one session, or the session isn't in auto acknowledge or dups ok mode
checkForDuplicatestrueIf this flag is set to true, the consumer will check for duplicate messages and properly handle the message to make sure that it is not processed twice inadvertently.
clientIDnullSets the JMS clientID to use for the connection
closeTimeout15000ms Sets the timeout before a close is considered complete. Normally a close() on a connection waits for confirmation from the broker; this allows that operation to timeout to save the client hanging if there is no broker.
copyMessageOnSendtrueShould a JMS message be copied to a new JMS Message object as part of the send() method in JMS. This is enabled by default to be compliant with the JMS specification. You can disable it if you do not mutate JMS messages after they are sent for a performance boost.
disableTimeStampsByDefaultfalseSets whether or not timestamps on messages should be disabled or not. If you disable them it adds a small performance boost.
dispatchAsyncfalseShould the broker dispatch messages asynchronously to the consumer.
nestedMapAndListEnabledtrueEnables/disables whether or not Structured Message Properties and MapMessages are supported so that Message properties and MapMessage entries can contain nested Map and List objects. Available since version 4.1 onwards
objectMessageSerializationDeferedfalseWhen an object is set on an ObjectMessage, the JMS spec requires the object to be serialized by that set method. Enabling this flag causes the object to not get serialized. The object may subsequently get serialized if the message needs to be sent over a socket or stored to disk.
optimizeAcknowledgefalseEnables an optimised acknowledgement mode where messages are acknowledged in batches rather than individually. Alternatively, you could use Session.DUPS_OK_ACKNOWLEDGE acknowledgement mode for the consumers which can often be faster. WARNING enabling this issue could cause some issues with auto-acknowledgement on reconnection
optimizeAcknowledgeTimeOut300msif > 0, specifies the max time between batch acks when optimizeAcknowledge is enabled. (since 5.6)
optimizedAckScheduledAckInterval0if > 0, specifies a time interval upon which all the outstanding acks are delivered when optimized acknowledge is used so that a long running consumer that doesn't receive any more messages will eventually ack the last few unacked messages (since 5.7)
optimizedMessageDispatchtrueIf this flag is set then an larger prefetch limit is used - only applicable for durable topic subscribers
useAsyncSendfalseForces the use of Async Sends which adds a massive performance boost; but means that the send() method will return immediately whether the message has been sent or not which could lead to message loss.
useCompressionfalseEnables the use of compression of the message bodies
useRetroactiveConsumerfalseSets whether or not retroactive consumers are enabled. Retroactive consumers allow non-durable topic subscribers to receive old messages that were published before the non-durable subscriber started.
warnAboutUnstartedConnectionTimeout500Enables the timeout in milliseconds from a connection creation to when a warning is generated if the connection is not properly started via Connection.start() and a message is received by a consumer. It is a very common gotcha to forget to start the connection and then wonder why no messages are delivered so this option makes the default case to create a warning if the user forgets. To disable the warning just set the value to < 0 (say -1).
auditDepth2048The size of the message window that will be audited (for duplicates and out of order messages
auditMaximumProducerNumber64Maximum number of producers that will be audited
alwaysSyncSendfalseWhen true a MessageProducer will always use Sync sends when sending a Message even if it is not required for the Delivery Mode
consumerExpiryCheckEnabledtrueControls whether message expiration checking is done in each MessageConsumer prior to dispatching a message. Disabling this check can lead to consumption of expired messages. (since 5.11)

Nested Options

You can also configure nested objects on the connection object using the given prefixes. See the javadoc for a breakdown of each individual property.

Option NameObject configuredSee Also
jms.blobTransferPolicy.* BlobTransferPolicyBlob Message
jms.prefetchPolicy.*ActiveMQPrefetchPolicy What is the prefetch limit for
jms.redeliveryPolicy.*RedeliveryPolicyRedelivery Policy
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: