108 lines
4.8 KiB
XML
108 lines
4.8 KiB
XML
<?xml version='1.0'?>
|
|
<!--
|
|
Licensed to the Apache Software Foundation (ASF) under one
|
|
or more contributor license agreements. See the NOTICE file
|
|
distributed with this work for additional information
|
|
regarding copyright ownership. The ASF licenses this file
|
|
to you under the Apache License, Version 2.0 (the
|
|
"License"); you may not use this file except in compliance
|
|
with the License. You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing,
|
|
software distributed under the License is distributed on an
|
|
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
KIND, either express or implied. See the License for the
|
|
specific language governing permissions and limitations
|
|
under the License.
|
|
-->
|
|
|
|
<configuration xmlns="urn:activemq"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="urn:activemq /schema/artemis-configuration.xsd">
|
|
|
|
<jms xmlns="urn:activemq:jms">
|
|
<queue name="DLQ"/>
|
|
<queue name="ExpiryQueue"/>
|
|
</jms>
|
|
|
|
<core xmlns="urn:activemq:core">
|
|
|
|
<!-- this could be ASYNCIO or NIO -->
|
|
<journal-type>ASYNCIO</journal-type>
|
|
<paging-directory>./data/paging</paging-directory>
|
|
<bindings-directory>./data/bindings</bindings-directory>
|
|
<journal-directory>./data/journal</journal-directory>
|
|
<large-messages-directory>./data/large-messages</large-messages-directory>
|
|
<journal-min-files>10</journal-min-files>
|
|
|
|
<!--
|
|
This value was determined through a calculation.
|
|
Your system could perform 0.63 writes per millisecond
|
|
on the current journal configuration.
|
|
That translates as a sync write every 1591999 nanoseconds
|
|
-->
|
|
<journal-buffer-timeout>1591999</journal-buffer-timeout>
|
|
|
|
<!-- how often we are looking for how many bytes are being used on the disk in ms -->
|
|
<disk-scan-period>5000</disk-scan-period>
|
|
|
|
<!-- once the disk hits this limit the system will block, or close the connection in certain protocols
|
|
that won't support flow control. -->
|
|
<max-disk-usage>90</max-disk-usage>
|
|
|
|
<!-- the system will enter into page mode once you hit this limit.
|
|
This is an estimate in bytes of how much the messages are using in memory -->
|
|
<global-max-size>100Mb</global-max-size>
|
|
|
|
<acceptors>
|
|
<!-- Default ActiveMQ Artemis Acceptor. Multi-protocol adapter. Currently supports Core, OpenWire, Stomp and AMQP. -->
|
|
<!-- performance tests have shown that openWire performs best with these buffer sizes -->
|
|
<acceptor name="artemis">tcp://0.0.0.0:61616?tcpSendBufferSize=1048576;tcpReceiveBufferSize=1048576;protocols=CORE</acceptor>
|
|
|
|
<!-- AMQP Acceptor. Listens on default AMQP port for AMQP traffic.-->
|
|
<acceptor name="amqp">tcp://0.0.0.0:5672?protocols=AMQP</acceptor>
|
|
|
|
<!-- STOMP Acceptor. -->
|
|
<acceptor name="stomp">tcp://0.0.0.0:61613?protocols=STOMP</acceptor>
|
|
|
|
<!-- HornetQ Compatibility Acceptor. Enables ActiveMQ Artemis Core and STOMP for legacy HornetQ clients. -->
|
|
<acceptor name="hornetq">tcp://0.0.0.0:5445?protocols=HORNETQ,STOMP</acceptor>
|
|
|
|
<!-- MQTT Acceptor -->
|
|
<acceptor name="mqtt">tcp://0.0.0.0:1883?protocols=MQTT</acceptor>
|
|
</acceptors>
|
|
|
|
<security-settings>
|
|
<security-setting match="#">
|
|
<permission type="createNonDurableQueue" roles="manager"/>
|
|
<permission type="deleteNonDurableQueue" roles="manager"/>
|
|
<permission type="createDurableQueue" roles="manager"/>
|
|
<permission type="deleteDurableQueue" roles="manager"/>
|
|
<permission type="createAddress" roles="manager"/>
|
|
<permission type="deleteAddress" roles="manager"/>
|
|
<permission type="consume" roles="manager"/>
|
|
<permission type="send" roles="manager"/>
|
|
<permission type="browse" roles="manager"/>
|
|
<!-- we need this otherwise ./artemis data imp wouldn't work -->
|
|
<permission type="manage" roles="manager"/>
|
|
</security-setting>
|
|
</security-settings>
|
|
|
|
<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>
|
|
<!-- with -1 only the global-max-size is in use for limiting -->
|
|
<max-size-bytes>-1</max-size-bytes>
|
|
<message-counter-history-day-limit>10</message-counter-history-day-limit>
|
|
<address-full-policy>PAGE</address-full-policy>
|
|
<auto-create-queues>true</auto-create-queues>
|
|
</address-setting>
|
|
</address-settings>
|
|
</core>
|
|
</configuration>
|