Created
October 23, 2014 00:18
-
-
Save MichaelDrogalis/9ab110e10a8ca75976db to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <configuration xmlns="urn:hornetq" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="urn:hornetq /schema/hornetq-configuration.xsd"> | |
| <paging-directory>data/paging</paging-directory> | |
| <bindings-directory>data/bindings</bindings-directory> | |
| <journal-directory>data/journal</journal-directory> | |
| <journal-min-files>10</journal-min-files> | |
| <large-messages-directory>data/large-messages</large-messages-directory> | |
| <connectors> | |
| <connector name="netty"> | |
| <factory-class>org.hornetq.core.remoting.impl.netty.NettyConnectorFactory</factory-class> | |
| <param key="host" value="${hornetq.remoting.netty.host:localhost}"/> | |
| <param key="port" value="${hornetq.remoting.netty.port:5465}"/> | |
| </connector> | |
| <connector name="netty-throughput"> | |
| <factory-class>org.hornetq.core.remoting.impl.netty.NettyConnectorFactory</factory-class> | |
| <param key="host" value="${hornetq.remoting.netty.host:localhost}"/> | |
| <param key="port" value="${hornetq.remoting.netty.batch.port:5466}"/> | |
| <param key="batch-delay" value="50"/> | |
| </connector> | |
| </connectors> | |
| <acceptors> | |
| <acceptor name="netty"> | |
| <factory-class>org.hornetq.core.remoting.impl.netty.NettyAcceptorFactory</factory-class> | |
| <param key="host" value="${hornetq.remoting.netty.host:localhost}"/> | |
| <param key="port" value="${hornetq.remoting.netty.port:5465}"/> | |
| </acceptor> | |
| <acceptor name="netty-throughput"> | |
| <factory-class>org.hornetq.core.remoting.impl.netty.NettyAcceptorFactory</factory-class> | |
| <param key="host" value="${hornetq.remoting.netty.host:localhost}"/> | |
| <param key="port" value="${hornetq.remoting.netty.batch.port:5466}"/> | |
| <param key="batch-delay" value="50"/> | |
| <param key="direct-deliver" value="false"/> | |
| </acceptor> | |
| </acceptors> | |
| <security-enabled>false</security-enabled> | |
| <address-settings> | |
| <!--default for catch all--> | |
| <address-setting match="#"> | |
| <dead-letter-address>jms.queue.DLQ</dead-letter-address> | |
| <expiry-address>jms.queue.ExpiryQueue</expiry-address> | |
| <redelivery-delay>0</redelivery-delay> | |
| <max-size-bytes>104857600</max-size-bytes> | |
| <page-size-bytes>10485760</page-size-bytes> | |
| <message-counter-history-day-limit>10</message-counter-history-day-limit> | |
| <address-full-policy>PAGE</address-full-policy> | |
| </address-setting> | |
| </address-settings> | |
| </configuration> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment